HomeSort by relevance Sort by last modified time
    Searched full:foobar (Results 51 - 75 of 587) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/test/Bindings/llvm-c/
globals.ll 3 @foo = constant [7 x i8] c"foobar\00", align 1
  /external/v8/test/webkit/fast/js/
Promise-exception-expected.txt 6 PASS result is "foobar"
  /libcore/luni/src/test/resources/
SimpleParserTest.xml 7 <t:stuff xmlns:t="http://www.foobar.org">
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/
msg_18.txt 4 X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals";
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/
msg_18.txt 4 X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals";
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
fake_fs_unittest.py 15 fs.AddFile('/blah/x', 'foobar')
19 'foobar',
24 fs.AddFile('/blah/x', 'foobar')
27 self.assertEquals('foobar', f.read())
34 fs.AddFile('/a.txt', 'foobar')
  /external/v8/test/mjsunit/harmony/
regexp-sticky.js 35 var plain = /foobar/;
37 assertTrue(!!"foobar".match(plain));
38 assertTrue(!!"..foobar".match(plain));
46 var stickyplain = /foobar/y;
48 assertTrue(!!"foobar".match(stickyplain));
50 assertFalse(!!"..foobar".match(stickyplain));
59 var plainglobal = /foobar/g;
61 assertTrue(plainglobal.test("foobar"));
62 assertFalse(plainglobal.test("foobar"));
64 assertTrue(plainglobal.test("foobar"));
    [all...]
  /bionic/tests/
fortify_compilation_test.cpp 36 sprintf(buf, "foobar"); // NOLINT(runtime/printf)
41 sprintf(buf, "%s", "foobar"); // NOLINT(runtime/printf)
50 snprintf(buf, 5, "foobar"); // NOLINT(runtime/printf)
55 snprintf(buf, 5, "%s", "foobar"); // NOLINT(runtime/printf)
60 snprintf(buf, 5, " %s ", "foobar"); // NOLINT(runtime/printf)
74 memcpy(buf, "foobar", sizeof("foobar"));
83 memmove(buf, "foobar", sizeof("foobar"));
101 strcpy(buf, "foobar"); // NOLINT(runtime/printf
    [all...]
  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 3 namespace fizbin { class Foobar {}; } // expected-note 2 {{'fizbin::Foobar' declared here}} \
4 // expected-note {{'Foobar' declared here}}
5 Foobar *my_bar // expected-error{{unknown type name 'Foobar'; did you mean 'fizbin::Foobar'?}}
6 = new Foobar; // expected-error{{unknown type name 'Foobar'; did you mean 'fizbin::Foobar'?}}
7 fizbin::Foobar *my_foo = new fizbin::FooBar; // expected-error{{no type named 'FooBar' in namespace 'fizbin'; did (…)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AbstractCursorTest.java 33 cursor.theTable.add("Foobar");
46 cursor.theTable.add("Foobar");
61 cursor.theTable.add("Foobar");
71 cursor.theTable.add("Foobar");
87 cursor.theTable.add("Foobar");
98 cursor.theTable.add("Foobar");
113 cursor.theTable.add("Foobar");
131 cursor.theTable.add("Foobar");
142 cursor.theTable.add("Foobar");
153 cursor.theTable.add("Foobar");
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t026actions.g 8 this.foobar = "attribute;";
37 this.xlog.push(this.foobar);
t039labels.g 14 D: a='FOOBAR';
  /external/antlr/antlr-3.4/runtime/Python/tests/
t013parser.py 11 cStream = antlr3.StringStream('foobar')
18 assert parser.identifiers == ['foobar']
t026actions.g 7 self.foobar = 'attribute;'
35 self.capture(self.foobar)
t024finally.py 12 cStream = antlr3.StringStream('foobar')
t050decorate.py 11 cStream = antlr3.StringStream('foobar')
  /external/llvm/test/FileCheck/
multiple-missing-prefixes.txt 4 foobar
5 ; ANOTHER-PREFIX: foobar
line-count.txt 9 9 foobar
  /external/llvm/test/TableGen/
strconcat.td 6 // CHECK: string S = "foobar";
12 // CHECK: string S = "foobar";
  /external/llvm/test/Transforms/InstCombine/
zext-or-icmp.ll 3 %struct.FooBar = type <{ i8, i8, [2 x i8], i8, i8, i8, i8, i16, i16, [4 x i8], [8 x %struct.Rock] }>
7 define zeroext i8 @t(%struct.FooBar* %up, i8 zeroext %intra_flag, i32 %blk_i) nounwind {
13 %tmp8 = getelementptr %struct.FooBar, %struct.FooBar* %up, i32 0, i32 7 ; <i16*> [#uses=1]
21 %tmp18 = getelementptr %struct.FooBar, %struct.FooBar* %up, i32 0, i32 0 ; <i8*> [#uses=1]
24 %tmp24 = getelementptr %struct.FooBar, %struct.FooBar* %up, i32 0, i32 0 ; <i8*> [#uses=1]
  /external/v8/test/mjsunit/
regexp-not-sticky-yet.js 32 assertThrows(function() { eval("/foobar/y"); }, SyntaxError);
34 assertThrows(function() { eval("/foobar/gy"); }, SyntaxError);
36 assertThrows(function() { new RegExp("foobar", "y"); }, SyntaxError);
38 assertThrows(function() { new RegExp("foobar", "gy"); }, SyntaxError);
42 var plain = /foobar/;
43 assertEquals("/foobar/", "" + plain);
50 var plainglobal = /foobar/g;
51 assertEquals("/foobar/g", "" + plainglobal);
  /external/llvm/test/Linker/
linkmdnode.ll 6 !21 = !{i32 42, !"foobar"}
linkmdnode2.ll 5 !22 = !{i32 42, !"foobar"}
  /external/clang/test/Sema/
typo-correction.c 16 int foobar; // expected-note {{'foobar' declared here}} variable
18 // expected-error {{use of undeclared identifier 'goobar'; did you mean 'foobar'?}} \
  /external/compiler-rt/test/tsan/
race_with_finished_thread.cc 8 void __attribute__((noinline)) foobar(int *p) { function
13 foobar(&g_data);
38 // CHECK: #0 foobar

Completed in 534 milliseconds

1 23 4 5 6 7 8 91011>>