Skip to main content

Questions tagged [auto-completion]

Filter by
Sorted by
Tagged with
6 votes
1 answer
1k views

While reading on the design for autosuggest implementation on large scale systems (like google), I'm able to understand the usage of trie and how top "n" terms are stored at each node to quickly ...
user2599672's user avatar
0 votes
1 answer
83 views

In method call syntax in many object-oriented languages, the receiver object goes to the left of the method name, e.g. someObject.someMethod(). This comes in handy when using an IDE with code ...
echristopherson's user avatar
0 votes
1 answer
196 views

I was evaluating the various ways in which the big guys implement auto suggest. These are my observations.(Search string used was "ab") Questions towards the end. Yahoo tries something like ...
Uzair's user avatar
  • 3
6 votes
1 answer
195 views

There are cases where you have the opportunity, as a developer, to enforce stricter security features and protections on a software, though they could very well be managed at an environmental level (...
haylem's user avatar
  • 29.1k
23 votes
6 answers
7k views

I often see projects (in Java projects and teams using Eclipse) that prefix function parameters with p. For example public void filter (Result pResult) ... I personally don't see any benefit in ...
oschrenk's user avatar
  • 616
6 votes
1 answer
3k views

If one would to write auto-suggest for an IDE/code editor (like IntelliSense), does one generally need to write a parser for any language that should be supported, or do compilers/runtimes provide ...
Markus Hedlund's user avatar
1 vote
2 answers
523 views

I have an application who has text fields (not select, not checkbox or other types) where an user can enter some value, like this: ISBN and E-Mail are the label of each input. Now I have to ...
HBv6's user avatar
  • 113
29 votes
15 answers
13k views

Possible Duplicate: Should newbies use IDE autocomplete (Intellisense)? I have a friend at school who wrote a program in VB.net in notepad, took it home fixed any errors that came up, and then ...
Jonathan.'s user avatar
  • 880
18 votes
6 answers
3k views

When talking about IDE software or about what a programming language allows you to do or not at the source level, I often use the word IntelliSense, which has a precise meaning in the Microsoft world, ...
Arseni Mourzenko's user avatar