Searched refs:returns (Results 1 – 25 of 931) sorted by relevance
12345678910>>...38
/external/smali/smali/src/main/antlr3/ |
D | smaliTreeWalker.g | 157 header returns[TypeIdItem classType, int accessFlags, TypeIdItem superType, TypeListItem implements… 169 class_spec returns[TypeIdItem type, int accessFlags] 176 super_spec returns[TypeIdItem type] 183 implements_spec returns[TypeIdItem type] 189 implements_list returns[TypeListItem implementsList] 201 source_spec returns[StringIdItem source] 208 access_list returns [int value] 222 fields returns[List<ClassDataItem.EncodedField> staticFields, List<ClassDataItem.EncodedField> inst… 250 methods returns[List<ClassDataItem.EncodedMethod> directMethods, 286 field returns [ClassDataItem.EncodedField encodedField, EncodedValue encodedValue, AnnotationSetIte… [all …]
|
D | smaliParser.g | 485 class_spec returns[String className] 684 fixed_literal returns[int size] 827 instruction returns [int size] 881 insn_format10t returns [int size] 887 insn_format10x returns [int size] 892 insn_format10x_odex returns [int size] 899 insn_format11n returns [int size] 904 insn_format11x returns [int size] 909 insn_format12x returns [int size] 914 insn_format20bc returns [int size] [all …]
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t015calc.g | 16 evaluate returns [result]: r=expression {result = r;}; 18 expression returns [result]: r=mult ( 23 mult returns [result]: r=log ( 28 log returns [result]: 'ln' r=exp {result = Math.log(r);} 32 exp returns [result]: r=atom ('^' r2=atom {r = Math.pow(r,r2);} )? {result = r;} 35 atom returns [result]:
|
D | t022scopes.g | 38 c returns [res] 64 d returns [res] 98 e returns [res] 112 f returns [res]
|
D | t057autoAST44.g | 3 a returns [result] : ID b { 7 b returns [i] : INT {$i=parseInt($INT.text);} ;
|
D | t016actions.g | 6 declaration returns [name] 11 functionHeader returns [name]
|
D | t042ast.g | 224 r43 returns [res] 236 r46 returns [res] 260 r51 returns [res] 268 r52 returns [res] 278 r53 returns [res] 286 r54 returns [res]
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t015calc.g | 19 evaluate returns [result]: r=expression {result = r}; 21 expression returns [result]: r=mult ( 26 mult returns [result]: r=log ( 32 log returns [result]: 'ln' r=exp {result = math.log(r)} 36 exp returns [result]: r=atom ('^' r2=atom {r = math.pow(r,r2)} )? {result = r} 39 atom returns [result]:
|
D | t022scopes.g | 38 c returns [res] 63 d returns [res] 92 e returns [res] 106 f returns [res]
|
D | t042ast.g | 218 r43 returns [res] 230 r46 returns [res] 254 r51 returns [res] 262 r52 returns [res] 272 r53 returns [res] 280 r54 returns [res]
|
D | t016actions.g | 6 declaration returns [name] 11 functionHeader returns [name]
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm.mli | 319 (** [mdkind_id context name] returns the MDKind ID that corresponds to the 367 (** [module_context m] returns the context of the specified module. 373 (** [classify_type ty] returns the {!TypeKind.t} corresponding to the type [ty]. 377 (** [type_is_sized ty] returns whether the type has a size or not. 382 (** [type_context ty] returns the {!llcontext} corresponding to the type [ty]. 386 (** [string_of_lltype ty] returns a string describing the type [ty]. *) 391 (** [i1_type c] returns an integer type of bitwidth 1 in the context [c]. See 395 (** [i8_type c] returns an integer type of bitwidth 8 in the context [c]. See 399 (** [i16_type c] returns an integer type of bitwidth 16 in the context [c]. See 403 (** [i32_type c] returns an integer type of bitwidth 32 in the context [c]. See [all …]
|
/external/clang/test/Analysis/ |
D | nil-receiver-undefined-larger-than-voidptr-ret.m | 86 // CHECK-darwin8: warning: The receiver of message 'longDoubleM' is nil and returns a value of type… 87 // CHECK-darwin8: warning: The receiver of message 'longlongM' is nil and returns a value of type '… 88 // CHECK-darwin8: warning: The receiver of message 'doubleM' is nil and returns a value of type 'do… 89 // CHECK-darwin8: warning: The receiver of message 'unsignedLongLongM' is nil and returns a value o… 90 // CHECK-darwin8: warning: The receiver of message 'longlongM' is nil and returns a value of type '… 92 // CHECK-darwin9-NOT: warning: The receiver of message 'longlongM' is nil and returns a value of ty… 93 // CHECK-darwin9-NOT: warning: The receiver of message 'unsignedLongLongM' is nil and returns a val… 94 // CHECK-darwin9-NOT: warning: The receiver of message 'doubleM' is nil and returns a value of type… 95 // CHECK-darwin9-NOT: warning: The receiver of message 'longlongM' is nil and returns a value of ty… 96 // CHECK-darwin9-NOT: warning: The receiver of message 'longDoubleM' is nil and returns a value of …
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
D | generate_protocol_externs.py | 148 returns = ["?Protocol.Error"] 150 returns.append("%s=" % param_type(domain_name, command["error"])) 154 returns.append("%s=" % param_type(domain_name, out_param)) 156 returns.append("%s" % param_type(domain_name, out_param)) 157 … output_file.write(" * @param {function(%s):void=} opt_callback\n" % ", ".join(returns)) 161 … output_file.write("/** @param {function(%s):void=} opt_callback */\n" % ", ".join(returns))
|
/external/chromium_org/tools/json_schema_compiler/templates/ppapi/ |
D | idl.template | 73 {%- if function.params or function.callback or function.returns %}, 77 {%- if not loop.last or function.callback or function.returns %}, 80 {%- if function.returns %} 81 [out] {{ function.returns | ppapi_type }} result, 86 {%- if function.callback or function.returns %}
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/expr/ |
D | Expr.g | 22 expr returns [value] 29 multExpr returns [value] 33 atom returns [value]
|
/external/chromium_org/ppapi/api/dev/ |
D | ppb_ime_input_event_dev.idl | 74 * GetText() returns the composition text as a UTF-8 string for the given IME 86 * GetSegmentNumber() returns the number of segments in the composition text. 92 * returns 0. 97 * GetSegmentOffset() returns the position of the index-th segmentation point 112 * COMPOSITION_UPDATE or index is out of range, returns 0. 118 * GetTargetSegment() returns the index of the current target segment of 126 * returns -1. 131 * GetSelection() returns the range selected by caret in the composition text.
|
/external/chromium_org/third_party/lcov/ |
D | descriptions.tests | 6 Check that exit returns the correct values to the waiting parent 32 checks that getpid returns the correct process id. 40 Check ability of parent to wait until child returns, and that the 42 waitpid returns immediately if no child is present. 192 Testcase to test that sendfile(2) system call returns appropriate 242 Verify that ioctl() on sockets returns the proper errno for various 302 returns result to parent 616 1) readlink(2) returns -1 and sets errno to EACCES if search/write 619 2) readlink(2) returns -1 and sets errno to EINVAL if the buffer size 621 3) readlink(2) returns -1 and sets errno to EINVAL if the specified [all …]
|
/external/llvm/bindings/ocaml/analysis/ |
D | llvm_analysis.mli | 15 (** [verify_module m] returns [None] if the module [m] is valid, and 20 (** [verify_function f] returns [None] if the function [f] is valid, and 25 (** [verify_module m] returns if the module [m] is valid, but prints a 31 (** [verify_function f] returns if the function [f] is valid, but prints a
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
D | TextHtmlFunction.java | 206 int returns = 0; in hasAsciiArt() local 230 returns++; in hasAsciiArt() 259 if (returns > 2) { in hasAsciiArt() 265 returns = 0; in hasAsciiArt()
|
/external/antlr/antlr-3.4/runtime/Perl5/t/examples/ |
D | fig.t | 28 file returns [objects] 33 object returns [o] 48 expr returns [value]
|
D | expr.t | 29 expr returns [value] 36 multExpr returns [value] 40 atom returns [value]
|
/external/linux-tools-perf/Documentation/ |
D | perf-script-perl.txt | 184 …flag_str($event_name, $field_name, $field_value) - returns the string represention corresponding t… 185 …symbol_str($event_name, $field_name, $field_value) - returns the string represention corresponding… 199 common_pc($context) - returns common_preempt count for the current event 200 common_flags($context) - returns common_flags for the current event 201 common_lock_depth($context) - returns common_lock_depth for the current event 208 nsecs($secs, $nsecs) - returns total nsecs given secs/nsecs pair 209 nsecs_secs($nsecs) - returns whole secs portion given nsecs 210 nsecs_nsecs($nsecs) - returns nsecs remainder given nsecs 211 nsecs_str($nsecs) - returns printable string in the form secs.nsecs 212 avg($total, $n) - returns average given a sum and a total number of values
|
/external/antlr/antlr-3.4/runtime/Perl5/examples/mexpr/ |
D | MExpr.g | 13 expr returns [value] 20 atom returns [value]
|
/external/chromium_org/ppapi/api/ |
D | ppb_websocket.idl | 20 * GetReadyState() returns one of these states. 238 * has a secure scheme. Also returns <code>PP_ERROR_NOACCESS</code> if the 297 * This interface only returns a single message. That is, this interface must 311 * ReceiveMessage() completes synchronously and returns <code>PP_OK</code>. 314 * If an error is detected or connection is closed, ReceiveMessage() returns 344 * Otherwise, returns <code>PP_OK</code>, which doesn't necessarily mean 352 * GetBufferedAmount() returns the number of bytes of text and binary 365 * GetCloseCode() returns the connection close code for the WebSocket 377 * GetCloseReason() returns the connection close reason for the WebSocket 391 * GetCloseWasClean() returns if the connection was closed cleanly for the [all …]
|
12345678910>>...38