| /external/libcxx/test/utilities/function.objects/arithmetic.operations/ |
| minus.pass.cpp | 31 constexpr int foo = std::minus<int> () (3, 2); local 32 static_assert ( foo == 1, "" );
|
| modulus.pass.cpp | 31 constexpr int foo = std::modulus<int> () (3, 2); local 32 static_assert ( foo == 1, "" );
|
| multiplies.pass.cpp | 31 constexpr int foo = std::multiplies<int> () (3, 2); local 32 static_assert ( foo == 6, "" );
|
| negate.pass.cpp | 31 constexpr int foo = std::negate<int> () (3); local 32 static_assert ( foo == -3, "" );
|
| plus.pass.cpp | 31 constexpr int foo = std::plus<int> () (3, 2); local 32 static_assert ( foo == 5, "" );
|
| /external/libcxx/test/utilities/function.objects/bitwise.operations/ |
| bit_and.pass.cpp | 51 constexpr int foo = std::bit_and<int> () (0x58D3, 0xEA95); local 52 static_assert ( foo == 0x4891, "" );
|
| bit_not.pass.cpp | 40 constexpr int foo = std::bit_not<int> () (0xEA95) & 0xFFFF; local 41 static_assert ( foo == 0x156A, "" );
|
| bit_or.pass.cpp | 51 constexpr int foo = std::bit_or<int> () (0x58D3, 0xEA95); local 52 static_assert ( foo == 0xFAD7, "" );
|
| bit_xor.pass.cpp | 51 constexpr int foo = std::bit_xor<int> () (0x58D3, 0xEA95); local 52 static_assert ( foo == 0xB246, "" );
|
| /external/libcxx/test/utilities/function.objects/comparisons/ |
| equal_to.pass.cpp | 33 constexpr bool foo = std::equal_to<int> () (36, 36); local 34 static_assert ( foo, "" );
|
| greater.pass.cpp | 37 constexpr bool foo = std::greater<int> () (36, 36); local 38 static_assert ( !foo, "" );
|
| greater_equal.pass.cpp | 37 constexpr bool foo = std::greater_equal<int> () (36, 36); local 38 static_assert ( foo, "" );
|
| less.pass.cpp | 37 constexpr bool foo = std::less<int> () (36, 36); local 38 static_assert ( !foo, "" );
|
| less_equal.pass.cpp | 37 constexpr bool foo = std::less_equal<int> () (36, 36); local 38 static_assert ( foo, "" );
|
| not_equal_to.pass.cpp | 35 constexpr bool foo = std::not_equal_to<int> () (36, 36); local 36 static_assert ( !foo, "" );
|
| /external/libcxx/test/utilities/function.objects/logical.operations/ |
| logical_and.pass.cpp | 42 constexpr bool foo = std::logical_and<int> () (36, 36); local 43 static_assert ( foo, "" );
|
| logical_not.pass.cpp | 33 constexpr bool foo = std::logical_not<int> () (36); local 34 static_assert ( !foo, "" );
|
| logical_or.pass.cpp | 41 constexpr bool foo = std::logical_or<int> () (36, 36); local 42 static_assert ( foo, "" );
|
| /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.create/ |
| make_unique.array.pass.cpp | 16 class foo { class 18 foo () : val_(3) {} function in class:foo 40 auto p3 = std::make_unique<foo[]>(7);
|
| /external/libcxxabi/test/ |
| catch_member_function_pointer_01.cpp | 14 void foo() {} function in struct:A 25 throw &A::foo; member in class:A
|
| /external/lldb/examples/plugins/commands/ |
| fooplugin.cpp | 11 An example plugin for LLDB that provides a new foo command with a child subcommand 12 Compile this into a dylib foo.dylib and load by placing in appropriate locations on disk or 13 by typing plugin load foo.dylib at the LLDB command line 52 lldb::SBCommand foo = interpreter.AddMultiwordCommand("foo",NULL); local 53 foo.AddCommand("child",new ChildCommand(),"a child of foo");
|
| /external/lldb/test/functionalities/abbreviation/ |
| main.cpp | 41 foo (int i, int j) function 57 array[0] = foo (1238, 78392); 58 array[1] = foo (379265, 23674); 59 array[2] = foo (872934, 234);
|
| /external/lldb/test/functionalities/alias/ |
| main.cpp | 41 foo (int i, int j) function 57 array[0] = foo (1238, 78392); 58 array[1] = foo (379265, 23674); 59 array[2] = foo (872934, 234);
|
| /external/lldb/test/functionalities/command_script/ |
| main.cpp | 42 foo (int i, int j) function 59 array[0] = foo (1238, 78392); 60 array[1] = foo (379265, 23674); 61 array[2] = foo (872934, 234); 62 array[3] = foo (1238, 78392); 63 array[4] = foo (379265, 23674); 64 array[5] = foo (872934, 234); 65 array[6] = foo (1238, 78392); 66 array[7] = foo (379265, 23674); 67 array[8] = foo (872934, 234) [all...] |
| /external/lldb/test/functionalities/plugins/commands/ |
| plugin.cpp | 11 An example plugin for LLDB that provides a new foo command with a child subcommand 12 Compile this into a dylib foo.dylib and load by placing in appropriate locations on disk or 13 by typing plugin load foo.dylib at the LLDB command line 53 lldb::SBCommand foo = interpreter.AddMultiwordCommand("plugin_loaded_command",NULL); local 54 foo.AddCommand("child",new ChildCommand(),"a child of plugin_loaded_command");
|