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

1 2 3 4 5 6 7 8 91011>>

  /art/test/115-native-bridge/src/
NativeBridgeMain.java 101 byte returns[] = { 0, 1, 2, 127, -1, -2, -128 };
102 for (int i = 0; i < returns.length; i++) {
105 if (returns[i] != result) {
106 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
116 short returns[] = { 0, 1, 2, 127, 32767, -1, -2, -128, -32768 }; local
117 for (int i = 0; i < returns.length; i++) {
120 if (returns[i] != result) {
121 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
146 char returns[] = { (char)0, (char)1, (char)2, (char)127, (char)255, (char)256, (char)15000, local
148 for (int i = 0; i < returns.length; i++)
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue6671.go 20 b = true && true // permitted => && returns an untyped bool
21 b = x < y // permitted => x < y returns an untyped bool
22 b = true && x < y // permitted => result of && returns untyped bool
23 b = x < y && x < y // permitted => result of && returns untyped bool
24 b = x < y || x < y // permitted => result of || returns untyped bool
26 c = false || x < y // permitted => result of || returns untyped bool
  /prebuilts/go/linux-x86/test/fixedbugs/
issue6671.go 20 b = true && true // permitted => && returns an untyped bool
21 b = x < y // permitted => x < y returns an untyped bool
22 b = true && x < y // permitted => result of && returns untyped bool
23 b = x < y && x < y // permitted => result of && returns untyped bool
24 b = x < y || x < y // permitted => result of || returns untyped bool
26 c = false || x < y // permitted => result of || returns untyped bool
  /prebuilts/go/darwin-x86/doc/play/
fib.go 5 // fib returns a function that returns
  /prebuilts/go/linux-x86/doc/play/
fib.go 5 // fib returns a function that returns
  /prebuilts/go/darwin-x86/src/net/
interface_stub.go 9 // If the ifindex is zero, interfaceTable returns mappings of all
10 // network interfaces. Otherwise it returns a mapping of a specific
16 // If the ifi is nil, interfaceAddrTable returns addresses for all
17 // network interfaces. Otherwise it returns addresses for a specific
23 // interfaceMulticastAddrTable returns addresses for a specific
  /prebuilts/go/linux-x86/src/net/
interface_stub.go 9 // If the ifindex is zero, interfaceTable returns mappings of all
10 // network interfaces. Otherwise it returns a mapping of a specific
16 // If the ifi is nil, interfaceAddrTable returns addresses for all
17 // network interfaces. Otherwise it returns addresses for a specific
23 // interfaceMulticastAddrTable returns addresses for a specific
  /art/test/004-JniTest/src/
Main.java 124 byte returns[] = { 0, 1, 2, 127, -1, -2, -128 };
125 for (int i = 0; i < returns.length; i++) {
128 if (returns[i] != result) {
129 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
145 short returns[] = { 0, 1, 2, 127, 32767, -1, -2, -128, -32768 }; local
146 for (int i = 0; i < returns.length; i++) {
149 if (returns[i] != result) {
150 System.out.println("Run " + i + " with " + returns[i] + " vs " + result);
175 char returns[] = { (char)0, (char)1, (char)2, (char)127, (char)255, (char)256, (char)15000, local
177 for (int i = 0; i < returns.length; i++)
283 int returns[] = { 0, 3, 6, 9, 12 }; local
301 int returns[] = { 3, 6, 9, 12, 15 }; local
    [all...]
  /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>
  /prebuilts/go/darwin-x86/src/os/
dir.go 8 // returns a slice of up to n FileInfo values, as would be returned
12 // If n > 0, Readdir returns at most n FileInfo structures. In this case, if
13 // Readdir returns an empty slice, it will return a non-nil error
16 // If n <= 0, Readdir returns all the FileInfo from the directory in
18 // the way to the end of the directory), it returns the slice and a
20 // directory, Readdir returns the FileInfo read until that point
29 // Readdirnames reads and returns a slice of names from the directory f.
31 // If n > 0, Readdirnames returns at most n names. In this case, if
32 // Readdirnames returns an empty slice, it will return a non-nil error
35 // If n <= 0, Readdirnames returns all the names from the directory i
    [all...]
  /prebuilts/go/linux-x86/src/os/
dir.go 8 // returns a slice of up to n FileInfo values, as would be returned
12 // If n > 0, Readdir returns at most n FileInfo structures. In this case, if
13 // Readdir returns an empty slice, it will return a non-nil error
16 // If n <= 0, Readdir returns all the FileInfo from the directory in
18 // the way to the end of the directory), it returns the slice and a
20 // directory, Readdir returns the FileInfo read until that point
29 // Readdirnames reads and returns a slice of names from the directory f.
31 // If n > 0, Readdirnames returns at most n names. In this case, if
32 // Readdirnames returns an empty slice, it will return a non-nil error
35 // If n <= 0, Readdirnames returns all the names from the directory i
    [all...]
  /prebuilts/go/darwin-x86/src/math/
unsafe.go 9 // Float32bits returns the IEEE 754 binary representation of f.
12 // Float32frombits returns the floating point number corresponding
16 // Float64bits returns the IEEE 754 binary representation of f.
19 // Float64frombits returns the floating point number corresponding
  /prebuilts/go/linux-x86/src/math/
unsafe.go 9 // Float32bits returns the IEEE 754 binary representation of f.
12 // Float32frombits returns the floating point number corresponding
16 // Float64bits returns the IEEE 754 binary representation of f.
19 // Float64frombits returns the floating point number corresponding
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-powerpc/
attr-gnu-12-21.d 5 #warning: Warning: .* uses r3/r4 for small structure returns, .* uses memory
  /prebuilts/tools/linux-x86_64/kythe/proto/
filetree.proto 24 // CorpusRoots returns all known corpus/root pairs for stored files.
25 rpc CorpusRoots(CorpusRootsRequest) returns (CorpusRootsReply) {}
27 // Directory returns the file/sub-directory contents of the given directory.
28 rpc Directory(DirectoryRequest) returns (DirectoryReply) {}
storage.proto 28 rpc Read(ReadRequest) returns (stream Entry) {}
34 rpc Scan(ScanRequest) returns (stream Entry) {}
43 rpc Write(WriteRequest) returns (WriteReply) {}
50 // Count returns the number of entries in the given shard.
51 rpc Count(CountRequest) returns (CountReply) {}
54 rpc Shard(ShardRequest) returns (stream Entry) {}
  /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]:
  /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/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
  /prebuilts/go/darwin-x86/src/strconv/
atob.go 7 // ParseBool returns the boolean value represented by the string.
9 // Any other value returns an error.
20 // FormatBool returns "true" or "false" according to the value of b
29 // to dst and returns the extended buffer.

Completed in 676 milliseconds

1 2 3 4 5 6 7 8 91011>>