/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/ |
win32-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/win64/tests/ |
win64-curpos.asm | 1 global bar 4 section .bar 5 bar: label 21 ;dd (bar-$)+(foo-$) ; illegal (too many cross-segment)
|
/external/clang/test/CodeGen/ |
arm-asm-warn.c | 4 char bar(); 10 : "r" (bar())); // no warning
|
ppc64-struct-onefloat.c | 9 void bar(Sf a, Sd b, SSf d, SSd e) {} function 11 // CHECK-LABEL: define void @bar 34 bar(p1, p2, p4, p5); 48 // CHECK: call void @bar(float inreg %{{[0-9]+}}, double inreg %{{[0-9]+}}, float inreg %{{[0-9]+}}, double inreg %{{[0-9]+}})
|
regparm.c | 12 FType bar; variable 26 bar(1,2);
|
/external/clang/test/Misc/ |
ast-dump-templates.cpp | 14 B bar() { function 19 int x = bar<5, int>(); 34 // Template instantiation - bar 35 // CHECK1: template <int A = 5, typename B = int> int bar() 36 // CHECK2: template <int A = 5, typename B = int> int bar() 38 // Template definition - bar 39 // CHECK1: template <int A, typename B> B bar() 40 // CHECK2: template <int A, typename B> B bar()
|
/external/clang/test/PCH/ |
captured-stmt.cpp | 22 void bar(int &x) { function in struct:C 39 Obj.bar(x);
|
/external/clang/test/SemaCXX/ |
warn-unused-filescoped.cpp | 26 static inline void bar(T, U) { } function in namespace:test7 29 inline void bar(int, U) { } function in namespace:test7 32 inline void bar(int, int) { } function in namespace:test7 131 void bar() { function in namespace:rdar8733476 168 void bar(); 172 void bar(); // expected-warning {{unused member function 'bar'}} 176 void bar(); 199 void bar() { void func() __attribute__((used)); } function in namespace:test8
|
expressions.cpp | 19 template <class T> void bar(T &x) { T::fail(); } function in namespace:test1 20 template <class T> void bar(volatile T &x) {} function in namespace:test1 24 bar(x = 5); 25 bar(x += 5); 31 bar(x = E_zero); 32 bar(x += E_zero); // expected-error {{incompatible type}}
|
undefined-internal.cpp | 8 template <class T> static void bar(); // expected-warning {{function 'test1::bar<int>' has internal linkage but is not defined}} 12 bar<int>(); // expected-note {{used here}} 20 template <class T> void bar(); // expected-warning {{function 'test2::(anonymous namespace)::bar<int>' has internal linkage but is not defined}} 25 bar<int>(); // expected-note {{used here}} 33 template <class T> void bar(); 39 bar<int>(); 45 template <class T> void bar() {} function in namespace:test3::__anon23184 55 virtual void bar() = 0 [all...] |
/external/compiler-rt/test/asan/TestCases/Linux/ |
coverage-fork-direct.cc | 17 void bar() { printf("bar\n"); } function 30 bar();
|
coverage-fork.cc | 17 void bar() { printf("bar\n"); } function 30 bar();
|
/ndk/sources/android/crazy_linker/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...] |
/ndk/tests/build/import-static/foo/ |
Android.mk | 10 $(call import-module,bar)
|
/ndk/tests/build/multi-module-path/jni/ |
Android.mk | 9 $(call import-module,bar)
|
/ndk/tests/build/prebuilt-copy/prebuilts/jni/ |
Android.mk | 10 LOCAL_SRC_FILES := bar.c
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
new16.cpp | 12 void __attribute__((noinline)) bar() {} function 24 bar ();
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
new16.cpp | 12 void __attribute__((noinline)) bar() {} function 24 bar ();
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/ |
xdfother.asm | 9 mov ax, bar 11 mov ax, [var2 wrt bar] 17 [section bar]
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-inline-getter-near-stack-limit.js | 14 function g(x) { return x.bar; } 18 var x = Object.defineProperty({}, "bar", { get: f1 }); 21 var y = Object.defineProperty({}, "bar", { get: f2 });
|
/external/clang/test/Index/ |
usrs.cpp | 3 void bar(int z); 5 namespace bar { namespace 7 void bar(QType z); 71 void bar(); 75 void RDar9371763_Foo::bar() {} function in class:RDar9371763_Foo 79 foo.bar(); 85 // CHECK: usrs.cpp c:@N@foo@F@bar#I# Extent=[3:3 - 3:18] 86 // CHECK: usrs.cpp c:usrs.cpp@36@N@foo@F@bar#I#@z Extent=[3:12 - 3:17] 87 // CHECK: usrs.cpp c:@N@bar Extent=[5:1 - 8:2] 88 // CHECK: usrs.cpp c:usrs.cpp@N@bar@T@QType Extent=[6:3 - 6:20 [all...] |
/external/clang/test/Sema/ |
flexible-array-init.c | 22 struct bar { struct foo z; }; // expected-warning {{'z' may not be nested in a struct due to flexible array member}} struct 25 struct bar b = { { 1, { 2, 3, 4 } } }; // expected-error{{initialization of flexible array member is not allowed}} 26 struct bar c = { { 1, { } } }; // // expected-warning{{flexible array initialization is a GNU extension}} \ 33 struct bar desig_bar = { .z.y = { } }; // expected-warning{{use of GNU empty initializer extension}} \ 36 struct bar desig_bar2 = { .z.y = { 2, 3, 4} }; // expected-error{{initialization of flexible array member is not allowed}} 77 struct PR8217a bar; local
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/ |
slider.css | 9 background: transparent; /* Hide the standard slider bar */ 27 /* Custom slider bar (we hide the standard one). */ 28 .slider > .bar { 29 /* In order to match the horizontal position of the standard slider bar 41 .slider > .bar > .filled, 42 .slider > .bar > .cap { 46 /* The filled portion of the slider bar to the left of the thumb. */ 47 .slider > .bar > .filled { 54 .slider > .bar > .cap.right { 61 .slider > .bar > .filled [all...] |
/external/chromium_org/v8/test/mjsunit/ |
array-constructor-feedback.js | 89 function bar(t, len) { 93 a = bar(Array, 10); 95 b = bar(Array, 1); 97 c = bar(Object, 3); 98 b = bar(Array, 10); 142 function bar(len) { 145 a = bar(10); 147 a = bar(10); 149 %OptimizeFunctionOnNextCall(bar); 150 a = bar(10) [all...] |
/external/clang/test/CodeGenCXX/ |
linkage.cpp | 150 template <typename T> inline void *bar() { function in namespace:test12 158 return reinterpret_cast<void *>(bar<S2>); 167 static void bar() {} function in struct:test13::S 169 return (void *)S::bar; 177 template <T *P> static void bar() {} function in struct:test14::foo 178 static void *g() { return (void *)bar<nullptr>; } 192 class bar { class 194 return reinterpret_cast<void *>(zed<bar>); 203 static void *bar(); 205 template <class T> void *foo<T>::bar() { function in class:test16::foo 218 static int bar; local [all...] |