HomeSort by relevance Sort by last modified time
    Searched refs:bar (Results 426 - 450 of 1644) sorted by null

<<11121314151617181920>>

  /external/clang/test/SemaTemplate/
default-arguments-cxx0x.cpp 47 struct bar { struct in namespace:PR16975
50 bar(T);
53 struct baz : public bar<> {
54 using bar::bar;
elaborated-type-specifier.cpp 26 enum T::bar { // expected-error{{nested name specifier for a declaration cannot depend on a template parameter}} enum in class:DeclOrDef::T
33 class T::bar; // expected-error{{nested name specifier for a declaration cannot depend on a template parameter}} member in class:PR6649::foo::T
34 class T::bar { int x; }; // expected-error{{nested name specifier for a declaration cannot depend on a template parameter}} class in class:PR6649::foo::T
  /external/lldb/test/functionalities/thread/create_during_step/
main.cpp 21 #define pseudo_barrier_wait(bar) \
22 --bar; \
23 while (bar > 0) \
26 #define pseudo_barrier_init(bar, count) (bar = count)
  /external/lldb/test/functionalities/thread/exit_during_step/
main.cpp 21 #define pseudo_barrier_wait(bar) \
22 --bar; \
23 while (bar > 0) \
26 #define pseudo_barrier_init(bar, count) (bar = count)
  /external/lldb/test/functionalities/thread/thread_exit/
main.cpp 20 #define pseudo_barrier_wait(bar) \
21 --bar; \
22 while (bar > 0) \
25 #define pseudo_barrier_init(bar, count) (bar = count)
  /ndk/tests/device/test-stlport_shared-exception/jni/
pretty2.cpp 25 bar (T) function
31 bar<int> (int) function
46 bar (c);
47 bar (d);
48 bar (e);
  /ndk/tests/device/test-stlport_static-exception/jni/
pretty2.cpp 25 bar (T) function
31 bar<int> (int) function
46 bar (c);
47 bar (d);
48 bar (e);
  /external/llvm/test/MC/ARM/
thumb2be-b.w-encoding.s 4 b.w bar
5 @ CHECK-LE: b.w bar @ encoding: [A,0xf0'A',A,0x90'A']
6 @ CHECK-LE-NEXT: @ fixup A - offset: 0, value: bar, kind: fixup_t2_uncondbranch
7 @ CHECK-BE: b.w bar @ encoding: [0xf0'A',A,0x90'A',A]
8 @ CHECK-BE-NEXT: @ fixup A - offset: 0, value: bar, kind: fixup_t2_uncondbranch
thumb2be-beq.w-encoding.s 4 beq.w bar
5 @ CHECK-LE: beq.w bar @ encoding: [A,0xf0'A',A,0x80'A']
6 @ CHECK-LE-NEXT: @ fixup A - offset: 0, value: bar, kind: fixup_t2_condbranch
7 @ CHECK-BE: beq.w bar @ encoding: [0xf0'A',A,0x80'A',A]
8 @ CHECK-BE-NEXT: @ fixup A - offset: 0, value: bar, kind: fixup_t2_condbranch
  /external/clang/test/OpenMP/
nesting_of_regions.cpp 3 void bar();
19 bar();
24 bar();
28 bar();
36 bar();
62 bar();
69 bar();
76 bar();
89 bar();
116 bar();
    [all...]
  /external/chromium_org/v8/test/mjsunit/
regexp-multiline.js 33 assertTrue(/^bar/.test("bar"));
34 assertTrue(/^bar/.test("bar\nfoo"));
35 assertFalse(/^bar/.test("foo\nbar"));
36 assertTrue(/^bar/m.test("bar"));
37 assertTrue(/^bar/m.test("bar\nfoo"));
38 assertTrue(/^bar/m.test("foo\nbar"))
    [all...]
  /external/llvm/test/MC/Mips/
micromips-branch16.s 10 # CHECK-FIXUP: b bar # encoding: [A,0x94'A',0x00,0x00]
12 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
14 # CHECK-FIXUP: beq $3, $4, bar # encoding: [0x83'A',0x94'A',0x00,0x00]
16 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
18 # CHECK-FIXUP: bne $3, $4, bar # encoding: [0x83'A',0xb4'A',0x00,0x00]
20 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
22 # CHECK-FIXUP: bgez $4, bar # encoding: [0x44'A',0x40'A',0x00,0x00]
24 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
26 # CHECK-FIXUP: bgtz $4, bar # encoding: [0xc4'A',0x40'A',0x00,0x00]
28 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S
    [all...]
  /external/clang/test/SemaCXX/
attr-noreturn.cpp 69 void bar() __attribute__((__noreturn__));
71 void bar() { function in namespace:PR12948
91 __attribute__((noreturn)) void bar(T) {} function in namespace:PR15291
101 // expected-note@+3 {{candidate function [with T = void (*)(int) __attribute__((noreturn))] not viable: no overload of 'bar' matching 'void (*)(int) __attribute__((noreturn))' for 1st argument}}
102 // expected-note@+2 {{candidate function [with T = void (*)(int)] not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
103 // expected-note@+1 {{candidate function [with T = void (int)] not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
106 // expected-note@+1 {{candidate function not viable: no overload of 'bar' matching 'void (*)(int)' for 1st argument}}
120 // expected-note@+1 {{candidate function not viable: no overload of 'bar' matching 'fptr_t' (aka 'void (*)(int)') for 1st argument}}
134 accept_fptr(bar<int>);
135 accept_fptr(bar<double>); // expected-error {{no matching function for call to 'accept_fptr'}
    [all...]
  /external/clang/test/CodeGenCXX/
visibility.cpp 60 DEFAULT static int bar; member in struct:test40::foo
63 int foo<T>::bar; member in class:test40::foo
72 // reference to bar.
74 extern foo bar;
76 return &bar;
90 struct bar { struct in namespace:test48
96 bar::zed<&x> y;
214 virtual void bar() = 0;
221 virtual void bar();
246 void bar() {} function in namespace:Test8
289 void DEFAULT bar() {} function in struct:Test11::A
549 static void bar() {} function in struct:test22::B
553 static void bar() {} function in struct:test22::B
575 class bar { class in namespace:PR10113::DEFAULT
579 template class foo::bar<char>; member in class:PR10113::foo
585 template class foo::bar<zed>; member in class:PR10113::foo
610 void bar() { function in class:PR11690_2::DEFAULT::zed
711 void bar() {} function in class:test33::foo
724 void bar() {} function in namespace:test34
738 void bar() {} function in struct:test35::foo
751 void bar() {} function in class:test36::foo
764 DEFAULT void bar() {} function in namespace:test37
773 void bar() {} function in class:test38::foo
816 struct bar { struct in namespace:test42
819 struct HIDDEN bar<foo> { struct in namespace:test42
832 void bar() { function in namespace:test43
835 DEFAULT void bar<foo>() { function in namespace:test43
859 struct bar { struct in struct:test45::foo
860 bar() {}; function in struct:test45::foo::bar
866 template struct DEFAULT foo<int>::bar<zed>; member in class:test45::foo
890 static void bar() { function in struct:test47::foo
914 struct bar { struct in namespace:test49
934 struct DEFAULT bar { struct in namespace:test50
1069 struct DEFAULT bar { struct in namespace:test58
1270 struct DEFAULT bar { struct in namespace:test67
    [all...]
ctor-dtor-alias.cpp 121 // Test that we replace ~zed with ~bar which is an alias to ~foo.
128 struct bar : public foo { struct in namespace:test8
129 ~bar();
131 bar::~bar() {}
132 struct zed : public bar {};
142 struct bar : public foo {}; struct in namespace:test9
145 // Test that we produce a call to bar's destructor. We used to call foo's, but
148 bar ptr;
debug-info-namespace.cpp 12 struct bar { }; struct in namespace:A::B
13 typedef bar baz;
30 using B::bar;
52 // CHECK: [[BAR:![0-9]*]] {{.*}} ; [ DW_TAG_structure_type ] [bar] [line 6, {{.*}}] [decl] [from ]
66 // CHECK: [[M7]] = metadata !{i32 {{[0-9]*}}, metadata [[FUNC]], metadata [[BAR:!"_ZTSN1A1B3barE"]], i32 {{[0-9]*}}} ; [ DW_TAG_imported_declaration ]
78 // CHECK-NOLIMIT: ; [ DW_TAG_structure_type ] [bar] [line 6, {{.*}}] [def] [from ]
microsoft-abi-vtables-single-inheritance.cpp 159 // CHECK-NEXT: 3 | void J::bar(long)
160 // CHECK-NEXT: 4 | void J::bar(int)
161 // CHECK-NEXT: 5 | void J::bar(short)
163 virtual void bar(short);
165 virtual void bar(int);
167 virtual void bar(long);
178 // CHECK-NEXT: 3 | void J::bar(long)
179 // CHECK-NEXT: 4 | void J::bar(int)
180 // CHECK-NEXT: 5 | void J::bar(short)
181 // CHECK-NEXT: 6 | void K::bar(double
    [all...]
  /external/llvm/test/MC/X86/AlignedBundling/
pad-align-to-bundle-end.s 11 callq bar
12 callq bar
14 callq bar
20 callq bar
21 callq bar
23 callq bar
24 callq bar
  /art/test/005-annotations/src/android/test/anno/
FullyNoted.java 13 FullyNoted(@AnnoFancyParameter(factor=0.5) int bar)
15 mBar = bar;
19 public int bar( method in class:FullyNoted
27 @AnnoFancyMethod(biteMe=true, enumerated=AnnoFancyMethod.AnnoFancyMethodEnum.BAR)
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentNestingTabs.java 29 * This demonstrates the use of action bar tabs and how they interact
30 * with other action bar features.
38 final ActionBar bar = getActionBar(); local
39 bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
40 bar.setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TITLE);
42 bar.addTab(bar.newTab()
46 bar.addTab(bar.newTab()
50 bar.addTab(bar.newTab(
    [all...]
FragmentTabs.java 30 * This demonstrates the use of action bar tabs and how they interact
31 * with other action bar features.
38 final ActionBar bar = getActionBar(); local
39 bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
40 bar.setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TITLE);
42 bar.addTab(bar.newTab()
46 bar.addTab(bar.newTab()
50 bar.addTab(bar.newTab(
    [all...]
  /external/clang/test/Analysis/
virtualcall.cpp 9 virtual void bar() = 0;
23 virtual void bar() { foo(); } // expected-warning{{Call virtual functions during construction or destruction will never go to a more derived class}} function in class:B
32 this->B::bar();
  /external/clang/test/CodeGen/
debug-info.c 33 struct foo bar; variable in typeref:struct:foo
38 enum bar *bar; member in struct:foo2
  /external/clang/test/Sema/
incomplete-decl.c 27 struct bar j = {1}; // expected-error {{variable has incomplete type 'struct bar'}} \
28 expected-note {{forward declaration of 'struct bar'}}
29 struct bar k;
30 struct bar { int a; }; struct
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/tui/
progress.c 9 int bar, y; local
28 bar = ((SLtt_Screen_Cols - 2) * curr) / total;
29 SLsmg_fill_region(y, 1, 1, bar, ' ');

Completed in 1583 milliseconds

<<11121314151617181920>>