HomeSort by relevance Sort by last modified time
    Searched refs:returns (Results 1 - 25 of 495) 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/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
  /sdk/monkeyrunner/src/com/android/monkeyrunner/doc/
MonkeyRunnerExported.java 60 String returns() default "returns nothing.";
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyView.java 53 returns = "A boolean value for whether the item is checked or not")
60 @MonkeyRunnerExported(doc = "Returns the class name of the view",
61 returns = "The class name of the view as a string")
68 @MonkeyRunnerExported(doc = "Returns the text contained by the view",
69 returns = "The text contained in the view")
76 @MonkeyRunnerExported(doc = "Returns the location of the view in the form of a MonkeyRect",
77 returns = "The location of the view as a MonkeyRect object")
84 @MonkeyRunnerExported(doc = "Returns the enabled status of the view",
85 returns = "The enabled status of the view as a boolean")
92 @MonkeyRunnerExported(doc = "Returns the selected status of the view"
    [all...]
MonkeyImage.java 53 @MonkeyRunnerExported(doc = "Converts the MonkeyImage into a particular format and returns " +
60 returns = "The resulting image as a String.")
77 returns = "boolean true if writing succeeded.")
89 "to the right, and Y increases towards the bottom. This method returns a tuple.",
92 returns = "A tuple of (A, R, G, B) for the pixel. Each item in the tuple has the " +
110 "to the right, and Y increases towards the bottom. This method returns an Integer.",
113 returns = "An unsigned integer pixel for x,y. The 8 high-order bits are A, followed" +
130 returns = "boolean 'true' if the two objects contain the same image.")
148 returns = "a MonkeyImage object representing the copied region.")
MonkeyRect.java 62 @MonkeyRunnerExported(doc = "Returns the width of the rectangle",
63 returns = "The width of the rectangle as an integer")
68 @MonkeyRunnerExported(doc = "Returns the height of the rectangle",
69 returns = "The height of the rectangle as an integer")
74 @MonkeyRunnerExported(doc = "Returns a two item list that contains the x and y value of " +
76 returns = "The center coordinates as a two item list of integers")
MonkeyDevice.java 80 returns = "A HierarchyViewer object")
87 returns = "A MonkeyImage object (a bitmap wrapper)")
94 "returns the variable's value",
98 returns = "The variable's value")
109 returns = "The variable's value.")
208 @MonkeyRunnerExported(doc = "Executes an adb shell command and returns the result, if any.",
211 returns = "The output from the command.")
236 returns = "True if the install succeeded")
249 returns = "True if remove succeeded")
334 returns = "A map of strings to objects for the output from the package. "
    [all...]
  /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/smali/smali/src/main/antlr3/org/jf/smali/
smaliTreeWalker.g 185 header returns[TypeIdItem classType, int accessFlags, TypeIdItem superType, TypeListItem implementsList, StringIdItem sourceSpec]
197 class_spec returns[TypeIdItem type, int accessFlags]
204 super_spec returns[TypeIdItem type]
211 implements_spec returns[TypeIdItem type]
217 implements_list returns[TypeListItem implementsList]
229 source_spec returns[StringIdItem source]
236 access_list returns [int value]
250 fields returns[List<ClassDataItem.EncodedField> staticFields, List<ClassDataItem.EncodedField> instanceFields,
278 methods returns[List<ClassDataItem.EncodedMethod> directMethods,
314 field returns [ClassDataItem.EncodedField encodedField, EncodedValue encodedValue, AnnotationSetItem fieldAnnota (…)
    [all...]
  /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/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/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...]

Completed in 778 milliseconds

1 2 3 4 5 6 7 8 91011>>