Searched refs:std (Results 1 - 25 of 39) sorted by relevance

12

/bionic/libstdc++/include/
H A Dnew9 namespace std {
14 void* operator new(std::size_t);
15 void* operator new[](std::size_t);
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
23 inline void* operator new(std
[all...]
H A Dcstddef35 * The following 2 types are also declared in the 'std' namespace:
43 namespace std {
46 } // namespace std
H A Dcsignal41 namespace std
46 } // namespace std
H A Dutility33 #define __STL_BEGIN_NAMESPACE namespace std {
H A Dcsetjmp45 namespace std
49 } // namespace std
H A Dcctype41 namespace std
56 } // namespace std
H A Dctime42 namespace std
59 } // namespace std
H A Dcmath42 namespace std
71 } // namespace std
H A Dcstring42 namespace std
66 } // namespace std
H A Dcstdio41 namespace std {
94 } // namespace std
/bionic/libc/bionic/
H A Dnew.cpp23 const std::nothrow_t std::nothrow = {};
25 void* operator new(std::size_t size) {
33 void* operator new[](std::size_t size) {
49 void* operator new(std::size_t size, const std::nothrow_t&) { argument
53 void* operator new[](std::size_t size, const std::nothrow_t&) { argument
57 void operator delete(void* ptr, const std::nothrow_t&) { argument
61 void operator delete[](void* ptr, const std argument
[all...]
/bionic/tests/
H A Dsstream_test.cpp27 std::stringstream ss(value);
43 CheckOverflow<int16_t>(std::numeric_limits<int16_t>::min(), "-32768", false);
45 CheckOverflow<int16_t>(std::numeric_limits<int16_t>::max(), "32767", false);
48 CheckOverflow<uint16_t>(std::numeric_limits<uint16_t>::max(), "65535", false);
53 CheckOverflow<int32_t>(std::numeric_limits<int32_t>::min(), "-2147483648", false);
55 CheckOverflow<int32_t>(std::numeric_limits<int32_t>::max(), "2147483647", false);
58 CheckOverflow<uint32_t>(std::numeric_limits<uint32_t>::max(), "4294967295", false);
63 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::min(), "-9223372036854775808", false);
65 CheckOverflow<int64_t>(std::numeric_limits<int64_t>::max(), "9223372036854775807", false);
68 CheckOverflow<uint64_t>(std
[all...]
H A Ddirent_test.cpp31 static void CheckProcSelf(std::set<std::string>& names) {
42 std::set<std::string>& name_set, std::vector<std::string>& name_list) {
62 std::set<std::string> name_set;
63 std::vector<std
[all...]
H A Datexit_test.cpp28 std::string atexit_call_sequence;
35 reinterpret_cast<void (*)(std::string*, bool*)>(sym)(&atexit_call_sequence, &valid_this_in_static_dtor);
H A Dstack_protector_test.cpp44 std::set<pid_t> tids;
45 std::set<uint32_t> guards;
/bionic/libc/include/
H A Dstdatomic.h62 #define _Atomic(t) std::atomic<t>
64 using std::atomic_is_lock_free;
65 using std::atomic_init;
66 using std::atomic_store;
67 using std::atomic_store_explicit;
68 using std::atomic_load;
69 using std::atomic_load_explicit;
70 using std::atomic_exchange;
71 using std::atomic_exchange_explicit;
72 using std
[all...]
/bionic/tests/libs/
H A Datexit_testlib.cpp22 static std::string* atexit_sequence = NULL;
69 extern "C" void register_atexit(std::string* sequence, bool* valid_this_in_static_dtor) {
/bionic/linker/tests/
H A DAndroid.mk28 LOCAL_CFLAGS += -g -Wall -Wextra -Wunused -Werror -std=gnu++11
H A Dlinked_list_test.cpp49 std::string test_list_to_string(test_list_t& list) {
50 std::stringstream ss;
189 std::stringstream ss;
201 ss.str(std::string());
/bionic/benchmarks/
H A Dbenchmark.h46 std::vector<int> args_;
H A Dbenchmark_main.cpp32 typedef std::map<std::string, ::testing::Benchmark*> BenchmarkMap;
100 g_benchmarks.insert(std::make_pair(name, this));
142 iterations = std::max(last + 1, std::min(iterations + iterations/2, 100*last));
200 g_name_column_width = std::max(g_name_column_width, name_width);
H A Dproperty_benchmark.cpp136 std::string pa_dirname;
137 std::string pa_filename;
/bionic/libc/stdio/
H A Dfindfp.c55 #define std(flags, file) \ macro
68 std(__SRD, STDIN_FILENO), /* stdin */
69 std(__SWR, STDOUT_FILENO), /* stdout */
70 std(__SWR|__SNBF, STDERR_FILENO) /* stderr */
/bionic/libc/arch-x86/generic/string/
H A Dbcopy.S76 std
/bionic/linker/
H A DAndroid.mk34 -std=gnu99 \
37 -std=gnu++11 \

Completed in 290 milliseconds

12