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

<<31323334353637383940>>

  /external/chromium_org/third_party/angle/util/win32/
Win32_path_utils.cpp 11 std::string GetExecutablePath()
15 return (executablePathLen > 0 ? std::string(executableFileBuf.data()) : "");
18 std::string GetExecutableDirectory()
20 std::string executablePath = GetExecutablePath();
22 return (lastPathSepLoc != std::string::npos) ? executablePath.substr(0, lastPathSepLoc) : "";
  /external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
sha1-digest-function.h 10 #include <string>
18 using ::INVALIDATION_STL_NAMESPACE::string;
29 virtual void Update(const string& s) {
34 virtual string GetDigest() {
41 string buffer_;
  /external/chromium_org/third_party/leveldatabase/src/util/
logging.h 13 #include <string>
22 extern void AppendNumberTo(std::string* str, uint64_t num);
26 extern void AppendEscapedStringTo(std::string* str, const Slice& value);
29 extern std::string NumberToString(uint64_t num);
33 extern std::string EscapeString(const Slice& value);
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
md5.h 12 #include <string>
38 // You can call MD5DigestToBase16() to generate a string of the digest.
60 void MD5Update(MD5Context* context, const std::string& data);
66 std::string MD5DigestToBase16(const MD5Digest& digest);
68 // Returns the MD5 (in hexadecimal) of a string.
69 std::string MD5String(const std::string& str);
string_compare.h 21 #include <string>
33 // default implementation just does case insensitive string matching.
34 bool NaturalEquals(const std::string& a, const std::string& b) const;
40 bool NaturalLess(const std::string& a, const std::string& b) const;
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
mock_source.cc 19 #include <string>
28 void MockSource::Get(const std::string& key, const Callback& data_ready) const {
29 std::map<std::string, std::string>::const_iterator it = data_.find(key);
31 data_ready(success, key, success ? new std::string(it->second) : NULL);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.h 40 #include <string>
53 // return - SDP string serialized from the arguments.
54 std::string SdpSerialize(const JsepSessionDescription& jdesc);
56 // Serializes the passed in IceCandidateInterface to a SDP string.
58 std::string SdpSerializeCandidate(const IceCandidateInterface& candidate);
60 // Deserializes the passed in SDP string to a JsepSessionDescription.
61 // message - SDP string to be Deserialized.
62 // jdesc - The JsepSessionDescription deserialized from the SDP string.
65 bool SdpDeserialize(const std::string& message,
69 // Deserializes the passed in SDP string to one JsepIceCandidate
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
device.h 37 Device(const std::string& name, int id)
41 Device(const std::string& name, const std::string& id)
44 std::string name;
45 std::string id;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
mucroomconfigtask.h 31 #include <string>
42 const std::string& room_name,
43 const std::vector<std::string>& room_features);
57 static XmlElement* MakeRequest(const std::string& room_name,
58 const std::vector<std::string>& room_features);
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
phonenumber_offline_geocoder.h 21 #include <string>
32 using std::string;
46 typedef map<string, const AreaCodeMap*> AreaCodeMaps;
72 string GetDescriptionForValidNumber(const PhoneNumber& number,
93 string GetDescriptionForValidNumber(const PhoneNumber& number,
94 const Locale& language, const string& user_region) const;
98 string GetDescriptionForNumber(const PhoneNumber& number,
101 // As per GetDescriptionForValidNumber(PhoneNumber, Locale, String) but
102 string GetDescriptionForNumber(const PhoneNumber& number,
103 const Locale& language, const string& user_region) const
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
compiler.hpp 33 build_error(const compat::string &log) : log(log) {
39 compat::string what() {
47 module compile_program_llvm(const compat::string &source,
49 const compat::string &target);
51 module compile_program_tgsi(const compat::string &source);
  /external/chromium_org/third_party/webrtc/base/
helpers.h 14 #include <string>
26 // Generates a (cryptographically) random string of the given length.
29 std::string CreateRandomString(size_t length);
31 // Generates a (cryptographically) random string of the given length.
34 bool CreateRandomString(size_t length, std::string* str);
36 // Generates a (cryptographically) random string of the given length,
39 bool CreateRandomString(size_t length, const std::string& table,
40 std::string* str);
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/interface/
vie_autotest_main.h 14 #include <string>
27 std::map<int, std::string> index_to_test_method_map_;
35 int RunSpecificTestCaseIn(const std::string test_case_name);
43 int RunTestMatching(const std::string test_case,
44 const std::string test_method);
  /external/clang/test/SemaTemplate/
delegating-constructors.cpp 5 class string class in namespace:PR10457
7 string(const char* str, unsigned);
11 string(const char (&str)[N]) function in class:PR10457::string
12 : string(str) {} // expected-error{{constructor for 'string<6>' creates a delegation cycle}}
16 string s("hello");
  /external/compiler-rt/test/tsan/
ignore_lib2.cc 14 #include <string>
17 std::string lib0 = std::string(dirname(argv[0])) + "/libignore_lib2_0.so";
18 std::string lib1 = std::string(dirname(argv[0])) + "/libignore_lib2_1.so";
  /external/libcxx/test/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code_string.pass.cpp 14 // system_error(error_code ec, const string& what_arg);
19 #include <string>
24 std::string what_arg("test message");
27 std::string what_message(se.what());
28 assert(what_message.find(what_arg) != std::string::npos);
29 assert(what_message.find("Not a directory") != std::string::npos);
  /external/libcxx/test/strings/basic.string/string.modifiers/string_append/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.modifiers/string_append/Android.mk
19 test_name := strings/basic.string/string.modifiers/string_append/string
20 test_src := string.pass.cpp
23 test_name := strings/basic.string/string.modifiers/string_append/size_char
27 test_name := strings/basic.string/string.modifiers/string_append/pointe
    [all...]
  /external/libcxx/test/strings/basic.string/string.modifiers/string_assign/
Android.mk 17 test_makefile := external/libcxx/test/strings/basic.string/string.modifiers/string_assign/Android.mk
19 test_name := strings/basic.string/string.modifiers/string_assign/rv_string
23 test_name := strings/basic.string/string.modifiers/string_assign/string
24 test_src := string.pass.cpp
27 test_name := strings/basic.string/string.modifiers/string_assign/size_cha
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
compiler.hpp 33 build_error(const compat::string &log) : log(log) {
39 compat::string what() {
47 module compile_program_llvm(const compat::string &source,
49 const compat::string &target);
51 module compile_program_tgsi(const compat::string &source);
  /external/oprofile/pp/
opannotate_options.h 15 #include <string>
29 extern std::string output_dir;
30 extern std::vector<std::string> search_dirs;
31 extern std::vector<std::string> base_dirs;
32 extern std::vector<std::string> objdump_params;
  /external/chromium_org/chrome/browser/chromeos/settings/
token_encryptor.cc 26 const std::string& system_salt)
37 std::string CryptohomeTokenEncryptor::EncryptWithSystemSalt(
38 const std::string& token) {
45 return std::string();
52 std::string CryptohomeTokenEncryptor::DecryptWithSystemSalt(
53 const std::string& encrypted_token_hex) {
60 return std::string();
68 const std::string& passphrase,
69 const std::string& salt) {
74 std::string CryptohomeTokenEncryptor::EncryptTokenWithKey
    [all...]
  /external/chromium_org/extensions/common/
url_pattern.h 9 #include <string>
80 // The <all_urls> string pattern.
84 static bool IsValidSchemeForExtensions(const std::string& scheme);
88 // Convenience to construct a URLPattern from a string. If the string is not
90 URLPattern(int valid_schemes, const std::string& pattern);
99 // Initializes this instance by parsing the provided string. Returns
103 ParseResult Parse(const std::string& pattern_str);
109 // Gets the host the pattern matches. This can be an empty string if the
111 const std::string& host() const { return host_;
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_digest.h 8 #include <string>
31 virtual std::string GenerateNonce() const = 0;
41 virtual std::string GenerateNonce() const OVERRIDE;
46 // FixedNonceGenerator always uses the same string specified at
50 explicit FixedNonceGenerator(const std::string& nonce);
52 virtual std::string GenerateNonce() const OVERRIDE;
55 const std::string nonce_;
89 std::string* auth_token) OVERRIDE;
130 bool ParseChallengeProperty(const std::string& name,
131 const std::string& value)
    [all...]
  /external/jsoncpp/include/json/
writer.h 13 # include <string>
26 virtual std::string write( const Value &root ) = 0;
44 virtual std::string write( const Value &root );
49 std::string document_;
80 * \return String containing the JSON document that represents the root value.
82 virtual std::string write( const Value &root );
88 void pushValue( const std::string &value );
90 void writeWithIndent( const std::string &value );
96 static std::string normalizeEOL( const std::string &text )
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERGeneralString.java 12 private byte[] string; field in class:DERGeneralString
54 DERGeneralString(byte[] string)
56 this.string = string;
59 public DERGeneralString(String string)
61 this.string = Strings.toByteArray(string);
64 public String getString()
66 return Strings.fromByteArray(string);
    [all...]

Completed in 1952 milliseconds

<<31323334353637383940>>