Searched defs:foo (Results 226 - 250 of 1723) sorted by last modified time

1234567891011>>

/external/lldb/test/python_api/value/change_values/
H A Dmain.c5 struct foo struct
15 struct foo mine = {55, 5555, 55555555};
16 struct foo *ptr = (struct foo *) malloc (sizeof (struct foo));
/external/lldb/test/unittest2/test/
H A Dtest_loader.py875 def foo(): member in class:Test_TestLoader.test_loadTestsFromNames__callable__call_staticmethod.Foo
880 suite = loader.loadTestsFromNames(['Foo.foo'], m)
1017 loader.testMethodPrefix = 'foo'
1040 loader.testMethodPrefix = 'foo'
1063 loader.testMethodPrefix = 'foo'
1087 loader.testMethodPrefix = 'foo'
/external/lldb/tools/lldb-perf/common/clang/
H A Dmain.cpp10 void doit (const Foo &foo) argument
12 printf ("doit(%i)\n", foo.i);
21 Foo foo = { 12, 13 }; local
22 doit (foo);
/external/libunwind/tests/
H A DGtest-bt.c130 foo (long val UNUSED) function
145 foo (f (arr[0]) + (f (v) + (f (v) + (f (v) + (f (v) + (f (v) + (f (v)
H A DGtest-resume-sig.c80 char foo; local
94 sigusr1_sp = &foo;
131 printf ("OK: stack still at %p\n", &foo);
H A DGtest-trace.c142 foo (long val UNUSED) function
157 foo (f (arr[0]) + (f (v) + (f (v) + (f (v) + (f (v) + (f (v) + (f (v)
H A Dtest-init-remote.c90 foo (void) function
102 return foo ();
/external/libpcap/
H A Dconfigure786 # These are left unexpanded so users can "make install exec_prefix=/foo"
3604 static inline struct iltest *foo(void);
3611 foo() function
3664 static void foo(void) __attribute__ ((noreturn));
3667 foo(void)
3675 foo(); function
3758 extern int foo(const char *fmt, ...)
3764 foo("%s", "test");
/external/libcxx/test/algorithms/alg.modifying.operations/alg.fill/
H A Dfill_n.pass.cpp130 Storage foo[5]; local
131 std::fill_n(&foo[0], 5, Storage());
/external/libcxx/test/numerics/complex.number/complex.literals/
H A Dliterals1.fail.cpp16 std::complex<float> foo = 1.0if; // should fail w/conversion operator not found local
/external/libcxx/test/strings/basic.string.literals/
H A Dliteral.pass.cpp24 std::string foo; local
29 foo = ""s; assert( foo.size() == 0);
30 foo = u8""s; assert( foo.size() == 0);
35 foo = " "s; assert( foo.size() == 1);
36 foo = u8" "s; assert( foo.size() == 1);
41 foo
[all...]
H A Dliteral2.fail.cpp16 std::string foo = ""s; // should fail w/conversion operator not found local
/external/libcxx/test/utilities/function.objects/arithmetic.operations/
H A Ddivides.pass.cpp31 constexpr int foo = std::divides<int> () (3, 2); local
32 static_assert ( foo == 1, "" );
H A Dminus.pass.cpp31 constexpr int foo = std::minus<int> () (3, 2); local
32 static_assert ( foo == 1, "" );
H A Dmodulus.pass.cpp31 constexpr int foo = std::modulus<int> () (3, 2); local
32 static_assert ( foo == 1, "" );
H A Dmultiplies.pass.cpp31 constexpr int foo = std::multiplies<int> () (3, 2); local
32 static_assert ( foo == 6, "" );
H A Dnegate.pass.cpp31 constexpr int foo = std::negate<int> () (3); local
32 static_assert ( foo == -3, "" );
H A Dplus.pass.cpp31 constexpr int foo = std::plus<int> () (3, 2); local
32 static_assert ( foo == 5, "" );
/external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
H A Dinvoke_lvalue.pass.cpp265 bool foo(unsigned long long) const function in struct:TFENode
276 const auto f = bind(&TFENode::foo, _1, 0UL);
/external/libcxx/test/utilities/function.objects/bitwise.operations/
H A Dbit_and.pass.cpp51 constexpr int foo = std::bit_and<int> () (0x58D3, 0xEA95); local
52 static_assert ( foo == 0x4891, "" );
H A Dbit_not.pass.cpp40 constexpr int foo = std::bit_not<int> () (0xEA95) & 0xFFFF; local
41 static_assert ( foo == 0x156A, "" );
H A Dbit_or.pass.cpp51 constexpr int foo = std::bit_or<int> () (0x58D3, 0xEA95); local
52 static_assert ( foo == 0xFAD7, "" );
H A Dbit_xor.pass.cpp51 constexpr int foo = std::bit_xor<int> () (0x58D3, 0xEA95); local
52 static_assert ( foo == 0xB246, "" );
/external/libcxx/test/utilities/function.objects/comparisons/
H A Dequal_to.pass.cpp33 constexpr bool foo = std::equal_to<int> () (36, 36); local
34 static_assert ( foo, "" );
H A Dgreater.pass.cpp37 constexpr bool foo = std::greater<int> () (36, 36); local
38 static_assert ( !foo, "" );

Completed in 3713 milliseconds

1234567891011>>