HomeSort by relevance Sort by last modified time
    Searched refs:std (Results 1 - 25 of 1834) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/extras/tests/bionic/libstdc++/
test_cstdio.cpp 105 using std::clearerr;
106 using std::fclose;
107 using std::feof;
108 using std::ferror;
109 using std::fflush;
110 using std::fgetc;
111 using std::fgetpos;
112 using std::fgets;
113 using std::fopen;
114 using std::fprintf
    [all...]
test_cstring.cpp 42 using std::memchr;
43 using std::memcmp;
44 using std::memcpy;
45 using std::memmove;
46 using std::memset;
47 using std::strcat;
48 using std::strchr;
49 using std::strcmp;
50 using std::strcoll;
51 using std::strcpy
    [all...]
test_ctime.cpp 75 using std::clock;
76 using std::difftime;
77 using std::mktime;
78 using std::time;
79 using std::asctime;
80 using std::ctime;
81 using std::gmtime;
82 using std::localtime;
83 using std::strftime;
85 // Check various types are declared in the std namespace
    [all...]
test_cctype.cpp 81 using std::isalnum;
82 using std::isdigit;
83 using std::isprint;
84 using std::isupper;
85 using std::tolower;
86 using std::isalpha;
87 using std::isgraph;
88 using std::ispunct;
89 using std::isxdigit;
90 using std::toupper
    [all...]
  /external/chromium/base/
string_split.h 15 const std::string& line,
17 std::string* key, std::vector<std::string>* values);
20 const std::string& line,
23 std::vector<std::pair<std::string, std::string> >* kv_pairs);
base64.h 14 bool Base64Encode(const std::string& input, std::string* output);
18 bool Base64Decode(const std::string& input, std::string* output);
  /system/extras/tests/bionic/libc/common/
hello_world.cpp 2 using namespace std;
  /build/libs/host/include/host/
pseudolocalize.h 6 std::string pseudolocalize_string(const std::string& source);
  /external/astl/tests/
test_functional.cpp 42 EXPECT_TRUE(std::equal_to<int>()(10, 10));
43 EXPECT_TRUE(std::not_equal_to<int>()(10, 11));
45 EXPECT_TRUE(std::greater<int>()(10, 5));
46 EXPECT_TRUE(std::less<int>()(5, 10));
48 EXPECT_TRUE(std::greater_equal<int>()(10, 5));
49 EXPECT_TRUE(std::less_equal<int>()(5, 10));
51 EXPECT_TRUE(std::greater_equal<int>()(10, 10));
52 EXPECT_TRUE(std::less_equal<int>()(10, 10));
test_limits.cpp 40 EXPECT_TRUE(std::numeric_limits<float>::is_specialized);
41 EXPECT_TRUE(std::numeric_limits<double>::is_specialized);
42 EXPECT_TRUE(std::numeric_limits<long>::is_specialized);
43 EXPECT_TRUE(std::numeric_limits<long long>::is_specialized);
49 EXPECT_TRUE(std::numeric_limits<float>::min() == __FLT_MIN__);
50 EXPECT_TRUE(std::numeric_limits<double>::min() == __DBL_MIN__);
51 EXPECT_TRUE(std::numeric_limits<long>::min() == LONG_MIN);
57 EXPECT_TRUE(std::numeric_limits<float>::max() == __FLT_MAX__);
58 EXPECT_TRUE(std::numeric_limits<double>::max() == __DBL_MAX__);
59 EXPECT_TRUE(std::numeric_limits<long>::max() == LONG_MAX)
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_js_bindings.h 22 virtual void Alert(const std::string& message) = 0;
25 virtual std::string MyIpAddress() = 0;
31 virtual std::string MyIpAddressEx() = 0;
34 virtual std::string DnsResolve(const std::string& host) = 0;
40 virtual std::string DnsResolveEx(const std::string& host) = 0;
44 virtual void OnError(int line_number, const std::string& error) = 0;
  /external/chromium/net/tools/fetch/
http_server_response_info.h 19 std::string protocol;
25 std::string server_name;
28 std::string content_type;
37 std::map<std::string, std::string> headers;
  /external/chromium/net/http/
http_auth_handler_digest.h 18 virtual std::string GenerateCredentials(const std::wstring& username,
19 const std::wstring& password,
24 virtual bool Init(std::string::const_iterator challenge_begin,
25 std::string::const_iterator challenge_end) {
60 bool ParseChallenge(std::string::const_iterator challenge_begin,
61 std::string::const_iterator challenge_end);
64 bool ParseChallengeProperty(const std::string& name,
65 const std::string& value);
68 static std::string GenerateNonce()
    [all...]
http_util.h 24 static std::string PathForRequest(const GURL& url);
29 static std::string SpecForRequest(const GURL& url);
35 static size_t FindDelimiter(const std::string& line,
43 static void ParseContentType(const std::string& content_type_str,
44 std::string* mime_type,
45 std::string* charset,
54 static bool ParseRanges(const std::string& headers,
55 std::vector<HttpByteRange>* ranges);
60 static bool HasHeader(const std::string& headers, const char* name);
66 static std::string StripHeaders(const std::string& headers
    [all...]
http_auth_handler_basic.h 15 virtual std::string GenerateCredentials(const std::wstring& username,
16 const std::wstring& password,
20 virtual bool Init(std::string::const_iterator challenge_begin,
21 std::string::const_iterator challenge_end);
  /bionic/libstdc++/src/
new.cpp 4 const std::nothrow_t std::nothrow = {};
6 void* operator new(std::size_t size)
15 void* operator new[](std::size_t size)
34 void* operator new(std::size_t size, const std::nothrow_t&)
39 void* operator new[](std::size_t size, const std::nothrow_t&)
44 void operator delete(void* ptr, const std::nothrow_t&)
49 void operator delete[](void* ptr, const std::nothrow_t&
    [all...]
  /external/oprofile/libabi/
abi.h 19 struct abi_exception : std::exception {
20 std::string const desc;
22 explicit abi_exception(std::string const d);
32 int need(std::string const key) const throw (abi_exception);
35 friend std::ostream & operator<<(std::ostream & o, abi const & abi);
36 friend std::istream & operator>>(std::istream & i, abi & abi);
39 std::map<std::string, int> slots
    [all...]
  /bionic/libstdc++/include/
new 9 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::size_t, void* p) { return p;
    [all...]
  /ndk/sources/cxx-stl/system/include/
new 9 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::size_t, void* p) { return p;
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
new 7 namespace std {
12 void* operator new(std::size_t);
13 void* operator new[](std::size_t);
16 void* operator new(std::size_t, const std::nothrow_t&);
17 void* operator new[](std::size_t, const std::nothrow_t&);
18 void operator delete(void*, const std::nothrow_t&);
19 void operator delete[](void*, const std::nothrow_t&);
21 inline void* operator new(std::size_t, void* p) { return p;
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
new 7 namespace std {
12 void* operator new(std::size_t);
13 void* operator new[](std::size_t);
16 void* operator new(std::size_t, const std::nothrow_t&);
17 void* operator new[](std::size_t, const std::nothrow_t&);
18 void operator delete(void*, const std::nothrow_t&);
19 void operator delete[](void*, const std::nothrow_t&);
21 inline void* operator new(std::size_t, void* p) { return p;
    [all...]
  /external/chromium/net/tools/flip_server/
url_utilities.h 14 static std::string GetUrlHost(const std::string& url) {
16 if (b == std::string::npos)
22 if (next_slash != std::string::npos
23 && next_colon != std::string::npos
25 return std::string(url, b, next_colon - b);
27 if (next_slash == std::string::npos) {
28 if (next_colon != std::string::npos) {
29 return std::string(url, next_colon - b);
34 return std::string(url, b, next_slash - b)
    [all...]
  /external/chromium/base/json/
string_escape.h 21 void JsonDoubleQuote(const std::string& str,
23 std::string* dst);
27 std::string* dst);
  /external/chromium/net/base/
data_url.h 40 std::string* mime_type,
41 std::string* charset,
42 std::string* data);
keygen_handler.h 17 KeygenHandler(int key_size_index, const std::string& challenge);
18 std::string GenKeyAndSignChallenge();
22 std::string challenge_;

Completed in 319 milliseconds

1 2 3 4 5 6 7 8 91011>>