Searched refs:string (Results 201 - 225 of 9301) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit2/Shared/API/c/cf/
H A DWKStringCF.cpp37 String string(cfString);
38 return toCopiedAPI(string);
43 ASSERT(!toImpl(stringRef)->string().isNull());
47 return CFStringCreateWithCharacters(allocatorRef, reinterpret_cast<const UniChar*>(toImpl(stringRef)->string().characters()), toImpl(stringRef)->string().length());
/external/webkit/Tools/TestWebKitAPI/
H A DTestsController.h30 #include <string>
41 bool runTestNamed(const std::string&);
46 typedef Test* (*CreateTestFunction)(const std::string&);
47 void registerCreateTestFunction(const std::string&, CreateTestFunction);
56 std::map<std::string, CreateTestFunction> m_createTestFunctions;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
H A Dperlstress-001.js51 * By contrast, in Perl, unmatched captures hold the empty string.
55 string = '.';
56 actualmatch = string.match(pattern);
74 * - In ECMA, ^ matches only the empty string before the first character
76 * - In ECMA, $ matches only the empty string at end of input (unless multiline)
94 var string = ''; variable
106 string = 'abc';
107 actualmatch = string.match(pattern);
113 string = 'xabcy';
114 actualmatch = string
[all...]
/external/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);
144 void AllowPlugins(const string& exe_name_prefix);
168 void SetVersionInfo(const string& text) {
203 bool ParseArgument(const char* arg, string* name, string* value);
206 bool InterpretArgument(const string& name, const string& value);
217 const string
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERGeneralString.java12 private byte[] string; field in class:DERGeneralString
42 DERGeneralString(byte[] string) argument
44 this.string = string;
47 public DERGeneralString(String string) argument
49 this.string = Strings.toByteArray(string);
54 return Strings.fromByteArray(string);
64 return Arrays.clone(string);
74 return 1 + StreamUtil.calculateBodyLength(string
[all...]
H A DDERT61String.java9 * DER T61String (also the teletex string)
15 private byte[] string; field in class:DERT61String
18 * return a T61 string from the passed in object.
62 byte[] string)
64 this.string = string;
68 * basic constructor - with string.
71 String string)
73 this.string = Strings.toByteArray(string);
61 DERT61String( byte[] string) argument
70 DERT61String( String string) argument
[all...]
H A DDERVisibleString.java15 private byte[] string; field in class:DERVisibleString
59 * basic constructor - byte encoded string.
62 byte[] string)
64 this.string = string;
71 String string)
73 this.string = Strings.toByteArray(string);
78 return Strings.fromByteArray(string);
88 return Arrays.clone(string);
61 DERVisibleString( byte[] string) argument
70 DERVisibleString( String string) argument
[all...]
H A DDERIA5String.java9 * DER IA5String object - this is an ascii string.
15 private byte[] string; field in class:DERIA5String
18 * return a IA5 string from the passed in object
62 byte[] string)
64 this.string = string;
71 String string)
73 this(string, false);
79 * @param string the base string t
61 DERIA5String( byte[] string) argument
70 DERIA5String( String string) argument
84 DERIA5String( String string, boolean validate) argument
[all...]
/external/chromium/chrome/browser/importer/
H A Dfirefox_proxy_settings.h9 #include <string>
50 std::string http_proxy() const { return http_proxy_; }
53 std::string ssl_proxy() const { return ssl_proxy_; }
56 std::string ftp_proxy() const { return ftp_proxy_; }
59 std::string gopher_proxy() const { return gopher_proxy_; }
62 std::string socks_host() const { return socks_host_; }
66 std::vector<std::string> proxy_bypass_list() const {
70 const std::string autoconfig_url() const {
88 std::string http_proxy_;
91 std::string ssl_proxy
[all...]
/external/chromium/chrome/common/net/gaia/
H A Dgaia_auth_consumer.h9 #include <string>
19 ClientLoginResult(const std::string& new_sid,
20 const std::string& new_lsid,
21 const std::string& new_token,
22 const std::string& new_data);
27 std::string sid;
28 std::string lsid;
29 std::string token;
31 std::string data; // Full contents of ClientLogin return.
40 virtual void OnIssueAuthTokenSuccess(const std::string
[all...]
H A Dgaia_oauth_client.h9 #include <string>
25 std::string client_id;
26 std::string client_secret;
36 virtual void OnGetTokensResponse(const std::string& refresh_token,
37 const std::string& access_token,
40 virtual void OnRefreshTokenResponse(const std::string& access_token,
49 GaiaOAuthClient(const std::string& gaia_url,
58 const std::string& auth_code,
62 const std::string& refresh_token,
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
H A Dmatch-001.js14 * of the expression new RegExp(regexp). Let string denote the result of
15 * converting the this value to a string. If regexp.global is false,
17 * section 15.7.5.3) on regexp with string as parameter.
21 * match with an empty string (in other words, if the value of
28 * require that its this value be a string object. Therefore, it can be
39 // this is not a string object
61 regexp, str_regexp, string, length, index, matches_array ) {
64 "( " + string + " ).match(" + str_regexp +").length",
66 string.match(regexp).length );
69 "( " + string
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3string.h2 * Simple string interface allows indiscriminate allocation of strings
4 * one chunk via a string factory - saves lots of hassle in remembering what
46 /** Base string class tracks the allocations and provides simple string
47 * tracking functions. Mostly you can work directly on the string for things
54 /** The factory that created this string
58 /** Pointer to the current string value (starts at NULL unless
59 * the string allocator is told to create it with a pre known size.
63 /** Current length of the string up to and not including, the trailing '\0'
69 /** Current size of the string i
[all...]
/external/chromium/net/http/
H A Dhttp_auth_handler_digest.h9 #include <string>
32 virtual std::string GenerateNonce() const = 0;
42 virtual std::string GenerateNonce() const;
47 // FixedNonceGenerator always uses the same string specified at
51 explicit FixedNonceGenerator(const std::string& nonce);
53 virtual std::string GenerateNonce() const;
56 const std::string nonce_;
90 std::string* auth_token);
131 bool ParseChallengeProperty(const std::string& name,
132 const std::string
[all...]
/external/webkit/Tools/DumpRenderTree/qt/
H A Dfonts.conf10 <string>mono</string>
13 <string>monospace</string>
22 <string>sans serif</string>
25 <string>sans-serif</string>
34 <string>sans</string>
[all...]
/external/webkit/Source/JavaScriptCore/API/
H A DJSStringRef.cpp42 JSStringRef JSStringCreateWithUTF8CString(const char* string) argument
45 if (string) {
46 size_t length = strlen(string);
49 if (conversionOK == convertUTF8ToUTF16(&string, string + length, &p, p + length))
53 // Null string.
57 JSStringRef JSStringRetain(JSStringRef string) argument
59 string->ref();
60 return string;
63 void JSStringRelease(JSStringRef string) argument
68 JSStringGetLength(JSStringRef string) argument
73 JSStringGetCharactersPtr(JSStringRef string) argument
78 JSStringGetMaximumUTF8CStringSize(JSStringRef string) argument
84 JSStringGetUTF8CString(JSStringRef string, char* buffer, size_t bufferSize) argument
[all...]
/external/valgrind/tsan/
H A Dsuppressions_test.cc36 #define VEC(arr) *(new vector<string>(arr, arr + sizeof(arr) / sizeof(*arr)))
40 bool IsSuppressed(string tool, string warning_type, const vector<string>& f_m,
41 const vector<string>& f_d, const vector<string>& o) {
42 string result;
47 bool IsSuppressed(const vector<string>& f_m, const vector<string>& f_d,
48 const vector<string>
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dconstants.cc28 #include <string>
35 const std::string NS_EMPTY("");
36 const std::string NS_JINGLE("urn:xmpp:jingle:1");
37 const std::string NS_GINGLE("http://www.google.com/session");
41 const std::string LN_INITIATOR("initiator");
50 const std::string JINGLE_CONTENT_MEDIA_AUDIO("audio");
51 const std::string JINGLE_CONTENT_MEDIA_VIDEO("video");
52 const std::string JINGLE_ACTION_SESSION_INITIATE("session-initiate");
53 const std::string JINGLE_ACTION_SESSION_INFO("session-info");
54 const std::string JINGLE_ACTION_SESSION_ACCEP
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dcustomization_document.h10 #include <string>
45 virtual bool LoadManifestFromString(const std::string& manifest);
47 std::string GetLocaleSpecificString(const std::string& locale,
48 const std::string& dictionary_name,
49 const std::string& entry_name) const;
65 const std::string& initial_locale() const { return initial_locale_; }
66 const std::string& initial_timezone() const { return initial_timezone_; }
67 const std::string& keyboard_layout() const { return keyboard_layout_; }
68 const std::string
[all...]
/external/chromium/chrome/browser/content_settings/
H A Dcontent_settings_pattern.h12 #include <string>
28 explicit ContentSettingsPattern(const std::string& pattern)
43 // Returns a std::string representation of this pattern.
44 const std::string& AsString() const { return pattern_; }
52 std::string CanonicalizePattern() const;
54 std::string scheme() const {
71 ContentSettingsPattern(const std::string& host, const std::string& scheme)
75 std::string pattern_;
80 std::string scheme
[all...]
/external/chromium/chrome/browser/policy/
H A Dcloud_policy_identity_strategy.h9 #include <string>
43 // Returns the device management token, if available. Returns the empty string
45 virtual std::string GetDeviceToken() = 0;
50 virtual std::string GetDeviceID() = 0;
53 virtual std::string GetMachineID() = 0;
56 virtual std::string GetMachineModel() = 0;
64 virtual std::string GetPolicyType() = 0;
69 virtual bool GetCredentials(std::string* username,
70 std::string* auth_token) = 0;
76 virtual void OnDeviceTokenAvailable(const std::string
[all...]
/external/chromium/chrome/common/
H A Dchrome_version_info.cc32 std::string VersionInfo::Name() const {
34 return std::string();
38 std::string VersionInfo::Version() const {
40 return std::string();
44 std::string VersionInfo::LastChange() const {
46 return std::string();
72 std::string VersionInfo::Name() const {
76 std::string VersionInfo::Version() const {
80 std::string VersionInfo::LastChange() const {
H A Ddevtools_messages.h43 #include <string>
51 typedef std::map<std::string, std::string> DevToolsRuntimeProperties;
61 std::string /* message */)
65 std::string /* message */)
83 std::string /* message */)
90 std::string /* command */)
136 std::string /* name */,
137 std::string /* value */)
H A Djson_schema_validator.h9 #include <string>
33 // - string.pattern
60 explicit Error(const std::string& message);
62 Error(const std::string& path, const std::string& message);
65 std::string path;
68 std::string message;
88 static std::string GetJSONSchemaType(Value* value);
93 static std::string FormatErrorMessage(const std::string
[all...]
H A Djstemplate_builder.h17 #include <string>
26 // A helper function that generates a string of HTML to be loaded. The
27 // string includes the HTML and the javascript code necessary to generate the
29 std::string GetTemplateHtml(const base::StringPiece& html_template,
33 // A helper function that generates a string of HTML to be loaded. The
34 // string includes the HTML and the javascript code necessary to generate the
36 std::string GetI18nTemplateHtml(const base::StringPiece& html_template,
39 // A helper function that generates a string of HTML to be loaded. The
40 // string includes the HTML and the javascript code necessary to generate the
42 std::string GetTemplatesHtm
[all...]

Completed in 398 milliseconds

1234567891011>>