| /external/chromium_org/remoting/host/setup/ |
| service_client.cc | 23 Core(const std::string& chromoting_hosts_url, 31 void RegisterHost(const std::string& host_id, 32 const std::string& host_name, 33 const std::string& public_key, 34 const std::string& host_client_id, 35 const std::string& oauth_access_token, 38 void UnregisterHost(const std::string& host_id, 39 const std::string& oauth_access_token, 56 const std::string& post_body, 57 const std::string& url_suffix [all...] |
| /external/chromium_org/remoting/protocol/ |
| v2_authenticator.h | 8 #include <string> 28 const std::string& shared_secret, 32 const std::string& local_cert, 34 const std::string& shared_secret, 53 const std::string& shared_secret, 61 std::string local_cert_; 66 std::string remote_cert_; 73 std::queue<std::string> pending_messages_; 74 std::string auth_key_;
|
| /external/chromium_org/sdch/open-vcdiff/src/ |
| encodetable.h | 22 #include <string> 108 // string. The output string is not null-terminated and may contain embedded 118 typedef std::string string; typedef in class:open_vcdiff::VCDiffCodeTableWriter 136 // instructions_and_sizes_ string. 150 // Appends the size value to the string as a variable-length integer. 151 static void AppendSizeToString(size_t size, string* out); 153 // Appends the size value to the output string as a variable-length integer. 161 // None of the following 'string' objects are null-terminated [all...] |
| /external/chromium_org/third_party/leveldatabase/ |
| env_chromium_stdio.h | 8 #include <string> 17 ChromiumWritableFile(const std::string& fname, 36 std::string filename_; 41 std::string parent_dir_; 50 virtual leveldb::Status NewSequentialFile(const std::string& fname, 53 const std::string& fname, 55 virtual leveldb::Status NewWritableFile(const std::string& fname, 57 virtual leveldb::Status NewLogger(const std::string& fname, 71 void RecordOpenFilesLimit(const std::string& type);
|
| /external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
| qname.h | 31 #include <string> 57 QName(const std::string& ns, const std::string& local); 58 explicit QName(const std::string& merged_or_local); 61 const std::string& Namespace() const { return namespace_; } 62 const std::string& LocalPart() const { return local_part_; } 63 std::string Merged() const; 86 std::string namespace_; 87 std::string local_part_;
|
| /external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
| util_unittest.cc | 6 #include <string> 15 output_ << std::string(bytes, len); 18 void XmppTestHandler::StartTls(const std::string & cname) { 84 std::string XmppTestHandler::OutputActivity() { 85 std::string result = output_.str(); 90 std::string XmppTestHandler::SessionActivity() { 91 std::string result = session_.str(); 96 std::string XmppTestHandler::StanzaActivity() { 97 std::string result = stanza_.str();
|
| xmppauth.cc | 45 const std::string& auth_mechanism, 46 const std::string& auth_token) { 56 static bool contains(const std::vector<std::string>& strings, 57 const std::string& string) { 58 return std::find(strings.begin(), strings.end(), string) != strings.end(); 61 std::string XmppAuth::ChooseBestSaslMechanism( 62 const std::vector<std::string>& mechanisms, 92 const std::string& mechanism) {
|
| /external/chromium_org/third_party/modp_b64/ |
| modp_b64.h | 34 * Encode a raw binary string into base 64. 40 * returns length of the destination string plus the ending null byte 61 * Decode a base64 encoded string 84 * Given a source string of length len, this returns the amount of 85 * memory the destination string should have. 96 * Given a base64 string of length len, 97 * this returns the amount of memory required for output string 136 #include <string> 138 inline std::string& modp_b64_encode(std::string& s [all...] |
| /external/chromium_org/third_party/webrtc/base/ |
| windowpicker.h | 14 #include <string> 24 WindowDescription(const WindowId& id, const std::string& title) 29 const std::string& title() const { return title_; } 30 void set_title(const std::string& title) { title_ = title; } 34 std::string title_; 40 DesktopDescription(const DesktopId& id, const std::string& title) 45 const std::string& title() const { return title_; } 46 void set_title(const std::string& title) { title_ = title; } 53 std::string title_;
|
| sslidentity.cc | 18 #include <string> 41 bool SSLIdentity::PemToDer(const std::string& pem_type, 42 const std::string& pem_string, 43 std::string* der) { 47 if (header == std::string::npos) 51 if (body == std::string::npos) 55 if (trailer == std::string::npos) 58 std::string inner = pem_string.substr(body + 1, trailer - (body + 1)); 66 std::string SSLIdentity::DerToPem(const std::string& pem_type [all...] |
| /external/chromium_org/third_party/webrtc/libjingle/xmllite/ |
| qname.h | 14 #include <string> 40 QName(const std::string& ns, const std::string& local); 41 explicit QName(const std::string& merged_or_local); 44 const std::string& Namespace() const { return namespace_; } 45 const std::string& LocalPart() const { return local_part_; } 46 std::string Merged() const; 69 std::string namespace_; 70 std::string local_part_;
|
| /external/chromium_org/ui/gfx/ |
| platform_font_pango.h | 8 #include <string> 26 PlatformFontPango(const std::string& font_name, int font_size_pixels); 40 static void SetDefaultFontDescription(const std::string& font_description); 50 virtual std::string GetFontName() const OVERRIDE; 51 virtual std::string GetActualFontNameForTesting() const OVERRIDE; 60 const std::string& name, 70 const std::string& font_family, 94 std::string font_family_; 116 static std::string* default_font_description_;
|
| /external/deqp/framework/common/ |
| tcuTestContext.hpp | 30 #include <string> 81 std::string m_testResultDesc; //!< Latest test result description. 97 ResultCollector (TestLog& log, const std::string& prefix = ""); 101 void fail (const std::string& msg); 102 bool check (bool condition, const std::string& msg); 104 void addResult (qpTestResult result, const std::string& msg); 105 bool checkResult (bool condition, qpTestResult result, const std::string& msg); 111 std::string m_prefix; 113 std::string m_message;
|
| /external/deqp/framework/delibs/decpp/ |
| dePoolString.hpp | 23 * \brief Memory pool -backed string. 31 #include <string> 37 * \brief String template backed by memory pool 49 void toString (std::string& str) const; 50 std::string toString (void) const; 53 void append (const std::string& str); 57 PoolString& operator= (const std::string& str) { clear(); append(str); return *this; } 61 PoolString& operator+= (const std::string& str) { append(str); return *this; } 69 std::ostream& operator<< (std::ostream& stream, const PoolString& string); 82 inline std::string PoolString::toString (void) cons [all...] |
| /external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_failure/ |
| ctor_char_pointer_error_code.pass.cpp | 17 #include <string> 23 std::string what_arg("io test message"); 26 std::string what_message(se.what()); 27 assert(what_message.find(what_arg) != std::string::npos); 28 assert(what_message.find("Is a directory") != std::string::npos); 31 std::string what_arg("io test message"); 34 std::string what_message(se.what()); 35 assert(what_message.find(what_arg) != std::string::npos); 37 (std::io_errc::stream))) != std::string::npos);
|
| ctor_string_error_code.pass.cpp | 14 // explicit failure(const string& msg, const error_code& ec = io_errc::stream); 17 #include <string> 23 std::string what_arg("io test message"); 26 std::string what_message(se.what()); 27 assert(what_message.find(what_arg) != std::string::npos); 28 assert(what_message.find("Is a directory") != std::string::npos); 31 std::string what_arg("io test message"); 34 std::string what_message(se.what()); 35 assert(what_message.find(what_arg) != std::string::npos); 37 (std::io_errc::stream))) != std::string::npos) [all...] |
| /external/libcxx/test/re/re.alg/re.alg.match/ |
| parse_curly_brackets.pass.cpp | 21 #include <string> 28 std::string re{"\\{a\\}"}; 29 std::string target{"{a}"}; 38 std::string re{"\\{a\\}"}; 39 std::string target{"{a}"}; 48 std::string re{"\\{a\\}"}; 49 std::string target{"{a}"}; 58 std::string re{"\\{a\\}"}; 59 std::string target{"{a}"};
|
| /external/llvm/include/llvm/Support/ |
| DOTGraphTraits.h | 20 #include <string> 45 static std::string getGraphName(const GraphType &) { return ""; } 51 static std::string getGraphProperties(const GraphType &) { 71 std::string getNodeLabel(const void *, const GraphType &) { 83 static std::string getNodeDescription(const void *, const GraphType &) { 90 static std::string getNodeAttributes(const void *, 98 static std::string getEdgeAttributes(const void *, EdgeIter, 106 static std::string getEdgeSourceLabel(const void *, EdgeIter) { 140 static std::string getEdgeDestLabel(const void *, unsigned) {
|
| /external/openfst/src/include/fst/extensions/far/ |
| equal.h | 20 #include <string> 28 bool FarEqual(const string &filename1, 29 const string &filename2, 31 const string &begin_key = string(), 32 const string &end_key = string()) { 60 const string key1 = reader1->GetKey(); 61 const string key2 = reader2->GetKey();
|
| /external/chromium_org/chrome/common/ |
| pepper_permission_util_unittest.cc | 8 #include <string> 25 const std::string& import_id, 26 const std::string& id) { 48 std::string whitelisted_id = 61 std::set<std::string> whitelist; 62 std::string url = std::string("chrome-extension://") + whitelisted_id + 63 std::string("/manifest.nmf"); 64 std::string bad_scheme_url = 65 std::string("http://") + whitelisted_id + std::string("/manifest.nmf") [all...] |
| /external/chromium_org/components/gcm_driver/ |
| gcm_driver_desktop.h | 9 #include <string> 50 const std::string& channel_status_request_url, 51 const std::string& user_agent, 65 virtual void AddAppHandler(const std::string& app_id, 67 virtual void RemoveAppHandler(const std::string& app_id) OVERRIDE; 82 virtual void RemoveAccountMapping(const std::string& account_id) OVERRIDE; 91 const std::map<std::string, std::string>& account_tokens); 103 const std::string& app_id, 104 const std::vector<std::string>& sender_ids) OVERRIDE [all...] |
| /external/chromium_org/components/proximity_auth/ |
| wire_message_unittest.cc | 14 WireMessage::Deserialize(std::string(), &is_incomplete); 39 WireMessage::Deserialize(std::string("\3\0\0", 3), &is_incomplete); 47 WireMessage::Deserialize(std::string("\3\0\5", 3), &is_incomplete); 55 std::string("\3\0\5", 3) + "123456", &is_incomplete); 63 std::string("\3\0\5", 3) + "12345", &is_incomplete); 70 std::string header("\3\0\x29", 3); 71 std::string bytes = 82 std::string header("\3\0\x13", 3); 83 std::string bytes = header + "{\"payload\": \"YQ==\"}"; 88 EXPECT_EQ(std::string(), message->permit_id()) [all...] |
| /external/chromium_org/courgette/ |
| bsdiff_memory_unittest.cc | 13 void GenerateAndTestPatch(const std::string& a, const std::string& b) const; 15 std::string GenerateSyntheticInput(size_t length, int seed) const; 18 void BSDiffMemoryTest::GenerateAndTestPatch(const std::string& old_text, 19 const std::string& new_text) const { 41 std::string BSDiffMemoryTest::GenerateSyntheticInput(size_t length, int seed) 44 std::string result; 54 GenerateAndTestPatch(std::string(), std::string()); 58 GenerateAndTestPatch(std::string(), "xxx") [all...] |
| /bionic/libc/arch-mips/ |
| mips.mk | 39 upstream-freebsd/lib/libc/string/wcscat.c \ 40 upstream-freebsd/lib/libc/string/wcschr.c \ 41 upstream-freebsd/lib/libc/string/wcscmp.c \ 42 upstream-freebsd/lib/libc/string/wcscpy.c \ 43 upstream-freebsd/lib/libc/string/wcslen.c \ 44 upstream-freebsd/lib/libc/string/wcsrchr.c \ 45 upstream-freebsd/lib/libc/string/wmemcmp.c \ 46 upstream-freebsd/lib/libc/string/wmemmove.c \ 49 upstream-openbsd/lib/libc/string/bcopy.c \ 50 upstream-openbsd/lib/libc/string/stpcpy.c [all...] |
| /external/chromium_org/extensions/browser/api/bluetooth_low_energy/ |
| bluetooth_low_energy_event_router.h | 10 #include <string> 92 const std::string& device_address, 102 const std::string& device_address, 115 bool GetServices(const std::string& device_address, 120 Status GetService(const std::string& instance_id, 128 Status GetIncludedServices(const std::string& instance_id, 143 const std::string& instance_id, 151 const std::string& instance_id, 164 const std::string& instance_id, 172 const std::string& instance_id [all...] |