HomeSort by relevance Sort by last modified time
    Searched refs:returns (Results 1 - 25 of 392) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 59 returns(result);
73 returns(result);
89 returns(result);
104 returns(result);
120 returns(result);
136 returns(result);
148 returns(result);
160 returns(result);
175 returns(result);
191 returns(result)
454 private void returns(String result) { method in class:EGLLogWrapper
459 private void returns(int result) { method in class:EGLLogWrapper
463 private void returns(boolean result) { method in class:EGLLogWrapper
467 private void returns(Object result) { method in class:EGLLogWrapper
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/
LeftRecursiveRules.stg 40 <ruleName><if(userRetvals)> returns [<userRetvals>]<endif>
52 <recRuleName(...)>[<precArgDef>]<if(userRetvals)> returns [<userRetvals>]<endif>
73 <recPrimaryName(...)><if(userRetvals)> returns [<userRetvals>]<endif>
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb 23 evaluate returns [result]: r=expression { $result = $r.result };
25 expression returns [result]:
33 mult returns [result]:
42 log returns [result]: 'ln' r=exp {$result = Math.log($r.result)}
46 exp returns [result]: r=atom { $result = $r.result } ('^' r2=atom { $result **= $r2.result } )?
49 atom returns [result]:
actions.rb 11 declaration returns [name]
16 functionHeader returns [name]
124 prog returns [events]
211 nums returns [ds]: digs+=DIGIT+
properties.rb 30 a returns [bla]
71 a returns [l]
132 a returns [$tk]
198 a returns [bla]: t=b
230 a returns [foo]: A EOF { $foo = '\%s, channel=\%p' \% [$A.text, $A.channel]; } ;
  /external/smali/smali/src/main/antlr3/
smaliTreeWalker.g 157 header returns[TypeIdItem classType, int accessFlags, TypeIdItem superType, TypeListItem implementsList, StringIdItem sourceSpec]
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> instanceFields,
250 methods returns[List<ClassDataItem.EncodedMethod> directMethods,
286 field returns [ClassDataItem.EncodedField encodedField, EncodedValue encodedValue, AnnotationSetItem fieldAnnota (…)
    [all...]
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/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/test/MC/MachO/
tlv-reloc.s 21 call *(%rdi) # returns &a in %rax
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/JavaCompat/
Expr.g3 85 expr returns [int value]
92 multExpr returns [int value]
96 atom returns [int value]
  /external/llvm/bindings/ocaml/analysis/
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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.g3 63 expr returns [BigInteger value]
74 call returns [BigInteger value]
ProfileTreeGrammar.g3 63 expr returns [BigInteger value]
74 call returns [BigInteger value]
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
media_action.js 8 // Returns elements matching the selector, otherwise returns the first video
10 // If selector == 'all', returns all media elements.
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
TextHtmlFunction.java 206 int returns = 0; local
230 returns++;
259 if (returns > 2) {
265 returns = 0;
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
StGUnit.g 78 expect returns [ITestCaseOutput out]
81 | 'returns' RETVAL {$out = adapter.createReturnOutput($RETVAL.text);}
86 input returns [ITestCaseInput in]
98 fileInput returns [String path]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_protocol_externs.py 151 returns = ["?Protocol.Error"] variable
153 returns.append("%s=" % param_type(domain_name, command["error"]))
154 if ("returns" in command):
155 for out_param in command["returns"]:
157 returns.append("%s=" % param_type(domain_name, out_param))
159 returns.append("%s" % param_type(domain_name, out_param))
160 output_file.write(" * @param {function(%s):void=} opt_callback\n" % ", ".join(returns))
164 output_file.write("/** @param {function(%s):void=} opt_callback */\n" % ", ".join(returns))
  /external/llvm/bindings/ocaml/llvm/
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]. Se
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
simple-inlining.js 30 // Test that we can inline a function that returns a constant.
52 // Test that we can inline a function that returns 'this'.
74 // Test that we can inline a function that returns 'this.x'.
96 // Test that we can inline a function that returns 'this.x.length'.
118 // Test that we can inline a function that returns 'this.x.y'.
141 // Test that we can inline a function that returns 'this.x.length'.
  /external/v8/test/mjsunit/compiler/
simple-inlining.js 30 // Test that we can inline a function that returns a constant.
52 // Test that we can inline a function that returns 'this'.
74 // Test that we can inline a function that returns 'this.x'.
96 // Test that we can inline a function that returns 'this.x.length'.
118 // Test that we can inline a function that returns 'this.x.y'.
141 // Test that we can inline a function that returns 'this.x.length'.

Completed in 1241 milliseconds

1 2 3 4 5 6 7 8 91011>>