Searched defs:bar (Results 276 - 300 of 658) sorted by relevance

<<11121314151617181920>>

/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 Dtemplate-specialization.cpp7 static void bar(int) { } // expected-note {{candidate template ignored: couldn't infer template argument 'T'}} function in struct:A
14 A::template bar(array[0]); // expected-error {{no matching function for call to 'bar'}}
/external/clang/test/SemaCXX/
H A Danonymous-union-cxx11.cpp5 struct bar { struct in namespace:PR12866
12 (void)sizeof(bar::member);
H A Dexception-spec-no-exceptions.cpp30 void bar() throw() { function in namespace:test2
H A Dpragma-visibility.cpp28 class bar { template<class T> friend class foo; }; class in namespace:pr13662
H A Dshort-enums.cpp13 void bar(int x) { function
/external/clang/test/SemaTemplate/
H A Dtemp_arg.cpp17 template <class t> class bar { class in namespace:test0
18 bar(::test0::foo<tee> *ptr) {} // FIXME(redundant): expected-error 2 {{use of undeclared identifier 'tee'}} function in class:test0::bar
/external/compiler-rt/test/asan/TestCases/Android/
H A Dcoverage-android.cc45 void bar() { function
46 printf("bar\n");
59 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dcoverage-fork-direct.cc17 void bar() { printf("bar\n"); } function
30 bar();
H A Dcoverage-fork.cc17 void bar() { printf("bar\n"); } function
30 bar();
H A Dcoverage-module-unloaded.cc22 void bar() { printf("bar\n"); } function
31 void (*bar1)() = (void (*)())dlsym(handle1, "bar");
37 void (*bar2)() = (void (*)())dlsym(handle2, "bar");
H A Dcoverage.cc7 // RUN: %run %t bar 2>&1 | FileCheck %s --check-prefix=CHECK-bar
8 // RUN: %run %t foo bar 2>&1 | FileCheck %s --check-prefix=CHECK-foo-bar
9 // RUN: not %run %t foo bar 4 2>&1 | FileCheck %s --check-prefix=CHECK-report
10 // RUN: not %run %t foo bar 4 5 2>&1 | FileCheck %s --check-prefix=CHECK-segv
21 void bar() { printf("bar\n"); } function
25 extern void bar();
34 if (!strcmp(argv[i], "bar"))
[all...]
/external/compiler-rt/test/builtins/Unit/
H A Dtrampoline_setup_test.c39 int bar(int x) { return x*5 + c*d; }; function
43 proc = bar;
/external/libcxx/test/utilities/function.objects/arithmetic.operations/
H A Ddivides.pass.cpp34 constexpr int bar = std::divides<> () (3.0, 2); local
35 static_assert ( bar == 1, "" );
H A Dminus.pass.cpp34 constexpr int bar = std::minus<> () (3.0, 2); local
35 static_assert ( bar == 1, "" );
H A Dmodulus.pass.cpp34 constexpr int bar = std::modulus<> () (3L, 2); local
35 static_assert ( bar == 1, "" );
H A Dmultiplies.pass.cpp34 constexpr int bar = std::multiplies<> () (3.0, 2); local
35 static_assert ( bar == 6, "" );
H A Dnegate.pass.cpp34 constexpr int bar = std::negate<> () (3.0); local
35 static_assert ( bar == -3, "" );
H A Dplus.pass.cpp34 constexpr int bar = std::plus<> () (3.0, 2); local
35 static_assert ( bar == 5, "" );
/external/libcxx/test/utilities/function.objects/bitwise.operations/
H A Dbit_and.pass.cpp54 constexpr int bar = std::bit_and<> () (0x58D3L, 0xEA95); local
55 static_assert ( bar == 0x4891, "" );
H A Dbit_not.pass.cpp43 constexpr int bar = std::bit_not<> () (0xEA95) & 0xFFFF; local
44 static_assert ( bar == 0x156A, "" );
H A Dbit_or.pass.cpp54 constexpr int bar = std::bit_or<> () (0x58D3L, 0xEA95); local
55 static_assert ( bar == 0xFAD7, "" );
H A Dbit_xor.pass.cpp54 constexpr int bar = std::bit_xor<> () (0x58D3L, 0xEA95); local
55 static_assert ( bar == 0xB246, "" );
/external/libcxx/test/utilities/function.objects/comparisons/
H A Dequal_to.pass.cpp36 constexpr bool bar = std::equal_to<> () (36.0, 36); local
37 static_assert ( bar, "" );
H A Dgreater.pass.cpp40 constexpr bool bar = std::greater<> () (36.0, 36); local
41 static_assert ( !bar, "" );

Completed in 1256 milliseconds

<<11121314151617181920>>