Searched refs:string (Results 251 - 275 of 26356) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/url/
H A Dorigin.h8 #include <string>
14 // Origin represents a Web Origin serialized to a string.
19 explicit Origin(const std::string& origin);
21 const std::string& string() const { return string_; } function in class:url::Origin
28 std::string string_;
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-results-cache.js28 // Long string to trigger caching.
29 var string = variable
66 var replaced = string.replace(/\b\w+\b/g, function() { return "foo"; });
69 string.replace(/\b\w+\b/g, function() { return "foo"; }));
73 var words = string.split(" ");
76 words = string.split(" ");
/external/clang/test/CodeGenCXX/
H A Dcrash.cpp20 struct string { struct in namespace:PR17476
21 string(const char *__s);
22 string &operator+=(const string &__str);
27 string start("__");
/external/elfutils/0.153/lib/
H A Dxstrndup.c1 /* Convenience function for string allocation.
30 #include <string.h>
36 xstrndup (string, n)
37 const char *string;
41 size_t len = strnlen (string, n);
42 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
/external/oprofile/libutil++/
H A Dstring_manip.h3 * std::string helpers
15 #include <string>
21 * @param str string
25 * occurence of ch from and return the string
27 std::string erase_to_last_of(std::string const & str, char ch);
29 /// split string s by first occurence of char c, returning the second part.
31 std::string split(std::string & s, char c);
34 /// if prefix is an empty string
[all...]
/external/chromium_org/media/base/
H A Daudio_video_metadata_extractor.h9 #include <string>
21 // This class extracts a string dictionary of metadata tags for audio and video
25 typedef std::map<std::string, std::string> TagDictionary;
30 std::string type;
53 // Returns -1 or an empty string if the value is undefined.
54 const std::string& album() const;
55 const std::string& artist() const;
56 const std::string& comment() const;
57 const std::string
[all...]
/external/chromium_org/net/tools/flip_server/
H A Dflip_config.h10 #include <string>
27 std::string listen_ip,
28 std::string listen_port,
29 std::string ssl_cert_filename,
30 std::string ssl_key_filename,
31 std::string http_server_ip,
32 std::string http_server_port,
33 std::string https_server_ip,
34 std::string https_server_port,
45 std::string listen_ip
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dmessagedigest.h14 #include <string>
43 static MessageDigest* Create(const std::string& alg);
47 bool IsFips180DigestAlgorithm(const std::string& alg);
60 size_t ComputeDigest(const std::string& alg, const void* input, size_t in_len,
63 // returns it as a hex-encoded string.
64 std::string ComputeDigest(MessageDigest* digest, const std::string& input);
66 // the desired digest name |alg|, e.g. DIGEST_SHA_1. Returns empty string if
68 std::string ComputeDigest(const std::string
[all...]
/external/chromium_org/google_apis/gaia/
H A Dgaia_auth_fetcher.h8 #include <string>
43 // Magic string indicating that, while a second factor is still
50 const std::string& source,
64 void StartClientLogin(const std::string& username,
65 const std::string& password,
67 const std::string& login_token,
68 const std::string& login_captcha,
76 void StartIssueAuthToken(const std::string& sid,
77 const std::string& lsid,
85 void StartTokenAuth(const std::string
[all...]
/external/chromium_org/net/base/
H A Dmime_util.h8 #include <string>
19 std::string* mime_type);
27 std::string* mime_type);
32 std::string* mime_type);
38 const std::string& mime_type,
42 NET_EXPORT bool IsSupportedImageMimeType(const std::string& mime_type);
43 NET_EXPORT bool IsSupportedMediaMimeType(const std::string& mime_type);
44 NET_EXPORT bool IsSupportedNonImageMimeType(const std::string& mime_type);
45 NET_EXPORT bool IsUnsupportedTextMimeType(const std::string& mime_type);
46 NET_EXPORT bool IsSupportedJavascriptMimeType(const std::string
[all...]
/external/chromium_org/testing/perf/
H A Dperf_test.cc15 std::string ResultsToString(const std::string& measurement,
16 const std::string& modifier,
17 const std::string& trace,
18 const std::string& values,
19 const std::string& prefix,
20 const std::string& suffix,
21 const std::string& units,
32 void PrintResultsImpl(const std::string& measurement,
33 const std::string
[all...]
/external/ltrace/etc/
H A Dsyscalls.conf10 int execve(string,addr,addr);
21 int open(string, hex(uint), oct(uint));
24 int stat(string,addr);
29 int setxattr(string,string,addr,uint,int);
30 int lsetxattr(string,string,addr,uint,int);
31 int fsetxattr(int,string,addr,uint,int);
32 int getxattr(string,string,add
[all...]
/external/chromium_org/extensions/common/
H A Dextension_l10n_util.h11 #include <string>
29 void SetProcessLocale(const std::string& locale);
31 // Returns default locale in form "en-US" or "sr" or empty string if
33 std::string GetDefaultLocaleFromManifest(const base::DictionaryValue& manifest,
34 std::string* error);
44 std::string* error);
50 std::string* error);
57 bool AddLocale(const std::set<std::string>& chrome_locales,
59 const std::string& locale_name,
60 std::set<std::string>* valid_locale
[all...]
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_downloader_unittest.cc12 std::string GetJSonData(const std::string& full_name,
13 const std::string& given_name,
14 const std::string& url,
15 const std::string& locale) {
51 void VerifyWithAccountData(const std::string& full_name,
52 const std::string& given_name,
53 const std::string& url,
54 const std::string& expected_url,
55 const std::string
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.h42 #include <string>
111 void RegisterGenerator(const string& flag_name,
113 const string& help_text);
123 void RegisterGenerator(const string& flag_name,
124 const string& option_flag_name,
126 const string& help_text);
157 void AllowPlugins(const string& exe_name_prefix);
181 void SetVersionInfo(const string& text) {
223 bool ParseArgument(const char* arg, string* name, string* valu
[all...]
/external/chromium_org/chrome/browser/chromeos/settings/
H A Dtoken_encryptor.h8 #include <string>
28 virtual std::string EncryptWithSystemSalt(const std::string& token) = 0;
32 virtual std::string DecryptWithSystemSalt(
33 const std::string& encrypted_token_hex) = 0;
40 explicit CryptohomeTokenEncryptor(const std::string& system_salt);
44 virtual std::string EncryptWithSystemSalt(const std::string& token) OVERRIDE;
45 virtual std::string DecryptWithSystemSalt(
46 const std::string
[all...]
/external/chromium_org/chromeos/dbus/
H A Deasy_unlock_client.h8 #include <string>
31 typedef base::Callback<void(const std::string& data)> DataCallback;
34 typedef base::Callback<void(const std::string& private_key,
35 const std::string& public_key)>
49 std::string key;
54 std::string associated_data;
57 std::string public_metadata;
62 std::string verification_key_id;
66 std::string decryption_key_id;
69 std::string encryption_typ
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_handshake_handler.h16 #include <string>
26 void ComputeSecWebSocketAccept(const std::string& key,
27 std::string* accept);
43 void AppendHeaderIfMissing(const std::string& name,
44 const std::string& value);
51 HttpRequestInfo GetRequestInfo(const GURL& url, std::string* challenge);
56 std::string* challenge,
60 std::string GetRawRequest();
65 std::string request_line_;
66 std::string headers
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_compositor.h9 #include <string>
23 virtual void RunTests(const std::string& filter);
27 std::string TestRelease();
28 std::string TestReleaseWithoutCommit();
29 std::string TestCommitTwoTimesWithoutChange();
30 std::string TestGeneral();
32 std::string TestReleaseUnbound();
33 std::string TestReleaseWithoutCommitUnbound();
34 std::string TestCommitTwoTimesWithoutChangeUnbound();
35 std::string TestGeneralUnboun
[all...]
H A Dtest_post_message.h8 #include <string>
21 virtual void RunTests(const std::string& filter);
35 bool AddEchoingListener(const std::string& expression);
39 bool PostMessageFromJavaScript(const std::string& func);
55 int PostAsyncMessageFromJavaScriptAndWait(const std::string& func);
59 std::string CheckMessageProperties(
61 const std::vector<std::string>& properties_to_check);
66 std::string TestSendInInit();
70 std::string TestSendingData();
72 // Test sending string var
[all...]
H A Dtest_tcp_socket.h8 #include <string>
25 virtual void RunTests(const std::string& filter);
28 std::string TestConnect();
29 std::string TestReadWrite();
30 std::string TestSetOption();
31 std::string TestListen();
32 std::string TestBacklog();
33 std::string TestInterface_1_0();
35 std::string ReadFirstLineFromSocket(pp::TCPSocket* socket, std::string*
[all...]
/external/bison/lib/
H A Dxstrndup.c1 /* Duplicate a bounded initial segment of a string, with out-of-memory
23 #include <string.h>
30 xstrndup (const char *string, size_t n) argument
32 char *s = strndup (string, n);
/external/chromium_org/base/
H A Dbase64.h8 #include <string>
15 // Encodes the input string in base64.
16 BASE_EXPORT void Base64Encode(const StringPiece& input, std::string* output);
18 // Decodes the base64 input string. Returns true if successful and false
19 // otherwise. The output string is only modified if successful.
20 BASE_EXPORT bool Base64Decode(const StringPiece& input, std::string* output);
H A Dsha1.h8 #include <string>
18 // Computes the SHA-1 hash of the input string |str| and returns the full
20 BASE_EXPORT std::string SHA1HashString(const std::string& str);
/external/chromium_org/base/test/
H A Dscoped_locale.h8 #include <string>
18 explicit ScopedLocale(const std::string& locale);
22 std::string prev_locale_;

Completed in 6010 milliseconds

<<11121314151617181920>>