/external/clang/test/Parser/ |
cxx-default-delete.cpp | 16 void bar() = delete;
|
cxx-reference.cpp | 4 char *& bar = bork; variable
|
pointer_promotion.c | 8 struct bar *bp; 13 if (fp < bp) {} // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}}
|
/external/clang/test/Preprocessor/ |
traditional-cpp.c | 17 /* CHECK: {{^}}foo // bar{{$}} 20 foo // bar 38 # define foo bar 42 /* CHECK: {{^}}bar!{{$}} 43 * CHECK: {{^}} bar! bar! {{$}} 48 # define foo bar 52 /* CHECK: {{^}}bar!{{$}} 53 * CHECK: {{^}} bar! bar! {{$} [all...] |
/external/clang/test/Sema/ |
void_arg.c | 23 void bar(Void) { function
|
/external/clang/test/SemaCXX/ |
access-member-pointer.cpp | 9 void bar() { function
|
attr-unavailable.cpp | 8 void bar(...) __attribute__((__unavailable__)); // expected-note 2{{explicitly marked unavailable}} 15 void (*fp)(...) = &bar; // expected-error{{'bar' is unavailable}} 16 void (*fp2)(...) = bar; // expected-error{{'bar' is unavailable}} 27 void bar() { function in namespace:radar9046492
|
exception-spec-no-exceptions.cpp | 30 void bar() throw() { function in namespace:test2
|
short-enums.cpp | 13 void bar(int x) { function
|
/external/clang/test/SemaTemplate/ |
member-inclass-init-value-dependent.cpp | 9 foo<4> bar; local
|
ms-if-exists.cpp | 35 void bar(int); 36 void bar(float); 46 __if_not_exists(T::bar) { 53 __if_exists(T::bar) {2, }// expected-warning{{dependent __if_exists declarations are ignored}}
|
/external/lldb/test/expression_command/formatters/ |
formatters.py | 4 bar = valobj.GetChildMemberWithName('b'); 5 i = bar.GetChildMemberWithName('i'); 6 i_ptr = bar.GetChildMemberWithName('i_ptr'); 7 b_ref = bar.GetChildMemberWithName('b_ref');
|
/external/llvm/test/DebugInfo/Inputs/ |
dwarfdump-test-32bit.elf.c | 10 int bar(int arg) { function
|
/external/llvm/test/MC/AsmParser/ |
macro-args.s | 20 .macro bar 24 bar 1, 2, 3 label 25 bar label 47 top bar, 42
|
/external/llvm/test/MC/COFF/ |
section.s | 4 .section .foo$bar; .long 1 5 .section .foo@bar; .long 1 12 // CHECK: Name: .foo$bar 15 // CHECK: Name: .foo@bar
|
/external/llvm/test/MC/X86/AlignedBundling/ |
pad-bundle-groups.s | 11 callq bar 12 callq bar 15 callq bar 16 callq bar 24 callq bar 25 callq bar 33 callq bar 35 callq bar 36 callq bar 37 callq bar [all...] |
/external/valgrind/main/helgrind/tests/ |
bar_trivial.c | 15 pthread_barrier_t bar; variable 23 r = pthread_barrier_wait(&bar); 40 r = pthread_barrier_init(&bar, NULL, NTHR); 53 r = pthread_barrier_destroy(&bar); assert(!r);
|
/ndk/tests/device/test-gnustl_shared-exception/jni/ |
test2_foo.cpp | 22 extern int bar(void) function
|
/ndk/tests/device/test-gnustl_static-exception/jni/ |
test2_foo.cpp | 22 extern int bar(void) function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
sample_doctest.py | 25 def bar(): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
sample_doctest.py | 25 def bar(): function
|
/external/chromium_org/third_party/android_crazy_linker/src/tests/ |
test_two_shared_relros.cpp | 35 RelroLibrary bar; local 44 bar.Init("libbar_with_relro.so", context); 63 printf("Child waiting for bar relro fd\n"); 64 bar.ReceiveRelroInfo(pipes[0]); 65 bar.UseSharedRelro(context); 73 bar.library, "Bar", reinterpret_cast<void**>(&bar_func))) 74 Panic("Could not find 'Bar' in library"); 76 printf("Calling Bar()\n"); 79 printf("Bar() called, exiting\n") [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/ |
curpos-err.asm | 1 global bar 4 section .bar 5 bar: label 21 dd (bar-$)+(foo-$) ; illegal (too many cross-segment)
|
curpos.asm | 1 global bar 4 section .bar 5 bar: label 21 ;dd (bar-$)+(foo-$) ; illegal (too many cross-segment)
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/gas64/ |
elf_gas64_curpos.asm | 1 .globl bar 4 .section .bar 5 bar: label 21 #.4byte (bar-.)+(foo-.) # illegal (too many cross-segment)
|