Searched refs:bar (Results 151 - 175 of 1080) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Darm64_vecCmpBr.c6 unsigned bar();
15 // CHECK-NEXT: b {{_bar|bar}}
17 return bar();
28 // CHECK-NEXT: b {{_bar|bar}}
30 return bar();
43 return bar();
56 return bar();
67 // CHECK-NEXT: b {{_bar|bar}}
69 return bar();
80 // CHECK-NEXT: b {{_bar|bar}}
[all...]
H A Ddostmt.c3 int bar();
8 i = bar();
9 i = bar();
19 i = bar();
22 i = bar();
32 i = bar();
35 i = bar();
45 i = bar();
57 i = bar();
H A Dc-strings.c24 void bar(const char *);
28 bar("hello");
29 // ITANIUM: call void @bar({{.*}} @.str
30 // MSABI: call void @bar({{.*}} @"\01??_C@_05CJBACGMB@hello?$AA@"
36 bar(x);
38 // CHECK: call void @bar(i8* [[T1:%.*]])
44 bar(x);
45 // CHECK: call void @bar({{.*}} @f2.x
51 bar(x);
52 // CHECK: call void @bar({{
[all...]
H A D2002-03-14-BrokenSSA.c7 int bar();
13 b = bar();
14 c = bar();
H A D2003-10-29-AsmRename.c5 struct bar { int Y; }; struct
8 extern int Func64(struct bar*);
14 int Func64(struct bar* B) {
H A D2006-05-19-SingleEltReturn.c12 struct Y bar();
15 *P = bar();
18 struct Y bar() { function
H A D2007-01-20-VectorICE.c7 __v2di bar(void);
9 *P = X == 2 ? bar() : bar();
H A D2007-06-05-NoInlineAttribute.c3 static int bar(int x, int y) __attribute__((noinline));
5 static int bar(int x, int y) function
11 return bar(b, a);
H A D2003-08-18-StructAsValue.c9 event_t foo = { 1 }, bar = { 2 }; local
10 return X ? foo : bar;
H A D2007-09-05-ConstCtor.c8 void bar(struct A *a);
13 bar(&a);
H A Darm-pcs.c6 aapcs_fn bar; variable
12 return bar() + baz();
H A Denum.c9 static enum { foo, bar = 1U } z; enumerator in enum:__anon1813
15 if (bar - 2 < 0)
H A Dubsan-type-blacklist.cpp12 Bar bar; variable
17 // DEFAULT: call void @__ubsan_handle_dynamic_type_cache_miss({{.*}} (%class.Bar* @bar to
19 Foo* foo = static_cast<Foo*>(&bar); // down-casting
/external/clang/test/Index/
H A Dcomplete-super.cpp6 virtual void bar(double x);
7 virtual void bar(float x);
12 void bar(float real);
19 void B::bar(float real) { function in class:B
20 A::bar(real);
27 // CHECK-BAR-UNQUAL: CXXMethod:{Text A::}{TypedText bar}{LeftParen (}{Placeholder real}{RightParen )} (20)
28 // CHECK-BAR-UNQUAL: CXXMethod:{ResultType void}{TypedText bar}{LeftParen (}{Placeholder float real}{RightParen )} (34)
29 // CHECK-BAR-UNQUAL: CXXMethod:{ResultType void}{Text A::}{TypedText bar}{LeftParen (}{Placeholder double x}{RightParen )} (36)
/external/v8/test/mjsunit/regress/
H A Dregress-1117.js39 function bar(x) { return x * 0; } function
40 assertEquals(Infinity, 1/bar(5));
41 assertEquals(Infinity, 1/bar(5));
42 %OptimizeFunctionOnNextCall(bar);
43 assertEquals(-Infinity, 1/bar(-5));
H A Dregress-3334.js9 function bar(){} function
10 Object.defineProperty(bar, "prototype", { value: 2, writable: false });
11 assertEquals(2, bar.prototype);
12 assertThrows(function() { "use strict"; bar.prototype = 10; }, TypeError);
13 assertEquals(false, Object.getOwnPropertyDescriptor(bar,"prototype").writable);
H A Dregress-2226.js29 var bar = function() { 1; /* bar function */ }; function
32 var test = foo.test = bar.test = baz;
36 assertEquals(baz, bar.test);
/external/clang/test/CodeGenCXX/
H A Dincomplete-member-function-pointer.cpp5 void bar(fake_tuple);
7 void (connection::*a)(fake_tuple) = &connection::bar;
9 void (connection::*b)(fake_tuple) = &connection::bar;
/external/clang/test/Sema/
H A D2007-10-01-BuildArrayRef.c10 int bar; member in struct:foo
18 fp[0].bar = 1; // expected-error {{read-only variable is not assignable}}
19 return sfoo.bar;
H A Dwarn-sizeof-array-decay.c5 int bar[20]; local
8 (void)sizeof(bar + 10); // expected-warning{{sizeof on pointer operation will return size of 'int *' instead of 'int [20]'}}
10 (void)sizeof(bar - x); // expected-warning{{sizeof on pointer operation will return size of 'int *' instead of 'int [20]'}}
/external/clang/test/SemaCXX/
H A Dwarn-variable-not-needed.cpp16 static char bar; member in struct:test2::__anon2694::foo
20 bar++;
22 char foo::bar=0; member in class:test2::__anon2694::foo
H A Dqualified-names-diag.cpp6 namespace bar { namespace in namespace:foo::wibble
16 namespace bar { namespace
19 struct incomplete; // expected-note{{forward declaration of 'bar::incomplete'}}
23 ::bar::y b;
24 a + b; // expected-error{{invalid operands to binary expression ('foo::wibble::x' and '::bar::y' (aka 'int'))}}
26 ::foo::wibble::bar::wonka::x::y c;
27 c + b; // expected-error{{invalid operands to binary expression ('::foo::wibble::bar::wonka::x::y' and '::bar::y' (aka 'int'))}}
29 (void)sizeof(bar::incomplete); // expected-error{{invalid application of 'sizeof' to an incomplete type 'bar
[all...]
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dcoverage-basic.cc10 void bar() { fprintf(stderr, "BAR\n"); } function
15 bar();
17 bar();
/external/compiler-rt/test/asan/TestCases/
H A Dcoverage-order-pcs.cc26 void bar() { fprintf(stderr, "BAR\n"); } function
31 bar();
33 bar();
/external/llvm/test/tools/dsymutil/Inputs/
H A Dbasic2.c8 int bar(int);
11 bar(baz);
20 return bar(arg+val) + inc() + baz++;

Completed in 366 milliseconds

1234567891011>>