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

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-recursive.cpp9 class bar : public foo<void> { }; class in inherits:foo
10 bar filters;
H A Dforward-enum.cpp4 void bar(MyEnum value) { } function
10 bar(value);
H A Ddebug-info-class-limited.cpp9 typedef foo bar; typedef in namespace:PR16214_1
11 bar *a;
12 bar b;
20 foo *bar(foo *a) { function in namespace:PR14467
31 extern int bar(foo *a);
33 return bar(a);
39 // required because of the 'bar' type which is not required at all (or might
45 struct bar { struct in namespace:test2
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/SemaCXX/
H A DPR6618.cpp2 class bar; // expected-note {{forward declaration of 'bar'}}
4 bar g; // expected-error {{field has incomplete type}}
H A Danonymous-union-cxx11.cpp5 struct bar { struct in namespace:PR12866
12 (void)sizeof(bar::member);
/external/llvm/test/MC/ELF/
H A Dinvalid-symver.s6 .symver undefined, foo@@bar
/external/valgrind/main/VEX/switchback/
H A Dtest_simple.c3 static void bar ( void*(*service)(int,int) ) function
10 bar(service);
/external/chromium_org/v8/test/mjsunit/
H A Ddont-reinit-global-var.js35 this.bar = 'fisk';
36 assertEquals('fisk', bar);
37 var bar; variable
38 assertEquals('fisk', bar);
39 var bar = 'hest'; variable
40 assertEquals('hest', bar);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dpost-increment-close-context.js30 var foo = {bar: -2};
32 return !(foo.bar++);
35 assertEquals(-1, foo.bar);
38 assertEquals(0, foo.bar);
40 assertEquals(1, foo.bar);
42 assertEquals(2, foo.bar);
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/Sema/
H A Dattr-decl-after-definition.c10 int bar; variable
11 extern int bar;
12 int bar; variable
13 int bar __attribute__((weak)); variable
14 int bar __attribute__((used)); variable
15 extern int bar __attribute__((weak));
16 int bar = 0; // expected-note {{previous definition is here}} variable
17 int bar __attribute__((weak)); // no warning as it matches the existing variable
19 int bar __attribute__((used, variable
21 int bar; variable
[all...]
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/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);
/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)

Completed in 9590 milliseconds

1234567891011>>