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

1 2 3 4

  /external/clang/test/Index/
index-kernel-invocation.cpp 3 // CHECK: [indexDeclaration]: kind: function | name: foobar
4 void foobar(void);
complete-macros.c 3 #define FOO(Arg1,Arg2) foobar
  /external/clang/test/SemaCXX/
libstdcxx_atomic_ns_hack.cpp 16 typedef int foobar; typedef in namespace:std::__atomic0
19 typedef void foobar; typedef in namespace:std::__atomic1
30 std::foobar fb;
33 using T = std::foobar; // expected-error {{different types ('std::foobar' (aka 'int') vs 'void')}}
cxx11-crashes.cpp 58 void foobar() function in namespace:rdar12542261
  /external/llvm/test/MC/ELF/
strtab-suffix-opt.s 4 .globl foobar
6 .type foobar,@function
7 foobar: label
17 .size foobar, .Ltmp3-foobar
19 // CHECK: Name: foobar (1)
tls.s 12 foobar: label
16 // CHECK: Name: foobar
  /external/clang/test/CodeGen/
2010-02-16-DbgScopes.c 9 extern void foobar();
14 foobar();
  /external/lldb/test/python_api/sbdata/
main.cpp 26 foo* foobar = new foo[2]; local
28 foobar[0].a = 1;
29 foobar[0].b = 9;
31 foobar[1].a = 8;
32 foobar[1].b = 5;
34 foobar[1].b = 7; // set breakpoint here
36 foobar[1].c = 6.28;
40 delete[] foobar;
  /external/clang/test/Sema/
attr-unknown.c 3 int x __attribute__((foobar)); // expected-warning {{unknown attribute 'foobar' ignored}}
predefined-function.c 28 int foobar(int); // note {{previous declaration is here}}
29 int foobar() // error {{conflicting types for 'foobar'}} function
  /external/e2fsprogs/lib/et/
init_et.c 27 struct foobar { struct
36 struct foobar * new_et;
41 new_et = (struct foobar *) malloc(sizeof(struct foobar));
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
execsect.asm 1 .section .foobar, "ax",@progbits
  /external/clang/test/Parser/
cxx11-base-spec-attributes.cpp 10 struct H : [[unknown::foobar]] A {}; // expected-warning {{unknown attribute 'foobar' ignored}}
  /external/clang/test/CodeGenCXX/
ctor-dtor-alias.cpp 16 template <typename T> struct foobar { struct in namespace:test1
17 foobar() {} function in struct:test1::foobar
20 template struct foobar<void>;
30 template <typename T> struct foobar { struct in namespace:test2
31 foobar() { g(); } function in struct:test2::foobar
33 foobar<void> x;
union-dtor.cpp 16 union FooBar {
17 FooBar() {}
18 ~FooBar() {}
32 FooBar foobar; variable
  /external/compiler-rt/test/tsan/
race_with_finished_thread.cc 12 void __attribute__((noinline)) foobar(int *p) { function
17 foobar(&g_data);
39 // CHECK: #0 foobar
  /external/compiler-rt/lib/tsan/go/
test.c 34 void foobar() {} function
51 __tsan_func_enter(thr1, (char*)&foobar + 1);
52 __tsan_func_enter(thr1, (char*)&foobar + 1);
58 __tsan_func_enter(thr2, (char*)&foobar + 1);
  /external/llvm/test/MC/COFF/
diff.s 11 _foobar: # @foobar
  /external/clang/test/Preprocessor/
traditional-cpp.c 97 FOO_NO_STRINGIFY(foobar)
98 /* CHECK: {{^}}test(# foobar){{$}}
107 BAR_NO_STRINGIFY(foobar)
108 /* CHECK: {{^}}test(#foobar){{$}}
  /external/lldb/test/expression_command/persistent_types/
TestPersistentTypes.py 37 self.runCmd("expression struct $foobar { char a; char b; char c; char d; };")
40 self.expect("memory read foo -t $foobar",
41 substrs = ['($foobar) 0x', ' = {', "a = 'H'","b = 'e'","c = 'l'","d = 'l'"]) # persistent types are OK to use for memory read
43 self.expect("memory read foo -t foobar",
44 substrs = ['($foobar) 0x', ' = {', "a = 'H'","b = 'e'","c = 'l'","d = 'l'"],matching=False,error=True) # the type name is $foobar, make sure we settle for nothing less
  /external/chromium_org/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...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
win64-dataref.asm 5 extern foobar ; :proc
16 foobarptr dd foobar
17 foobarptr2 dq foobar
34 mov ebx, foobar ; WTF ML64.. this had []
35 mov rcx, qword foobar
36 lea rdx, [foobar wrt rip]
37 mov rax, [foobar+rcx]
38 mov rax, qword foobar
39 mov rbx, qword foobar
40 movzx rax, byte [foobar wrt rip
    [all...]
  /external/chromium_org/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/clang/test/Analysis/
unreachable-code-path.c 128 enum foobar { FOO, BAR }; enum
130 void test11(enum foobar fb) {
  /external/clang/test/FixIt/
fixit.c 42 int test_cond(int y, int fooBar) { // expected-note {{here}}
43 // CHECK: int x = y ? 1 : 4+fooBar;
44 int x = y ? 1 4+foobar; // expected-error {{expected ':'}} expected-error {{undeclared identifier}} expected-note {{to match}}

Completed in 505 milliseconds

1 2 3 4