/ndk/tests/device/test-stlport/unit/ |
epilog_test.cpp | 2 #include <string> 7 std::string s; // if std not properly redefined, error will be here
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3string.c | 2 * Implementation of the ANTLR3 string and string factory classes 42 static pANTLR3_STRING newPtr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size); 43 static pANTLR3_STRING newPtrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size); 44 static pANTLR3_STRING newPtrUTF16_UTF16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string, ANTLR3_UINT32 size); 45 static pANTLR3_STRING newStr8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string); 46 static pANTLR3_STRING newStrUTF16_8 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string); 47 static pANTLR3_STRING newStrUTF16_UTF16 (pANTLR3_STRING_FACTORY factory, pANTLR3_UINT8 string); 48 static void destroy (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string); 49 static pANTLR3_STRING printable8 (pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string); 188 pANTLR3_STRING string; local 217 pANTLR3_STRING string; local 423 pANTLR3_STRING string; local 451 pANTLR3_STRING string; local 478 pANTLR3_STRING string; local 511 pANTLR3_STRING string; local 559 pANTLR3_STRING string; local 679 pANTLR3_STRING string; local 726 pANTLR3_STRING string; local [all...] |
/external/chromium/chrome/browser/printing/cloud_print/ |
cloud_print_setup_source.h | 8 #include <string> 17 virtual void StartDataRequest(const std::string& path, 21 virtual std::string GetMimeType(const std::string& path) const; 30 // Takes a string containing an URL and returns an URL containing a CGI 33 std::string GetLocalizedUrl(const std::string& url) const;
|
/external/chromium/net/server/ |
http_server_request_info.h | 10 #include <string> 24 std::string method; 27 std::string path; 30 std::string data; 33 typedef std::map<std::string, std::string> HeadersMap;
|
/external/chromium/net/tools/fetch/ |
http_server_response_info.h | 10 #include <string> 19 std::string protocol; 25 std::string server_name; 28 std::string content_type; 37 std::map<std::string, std::string> headers;
|
/external/chromium_org/base/ios/ |
device_util.h | 8 #include <string> 15 // The returned string is the string returned by sysctlbyname() with name 41 std::string GetPlatform(); 50 std::string GetMacAddress(const std::string& interface_name); 53 std::string GetRandomId(); 60 std::string GetDeviceIdentifier(const char* salt);
|
/external/chromium_org/base/nix/ |
mime_util_xdg.h | 8 #include <string> 23 BASE_EXPORT std::string GetFileMimeType(const FilePath& filepath); 26 BASE_EXPORT std::string GetDataMimeType(const std::string& data); 31 BASE_EXPORT void SetIconThemeName(const std::string& name); 37 BASE_EXPORT FilePath GetMimeIcon(const std::string& mime_type, size_t size);
|
/external/chromium_org/chrome/browser/extensions/api/sessions/ |
session_id.h | 8 #include <string> 18 // In the case that the session is local, |session_tag_| will be empty string. 20 static scoped_ptr<SessionId> Parse(const std::string& session_string); 23 // |session_tag| is the string used to uniquely identify a synced foreign 25 // represents a local session, |session_tag_| will be the empty string. |id| 28 SessionId(const std::string& session_tag, int id); 33 // Returns the compressed std::string representation of a SessionId in the 35 std::string ToString() const; 37 const std::string& session_tag() const { return session_tag_; } 43 std::string session_tag_ [all...] |
/external/chromium_org/chrome/test/base/ |
tracing.h | 8 #include <string> 28 bool BeginTracing(const std::string& category_patterns) WARN_UNUSED_RESULT; 34 bool BeginTracingWithWatch(const std::string& category_patterns, 35 const std::string& category_name, 36 const std::string& event_name, 46 // End trace and collect the trace output as a json string. 47 bool EndTracing(std::string* json_trace_output) WARN_UNUSED_RESULT;
|
/external/chromium_org/net/tools/fetch/ |
http_server_response_info.h | 9 #include <string> 18 std::string protocol; 24 std::string server_name; 27 std::string content_type; 36 std::map<std::string, std::string> headers;
|
/external/chromium_org/ppapi/tests/ |
test_buffer.h | 8 #include <string> 19 virtual void RunTests(const std::string& filter); 22 std::string TestInvalidSize(); 23 std::string TestInitToZero(); 24 std::string TestIsBuffer(); 25 std::string TestBasicLifeCycle();
|
test_resource_array.h | 8 #include <string> 18 virtual void RunTests(const std::string& test_filter); 21 std::string TestBasics(); 22 std::string TestOutOfRangeAccess(); 23 std::string TestEmptyArray(); 24 std::string TestInvalidElement();
|
test_url_loader.h | 8 #include <string> 28 virtual void RunTests(const std::string& filter); 31 std::string ReadEntireFile(pp::FileIO* file_io, std::string* data); 32 std::string ReadEntireResponseBody(pp::URLLoader* loader, 33 std::string* body); 34 std::string LoadAndCompareBody(const pp::URLRequestInfo& request, 35 const std::string& expected_body); 36 int32_t OpenFileSystem(pp::FileSystem* file_system, std::string* message); 38 const std::string& data [all...] |
test_file_io.h | 8 #include <string> 23 virtual void RunTests(const std::string& filter); 40 std::string TestOpen(); 41 std::string TestOpenDirectory(); 42 std::string TestReadWriteSetLength(); 43 std::string TestReadToArrayWriteSetLength(); 44 std::string TestTouchQuery(); 45 std::string TestAbortCalls(); 46 std::string TestParallelReads(); 47 std::string TestParallelWrites() [all...] |
test_file_ref.h | 8 #include <string> 22 virtual void RunTests(const std::string& filter); 26 // Returns "" on success, a different string otherwise. 27 std::string MakeExternalFileRef(pp::FileRef* file_ref_ext); 31 std::string TestCreate(); 32 std::string TestGetFileSystemType(); 33 std::string TestGetName(); 34 std::string TestGetPath(); 35 std::string TestGetParent(); 36 std::string TestMakeDirectory() [all...] |
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/ |
storage.h | 23 #include <string> 31 // virtual void Put(const std::string& key, const std::string& data) { 35 // virtual void Get(const std::string& key, 38 // std::string data = ... 44 typedef i18n::addressinput::Callback<std::string, std::string> Callback; 49 virtual void Put(const std::string& key, const std::string& data) = 0; 52 virtual void Get(const std::string& key [all...] |
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
shortnumberutil.h | 27 #include <string> 34 using std::string; 47 bool ConnectsToEmergencyNumber(const string& number, 48 const string& region_code) const; 55 bool IsEmergencyNumber(const string& number, 56 const string& region_code) const;
|
/external/chromium/chrome/common/extensions/ |
extension_error_utils.cc | 9 std::string ExtensionErrorUtils::FormatErrorMessage( 10 const std::string& format, 11 const std::string& s1) { 12 std::string ret_val = format; 17 std::string ExtensionErrorUtils::FormatErrorMessage( 18 const std::string& format, 19 const std::string& s1, 20 const std::string& s2) { 21 std::string ret_val = format; 27 std::string ExtensionErrorUtils::FormatErrorMessage [all...] |
/external/chromium/chrome/common/net/gaia/ |
gaia_auth_consumer.h | 9 #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& service [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_scoped_prefs.h | 16 virtual void UpdateExtensionPref(const std::string& id, 17 const std::string& key, 21 virtual void DeleteExtensionPrefs(const std::string& id) = 0; 24 virtual bool ReadPrefAsBoolean(const std::string& extension_id, 25 const std::string& pref_key, 29 virtual bool ReadPrefAsInteger(const std::string& extension_id, 30 const std::string& pref_key, 33 // Reads a string pref |pref_key| from extension with id |extension_id|. 34 virtual bool ReadPrefAsString(const std::string& extension_id, 35 const std::string& pref_key [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
jid.h | 31 #include <string> 48 explicit Jid(const std::string& jid_string); 49 explicit Jid(const std::string& node_name, 50 const std::string& domain_name, 51 const std::string& resource_name); 54 const std::string & node() const { return node_name_; } 55 const std::string & domain() const { return domain_name_; } 56 const std::string & resource() const { return resource_name_; } 58 std::string Str() const; 79 static std::string PrepNode(const std::string& node, bool* valid) [all...] |
/external/oprofile/libpp/ |
locate_images.h | 15 #include <string> 35 void populate(std::vector<std::string> const & paths, 36 std::string const & archive_path, 37 std::string const & root_path); 41 std::string const & value; 43 explicit matcher(std::string const & v) : value(v) {} 46 virtual bool operator()(std::string const & str) const { 54 std::vector<std::string> const find(matcher const & match) const; 57 std::vector<std::string> const find(std::string const & name) const [all...] |
/external/chromium_org/chrome/browser/extensions/api/discovery/ |
suggested_link.h | 8 #include <string> 19 SuggestedLink(const std::string& link_url, const std::string& link_text, 20 const std::string& url_image, double score); 23 const std::string& link_url() const { return link_url_; } 24 const std::string& link_text() const { return link_text_; } 25 const std::string& url_image() const { return url_image_; } 29 std::string link_url_; 30 std::string link_text_; 31 std::string url_image_ [all...] |
/external/chromium_org/components/autofill/core/browser/ |
autofill_data_model.h | 8 #include <string> 22 AutofillDataModel(const std::string& guid, const std::string& origin); 25 // Returns the string that should be auto-filled into a text field given the 31 const std::string& app_locale) const; 37 std::string guid() const { return guid_; } 38 void set_guid(const std::string& guid) { guid_ = guid; } 40 std::string origin() const { return origin_; } 41 void set_origin(const std::string& origin) { origin_ = origin; } 45 std::string guid_ [all...] |
/external/chromium_org/extensions/common/ |
install_warning.h | 9 #include <string> 16 InstallWarning(const std::string& message); 17 InstallWarning(const std::string& message, 18 const std::string& key); 19 InstallWarning(const std::string& message, 20 const std::string& key, 21 const std::string& specific); 34 std::string message; 37 std::string key; 40 std::string specific [all...] |