| /external/chromium_org/remoting/host/ |
| ipc_host_event_logger.h | 8 #include <string> 37 virtual void OnAccessDenied(const std::string& jid) OVERRIDE; 38 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE; 39 virtual void OnClientConnected(const std::string& jid) OVERRIDE; 40 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE; 42 const std::string& jid, 43 const std::string& channel_name, 45 virtual void OnStart(const std::string& xmpp_login) OVERRIDE;
|
| /external/chromium_org/remoting/protocol/ |
| authentication_method.h | 15 #include <string> 42 // Parses a string that defines an authentication method. Returns an 43 // invalid value if the string is invalid. 44 static AuthenticationMethod FromString(const std::string& value); 48 static std::string ApplyHashFunction(HashFunction hash_function, 49 const std::string& tag, 50 const std::string& shared_secret); 61 // Returns string representation of the value stored in this object. 62 const std::string ToString() const; 83 std::string value [all...] |
| /external/chromium_org/storage/browser/fileapi/ |
| file_system_url_request_job_factory.h | 8 #include <string> 26 CreateFileSystemProtocolHandler(const std::string& storage_domain,
|
| sandbox_isolated_origin_database.h | 8 #include <string> 27 const std::string& origin, 33 virtual bool HasOriginPath(const std::string& origin) OVERRIDE; 34 virtual bool GetPathForOrigin(const std::string& origin, 36 virtual bool RemovePathForOrigin(const std::string& origin) OVERRIDE; 42 const std::string& origin, 46 const std::string& origin() const { return origin_; } 52 const std::string origin_;
|
| /external/chromium_org/sync/api/ |
| sync_error_factory.h | 8 #include <string> 24 const std::string& message) = 0;
|
| /external/chromium_org/sync/internal_api/public/base/ |
| progress_marker_map.h | 11 #include <string> 28 typedef std::map<ModelType, std::string> ProgressMarkerMap;
|
| /external/chromium_org/sync/internal_api/public/ |
| http_post_provider_factory.h | 8 #include <string> 24 virtual void Init(const std::string& user_agent) = 0;
|
| /external/chromium_org/sync/internal_api/test/ |
| sync_manager_for_profile_sync_test.h | 8 #include <string> 21 SyncManagerForProfileSyncTest(std::string name,
|
| /external/chromium_org/third_party/WebKit/Source/wtf/text/ |
| StringUTF8Adaptor.h | 40 // This class lets you get UTF-8 data out of a String without mallocing a 41 // separate buffer to hold the data if the String happens to be 8 bit and 50 explicit StringUTF8Adaptor(const String& string, ShouldNormalize normalize = DoNotNormalize, UnencodableHandling handling = EntitiesForUnencodables) 54 if (string.isEmpty()) 60 if (string.is8Bit() && string.containsOnlyASCII()) { 61 m_data = reinterpret_cast<const char*>(string.characters8()); 62 m_length = string.length(); 65 m_utf8Buffer = UTF8Encoding().normalizeAndEncode(string, handling) [all...] |
| /external/chromium_org/third_party/libaddressinput/chromium/ |
| chrome_metadata_source.h | 9 #include <string> 27 ChromeMetadataSource(const std::string& validation_data_url, 32 virtual void Get(const std::string& key, 40 Request(const std::string& key, 44 std::string key; 46 std::string data; 53 void Download(const std::string& key, const Callback& downloaded); 55 const std::string validation_data_url_;
|
| chrome_storage_impl.h | 9 #include <string> 30 virtual void Put(const std::string& key, std::string* data) OVERRIDE; 31 virtual void Get(const std::string& key, const Callback& data_ready) 35 virtual void OnPrefValueChanged(const std::string& key) OVERRIDE; 40 Request(const std::string& key, const Callback& callback); 42 std::string key; 47 void DoGet(const std::string& key, const Callback& data_ready);
|
| /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/ |
| address_ui_component.h | 20 #include <string> 39 std::string name;
|
| localization.h | 22 #include <string> 32 // std::string best_language_tag; 38 // std::string best_language_tag; 46 // Returns the localized string for |message_id|. Returns an empty string if 48 std::string GetString(int message_id) const; 60 std::string GetErrorMessage(const AddressData& address, 66 // Sets the string getter that takes a message identifier and returns the 67 // corresponding localized string. For example, in Chromium there is 70 void SetGetter(std::string (*getter)(int)) [all...] |
| /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
| proxy_unittest.cc | 30 #include <string> 50 virtual std::string Method0() = 0; 51 virtual std::string ConstMethod0() const = 0; 52 virtual std::string Method1(std::string s) = 0; 53 virtual std::string ConstMethod1(std::string s) const = 0; 54 virtual std::string Method2(std::string s1, std::string s2) = 0 [all...] |
| /external/chromium_org/third_party/libjingle/source/talk/media/base/ |
| videorenderer.h | 32 #include <string> 52 virtual bool SetDumpPath(const std::string &path) { return true; }
|
| /external/chromium_org/third_party/libphonenumber/src/resources/ |
| phonemetadata.proto | 35 required string pattern = 1; 43 required string format = 2; 59 repeated string leading_digits_pattern = 3; 77 optional string national_prefix_formatting_rule = 4; 93 optional string domestic_carrier_code_formatting_rule = 5; 100 optional string national_number_pattern = 2; 109 optional string possible_number_pattern = 3; 113 optional string example_number = 6; 152 required string id = 9; 164 optional string international_prefix = 11 [all...] |
| /external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
| prenv.h | 73 ** pointer to a null-string (a byte of zero). 82 ** you interpret the return of a pointer to null-string to 90 ** environment variable to the null-string. 93 ** null-string from PR_GetEnv(), use the following code 101 ** The caller must ensure that the string passed 102 ** to PR_SetEnv() is persistent. That is: The string should 105 ** Similarly, the string passed to PR_SetEnv() must not be 107 ** platforms use the string by reference rather than copying 129 ** string -- pointer to a caller supplied 130 ** constant, persistent string of the form name=value. Wher [all...] |
| /external/chromium_org/third_party/opus/src/ |
| version.mk | 1 # static version string; update manually every release.
|
| /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
| cpp_options.h | 36 #include <string> 48 string dllexport_decl;
|
| /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/ |
| java_file.h | 38 #include <string> 64 // the given string and returns false otherwise. 65 bool Validate(string* error); 72 void GenerateSiblings(const string& package_dir, 74 vector<string>* file_list); 76 const string& java_package() { return java_package_; } 77 const string& classname() { return classname_; } 87 string java_package_; 88 string classname_;
|
| /external/chromium_org/third_party/webrtc/base/ |
| diskcache_win32.h | 23 virtual bool FileExists(const std::string& filename) const; 24 virtual bool DeleteFile(const std::string& filename) const;
|
| /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/ |
| bwe_test_baselinefile.h | 14 #include <string> 38 static BaseLineFileInterface* Create(const std::string& filename,
|
| /external/chromium_org/third_party/webrtc/tools/converter/ |
| converter.h | 14 #include <string> 29 bool ConvertRGBAToI420Video(std::string frames_dir, 30 std::string output_file_name, bool delete_frames); 93 std::string FindFullFileName(std::string dir_name, std::string file_name); 96 bool FileExists(std::string file_name_to_check); 100 std::string FormFrameName(int width, int number);
|
| /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fixtures/ |
| before_streaming_fixture.h | 14 #include <string> 30 std::string fake_microphone_input_file_;
|
| /external/chromium_org/tools/clang/plugins/tests/ |
| inline_ctor.cpp | 7 #include <string> 18 std::vector<std::string> two_;
|