search for: typedtext

Displaying 2 results from an estimated 2 matches for "typedtext".

Did you mean: type_text
2006 Nov 23
0
[754] trunk/wxruby2/samples/bigdemo: Rubified samples and added in missing client data sample code
...;<span class="cx"> def on_key(event) </span><del>- key = event.get_key_code() </del><ins>+ key = event.get_key_code </ins><span class="cx"> if key >= 32 and key <= 127 </span><del>- @typedText += key.chr() </del><ins>+ @typedText += key.chr </ins><span class="cx"> item = find_prefix(@typedText) </span><span class="cx"> if item != -1 </span><span class="cx"> set...
2012 Nov 30
0
[LLVMdev] clang and libclang: one more code-completion missing feature
...lang/libclang code-completion, it relates to functions with defaulted arguments. In the clang docs for clang API Documentation <http://goo.gl/UYOmL> there is one example: void f(int x, float y = 3.14, double z = 2.71828); The code-completion string for this function would contain: - a TypedText chunk for "f". - a LeftParen chunk for "(". - a Placeholder chunk for "int x" - an Optional chunk containing the remaining defaulted arguments, e.g., - a Comma chunk for "," - a Placeholder chunk for "float y" - an Optiona...