HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 3151 - 3175 of 27455) sorted by null

<<121122123124125126127128129130>>

  /external/chromium_org/net/quic/
quic_server_id.h 8 #include <string>
24 QuicServerId(const std::string& host,
27 QuicServerId(const std::string& host,
40 std::string ToString() const;
44 const std::string& host() const { return host_port_pair_.host(); }
  /external/chromium_org/net/url_request/
test_url_request_interceptor.h 8 #include <string>
36 const std::string& scheme,
37 const std::string& hostname,
57 const std::string scheme_;
58 const std::string hostname_;
url_request_throttler_test_support.cc 32 const std::string& retry_value,
33 const std::string& opt_out_value,
43 std::string MockURLRequestThrottlerHeaderAdapter::GetNormalizedValue(
44 const std::string& key) const {
51 return std::string();
  /external/chromium_org/net/websockets/
websocket_extension.cc 7 #include <string>
13 WebSocketExtension::Parameter::Parameter(const std::string& name)
16 WebSocketExtension::Parameter::Parameter(const std::string& name,
17 const std::string& value)
28 WebSocketExtension::WebSocketExtension(const std::string& name)
websocket_handshake_stream_create_helper.h 8 #include <string>
32 const std::vector<std::string>& requested_subprotocols);
52 // Set a pointer to the std::string into which to write any failure messages
56 void set_failure_message(std::string* failure_message) {
66 const std::vector<std::string> requested_subprotocols_;
76 std::string* failure_message_;
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
srpc_client.h 14 #include <string>
45 bool HasMethod(const std::string& method_name);
47 bool Invoke(const std::string& method_name, SrpcParams* params);
50 bool InitParams(const std::string& method_name, SrpcParams* params);
59 typedef std::map<std::string, MethodInfo*> Methods;
  /external/chromium_org/ppapi/proxy/
flash_font_file_resource.h 9 #include <string>
45 std::string* GetFontTable(uint32_t table) const;
47 std::string* AddFontTable(uint32_t table, const std::string& contents);
49 typedef std::map<uint32_t, linked_ptr<std::string> > FontTableMap;
  /external/chromium_org/remoting/host/
desktop_process.h 8 #include <string>
37 const std::string& daemon_channel_name);
60 void OnCrash(const std::string& function_name,
61 const std::string& file_name,
75 std::string daemon_channel_name_;
gnubby_socket.h 8 #include <string>
36 void GetAndClearRequestData(std::string* data_out);
45 void SendResponse(const std::string& data);
61 std::string GetResponseLengthAsBytes(const std::string& response) const;
server_log_entry_host_unittest.cc 21 std::string error;
22 std::map<std::string, std::string> key_value_pairs;
26 std::set<std::string> keys;
34 std::string error;
35 std::map<std::string, std::string> key_value_pairs;
38 std::set<std::string> keys;
47 std::string error;
48 std::map<std::string, std::string> key_value_pairs
    [all...]
token_validator_factory_impl_unittest.cc 7 #include <string>
39 FakeProtocolHandler(const std::string& headers, const std::string& response)
51 std::string headers_;
52 std::string response_;
57 void SetResponse(const std::string& headers, const std::string& response) {
74 void SuccessCallback(const std::string& shared_secret) {
79 void FailureCallback(const std::string& shared_secret) {
84 void DeleteOnFailureCallback(const std::string& shared_secret)
    [all...]
  /external/chromium_org/remoting/protocol/
secure_channel_factory.h 33 virtual void CreateChannel(const std::string& name,
35 virtual void CancelChannelCreation(const std::string& name) OVERRIDE;
38 typedef std::map<std::string, ChannelAuthenticator*> AuthenticatorMap;
40 void OnBaseChannelCreated(const std::string& name,
44 void OnSecureChannelCreated(const std::string& name,
  /external/chromium_org/third_party/angle/src/compiler/translator/
Diagnostics.cpp 26 const std::string& reason,
27 const std::string& token,
28 const std::string& extra)
53 void TDiagnostics::writeDebug(const std::string& str)
60 const std::string& text)
DirectiveHandler.h 28 const std::string& msg);
31 const std::string& name,
32 const std::string& value);
35 const std::string& name,
36 const std::string& behavior);
  /external/chromium_org/third_party/angle/src/libGLESv2/
Uniform.h 17 #include <string>
26 LinkedUniform(GLenum type, GLenum precision, const std::string &name, unsigned int arraySize, const int blockIndex, const sh::BlockMemberInfo &blockInfo);
40 const std::string name;
61 UniformBlock(const std::string &name, unsigned int elementIndex, unsigned int dataSize);
67 const std::string name;
  /external/chromium_org/third_party/leveldatabase/src/util/
testutil.cc 12 Slice RandomString(Random* rnd, int len, std::string* dst) {
20 std::string RandomKey(Random* rnd, int len) {
26 std::string result;
35 size_t len, std::string* dst) {
38 std::string raw_data;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver.h 34 #include <string>
62 virtual bool GetKey(const std::string& username, const std::string& realm,
63 std::string* key) = 0;
84 const std::string& realm() const { return realm_; }
85 void set_realm(const std::string& realm) { realm_ = realm; }
88 const std::string& software() const { return software_; }
89 void set_software(const std::string& software) { software_ = software; }
124 std::string ToString() const;
150 const std::string& key)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
util_unittest.h 32 #include <string>
48 virtual void StartTls(const std::string & cname);
57 std::string OutputActivity();
58 std::string SessionActivity();
59 std::string StanzaActivity();
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
printer.cc 59 void Printer::Print(const map<string, string>& variables, const char* text) {
89 string varname(text + pos, endpos - pos);
95 map<string, string>::const_iterator iter = variables.find(varname);
114 static map<string, string> empty;
119 const char* variable, const string& value) {
120 map<string, string> vars
    [all...]
  /external/chromium_org/third_party/re2/re2/
prefilter_tree.h 9 // matches from a string matching engine, PrefilterTree deduces the
10 // set of regexps that are to be triggered. The 'string matching
13 // atoms) that the user of this class should use to do the string
41 // The Compile returns a vector of string in atom_vec.
44 // The caller should use the returned set of strings to do string matching.
45 // Each time a string matches, the corresponding index then has to be
47 void Compile(vector<string>* atom_vec);
51 // contain all the ids of string atoms that were found to match the
52 // content. The caller can use any string match engine to perform
88 void AssignUniqueIds(vector<string>* atom_vec)
    [all...]
  /external/chromium_org/third_party/webrtc/base/
messagedigest_unittest.cc 19 // Test the string versions of the APIs.
39 // Test the string versions of the APIs.
60 std::string output;
67 // Test the string versions of the APIs.
69 ComputeHmac(DIGEST_MD5, std::string(16, '\x0b'), "Hi There"));
73 ComputeHmac(DIGEST_MD5, std::string(16, '\xaa'),
74 std::string(50, '\xdd')));
79 std::string(50, '\xcd')));
81 ComputeHmac(DIGEST_MD5, std::string(16, '\x0c'),
84 ComputeHmac(DIGEST_MD5, std::string(80, '\xaa')
    [all...]
  /external/chromium_org/third_party/zlib/google/
zip_internal.h 12 #include <string>
33 unzFile OpenForUnzipping(const std::string& file_name_utf8);
45 // Creates a custom unzFile object which reads data from the specified string.
47 // read data from the specified string.
48 unzFile PrepareMemoryForUnzipping(const std::string& data);
52 zipFile OpenForZipping(const std::string& file_name_utf8, int append_flag);
65 const std::string& str_path,
  /external/chromium_org/tools/gn/
filesystem_utils.h 8 #include <string>
28 std::string FilePathToUTF8(const base::FilePath::StringType& str);
29 inline std::string FilePathToUTF8(const base::FilePath& path) {
37 // slash). Returns std::string::npos if not found. Returns path.size() if the
39 size_t FindExtensionOffset(const std::string& path);
41 // Returns a string piece pointing into the input string identifying the
43 base::StringPiece FindExtension(const std::string* path);
50 size_t FindFilenameOffset(const std::string& path);
52 // Returns a string piece pointing into the input string identifying th
    [all...]
  /external/chromium_org/ui/events/linux/
text_edit_command_auralinux.h 8 #include <string>
56 const std::string& argument,
63 const std::string& argument() const { return argument_; }
66 // We communicate these commands back to blink with a string representation.
69 std::string GetCommandString() const;
74 std::string argument_;
  /external/chromium_org/ui/gfx/
font_list_impl.h 8 #include <string>
22 // in the form of a string representing font names, styles, and size.
28 // For the format of font description string, see font_list.h for details.
31 // Creates a font list from a string representing font names, styles, and
33 explicit FontListImpl(const std::string& font_description_string);
36 FontListImpl(const std::vector<std::string>& font_names,
73 // Returns a string representing font names, styles, and size. If the
76 const std::string& GetFontDescriptionString() const;
100 // string, |fonts_| is not initialized during construction. Instead, it is
104 // A string representing font names, styles, and sizes
    [all...]

Completed in 1611 milliseconds

<<121122123124125126127128129130>>