HomeSort by relevance Sort by last modified time
    Searched full:foob (Results 1 - 25 of 34) sorted by null

1 2

  /external/v8/test/mjsunit/es6/
unicode-escapes.js 11 assertEquals(foob\u0061r, 1);
12 assertEquals(foob\u{0061}r, 1);
13 assertEquals(foob\u{61}r, 1);
14 assertEquals(foob\u{0000000061}r, 1);
28 var s1 = "foob\u0061r";
30 var s2 = "foob\u{0061}r";
32 var s3 = "foob\u{61}r";
34 var s4 = "foob\u{0000000061}r";
  /external/llvm/test/Assembler/
aggregate-return-single-value.ll 4 define { i32 } @foob() nounwind {
  /external/clang/test/SemaCXX/
warn-enum-compare.cpp 3 enum Foo { FooA, FooB, FooC };
91 while (FooB == y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
92 while (FooB != y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
93 while (FooB >= y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
94 while (FooB <= y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
95 while (FooB > y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
96 while (FooB < y); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
98 while (FooB == BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
99 while (FooB != BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo' and 'Bar')}}
100 while (FooB >= BarD); // expected-warning {{comparison of two values with different enumeration types ('Foo' (…)
    [all...]
warn-thread-safety-analysis.cpp 576 LateFoo FooB;
591 LateFoo fooB;
593 fooB.a = 5; // \
594 // expected-warning{{writing variable 'a' requires holding mutex 'fooB.mu' exclusively}} \
    [all...]
  /external/libxml2/result/
att5.sax2 28 SAX.startElementNs(norm, NULL, NULL, 0, 1, 0, attr='foob...', 8)
48 SAX.startElementNs(norm, NULL, NULL, 0, 1, 0, attr='foob...', 13)
68 SAX.startElementNs(norm, NULL, NULL, 0, 1, 0, attr='foob...', 9)
89 SAX.startElementNs(normId, NULL, NULL, 0, 1, 0, attr='foob...', 6)
97 SAX.startElementNs(normId, NULL, NULL, 0, 1, 0, attr='foob...', 6)
109 SAX.startElementNs(normId, NULL, NULL, 0, 1, 0, attr='foob...', 11)
117 SAX.startElementNs(normId, NULL, NULL, 0, 1, 0, attr='foob...', 12)
129 SAX.startElementNs(normId, NULL, NULL, 0, 1, 0, attr='foob...', 7)
137 SAX.startElementNs(normId, NULL, NULL, 0, 1, 0, attr='foob...', 8)
  /external/vboot_reference/tests/
vb21_host_misc_tests.c 27 TEST_EQ(vb2_desc_size("foob"), 8, "desc size 'foob'");
  /external/guava/guava-gwt/test-super/com/google/common/io/super/com/google/common/io/
BaseEncodingTest.java 81 testEncodingWithSeparators(base64(), "foob", "Zm9vYg==");
130 testEncodingWithSeparators(enc, "foob", "Zm9vYg~~");
141 testEncodingWithSeparators(enc, "foob", "Zm9vYg");
152 testEncodingWithCasing(base32(), "foob", "MZXW6YQ=");
172 testEncodingWithCasing(enc, "foob", "MZXW6YQ~");
199 testEncodingWithCasing(base32Hex(), "foob", "CPNMUOG=");
234 testEncodingWithCasing(base16(), "foob", "666F6F62");
  /external/guava/guava-tests/test/com/google/common/io/
BaseEncodingTest.java 87 testEncodingWithSeparators(base64(), "foob", "Zm9vYg==");
99 testStreamingEncodingWithSeparators(base64(), "foob", "Zm9vYg==");
148 testEncodingWithSeparators(enc, "foob", "Zm9vYg~~");
160 testStreamingEncodingWithSeparators(enc, "foob", "Zm9vYg~~");
171 testEncodingWithSeparators(enc, "foob", "Zm9vYg");
183 testStreamingEncodingWithSeparators(enc, "foob", "Zm9vYg");
194 testEncodingWithCasing(base32(), "foob", "MZXW6YQ=");
206 testStreamingEncodingWithCasing(base32(), "foob", "MZXW6YQ=");
226 testEncodingWithCasing(enc, "foob", "MZXW6YQ~");
253 testEncodingWithCasing(base32Hex(), "foob", "CPNMUOG=")
    [all...]
  /external/clang/test/Sema/
mips-interrupt-attr.c 20 __attribute__((interrupt)) int foob() {return 0;} // expected-warning {{MIPS 'interrupt' attribute only applies to functions that have a 'void' return type}} function
  /external/llvm/test/MC/ELF/
tls-i386.s 15 .long fooB@TLSLDM
111 // CHECK-NEXT: Name: fooB
  /external/boringssl/src/crypto/base64/
base64_test.cc 34 { "foob", "Zm9vYg==" },
  /external/guice/core/test/com/google/inject/spi/
InjectionPointTest.java 221 Signature fooB = new Signature(Foo.class.getDeclaredMethod("b"));
227 assertEquals(fooB.hashCode(), barB.hashCode());
229 assertEquals(fooB, barB);
  /external/guava/guava-tests/test/com/google/common/base/
AsciiTest.java 94 assertEquals("foob?", Ascii.truncate("foobar", 5, "?"));
  /external/webrtc/talk/app/webrtc/
proxy.h 37 // std::string FooB(bool arg1) const = 0;
49 // PROXY_CONSTMETHOD1(std::string, FooB, arg1)
  /libcore/luni/src/test/java/libcore/java/util/
LinkedHashMapTest.java 233 m.put("foob", "faab");
  /external/clang/test/CodeGenCXX/
vtable-assume-load.cpp 46 void fooB() {
  /prebuilts/go/darwin-x86/src/encoding/base32/
base32_test.go 25 {"foob", "MZXW6YQ="},
  /prebuilts/go/linux-x86/src/encoding/base32/
base32_test.go 25 {"foob", "MZXW6YQ="},
  /art/cmdline/
token_range.h 265 // MatchSubstrings on "a:foob:" will yield: ["a:", "foo", "b:"]
  /prebuilts/go/darwin-x86/src/encoding/base64/
base64_test.go 33 {"foob", "Zm9vYg=="},
  /prebuilts/go/linux-x86/src/encoding/base64/
base64_test.go 33 {"foob", "Zm9vYg=="},
  /system/core/fastboot/
socket_test.cpp 225 {"foob", "ar123", "45"},
  /external/v8/test/cctest/
test-parsing.cc     [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
MatcherTest.java 383 String input = "foob";
  /external/pcre/dist/testdata/
testoutput8 962 foob\P\>2
963 Partial match at offset 3: foob
    [all...]

Completed in 2854 milliseconds

1 2