Searched refs:string (Results 26 - 50 of 9301) sorted by relevance

1234567891011>>

/external/chromium/chrome/common/
H A Dguid.h9 #include <string>
17 // If GUID generation fails an empty string is returned.
20 std::string GenerateGUID();
22 // Returns true if the input string conforms to the GUID format.
23 bool IsValidGUID(const std::string& guid);
27 std::string RandomDataToGUIDString(const uint64 bytes[2]);
H A Dauto_start_linux.h9 #include <string>
17 static bool AddApplication(const std::string& autostart_filename,
18 const std::string& application_name,
19 const std::string& command_line,
22 static bool Remove(const std::string& autostart_filename);
24 static bool GetAutostartFileContents(const std::string& autostart_filename,
25 std::string* contents);
27 static bool GetAutostartFileValue(const std::string& autostart_filename,
28 const std::string& value_name,
29 std::string* valu
[all...]
/external/chromium/crypto/
H A Dsha2.h9 #include <string>
21 // Computes the SHA-256 hash of the input string 'str' and stores the first
24 void SHA256HashString(const std::string& str,
28 // string.
29 std::string SHA256HashString(const std::string& str);
/external/chromium/webkit/glue/
H A Duser_agent.h8 #include <string>
16 // - If mimic_windows is true, produce a fake Windows Chrome string.
17 void BuildUserAgent(bool mimic_windows, std::string* result);
19 // Builds a User-agent compatible string that describes the OS and CPU type.
20 std::string BuildOSCpuInfo();
23 std::string GetWebKitVersion();
/external/grub/stage2/
H A Dtparm.h27 char *grub_tparm (const char *string, ...);
/external/iproute2/genl/
H A Dstatic-syms.c1 #include <string.h>
/external/iproute2/ip/
H A Dstatic-syms.c1 #include <string.h>
/external/iproute2/tc/
H A Dstatic-syms.c1 #include <string.h>
/external/oprofile/libutil++/
H A Dfile_manip.h15 #include <string>
27 bool copy_file(std::string const & source, std::string const & destination);
30 bool is_directory(std::string const & dirname);
39 bool is_files_identical(std::string const & file1, std::string const & file2);
48 * Returns the original string on failure.
50 std::string const op_realpath(std::string const & name);
53 bool op_file_readable(std::string cons
[all...]
/external/v8/tools/
H A Dcsvparser.js53 * @param {string} line Input line.
64 if (typeof fieldMatch[1] === "string") {
70 // in the worst case the match will be an empty string.
/external/chromium/third_party/libjingle/source/talk/base/
H A Durlencode.h31 #include <string>
51 std::string UrlDecodeString(const std::string & encoded);
52 std::string UrlDecodeStringWithoutEncodingSpaceAsPlus(
53 const std::string & encoded);
54 std::string UrlEncodeString(const std::string & decoded);
55 std::string UrlEncodeStringWithoutEncodingSpaceAsPlus(
56 const std::string & decoded);
57 std::string UrlEncodeStringForOnlyUnsafeChar
[all...]
/external/oprofile/gui/
H A Doprof_start_util.h16 #include <string>
32 std::string const get_config_filename(std::string const & filename);
34 std::string const format(std::string const & orig, uint const maxlen);
35 int do_exec_command(std::string const & cmd, std::vector<std::string> const & args = std::vector<std::string>());
36 std::string const do_open_file_or_dir(std::string cons
[all...]
/external/srtp/test/
H A Dgetopt_s.c56 getopt_check_character(char c, const char *string) { argument
59 while (*string != 0) {
63 if (*string++ == c) {
64 if (*string == ':') {
81 char *string; local
83 /* move 'string' on to next argument */
85 string = argv[optind_s];
87 if (string == NULL)
88 return '?'; /* NULL argument string */
90 if (string[
[all...]
/external/chromium/chrome/browser/extensions/
H A Dkey_identifier_conversion_views.h12 #include <string>
18 const std::string& key_identifier);
/external/javasqlite/src/main/java/SQLite/
H A DException.java12 * @param string error message
15 public Exception(String string) { argument
16 super(string);
/external/openfst/src/include/fst/extensions/far/
H A Dmain.h29 FarEntryType StringToFarEntryType(const string &s);
30 FarTokenType StringToFarTokenType(const string &s);
33 FarType FarTypeFromString(const string &str);
36 string FarTypeToString(FarType type);
38 string LoadArcTypeFromFar(const string& far_fname);
39 string LoadArcTypeFromFst(const string& far_fname);
/external/proguard/src/proguard/util/
H A DEmptyStringMatcher.java32 public boolean matches(String string) argument
34 return string.length() == 0;
/external/stlport/test/unit/
H A Depilog_test.cpp2 #include <string>
7 std::string s; // if std not properly redefined, error will be here
/external/valgrind/tsan/
H A Dsuppressions.h44 // Read suppressions file from string. May be called several times.
46 int ReadFromString(const string &str);
48 // Returns the string describing the last error. Undefined if there was no
50 string GetErrorString();
56 bool StackTraceSuppressed(string tool_name, string warning_name,
57 const vector<string>& function_names_mangled,
58 const vector<string>& function_names_demangled,
59 const vector<string>& object_names,
60 string *name_of_suppressio
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3string.c2 * 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
239 stringFree(pANTLR3_STRING string) argument
260 stringInit8(pANTLR3_STRING string) argument
297 stringInitUTF16(pANTLR3_STRING string) argument
335 stringInitUTF8(pANTLR3_STRING string) argument
349 toUTF8_8(pANTLR3_STRING string) argument
360 toUTF8_UTF16(pANTLR3_STRING string) argument
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
632 destroy(pANTLR3_STRING_FACTORY factory, pANTLR3_STRING string) argument
679 pANTLR3_STRING string; local
726 pANTLR3_STRING string; local
795 append8(pANTLR3_STRING string, const char * newbit) argument
816 appendUTF16_8(pANTLR3_STRING string, const char * newbit) argument
843 appendUTF16_UTF16(pANTLR3_STRING string, const char * newbit) argument
873 set8(pANTLR3_STRING string, const char * chars) argument
894 setUTF16_8(pANTLR3_STRING string, const char * chars) argument
919 setUTF16_UTF16(pANTLR3_STRING string, const char * chars) argument
950 addc8(pANTLR3_STRING string, ANTLR3_UINT32 c) argument
965 addcUTF16(pANTLR3_STRING string, ANTLR3_UINT32 c) argument
984 addi8(pANTLR3_STRING string, ANTLR3_INT32 i) argument
993 addiUTF16(pANTLR3_STRING string, ANTLR3_INT32 i) argument
1003 inserti8(pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i) argument
1011 insertiUTF16(pANTLR3_STRING string, ANTLR3_UINT32 point, ANTLR3_INT32 i) argument
1020 insert8(pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) argument
1056 insertUTF16_8(pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) argument
1096 insertUTF16_UTF16(pANTLR3_STRING string, ANTLR3_UINT32 point, const char * newbit) argument
1141 setS(pANTLR3_STRING string, pANTLR3_STRING chars) argument
1146 appendS(pANTLR3_STRING string, pANTLR3_STRING newbit) argument
1160 insertS(pANTLR3_STRING string, ANTLR3_UINT32 point, pANTLR3_STRING newbit) argument
1169 compare8(pANTLR3_STRING string, const char * compStr) argument
1179 compareUTF16_8(pANTLR3_STRING string, const char * compStr) argument
1208 compareUTF16_UTF16(pANTLR3_STRING string, const char * compStr8) argument
1238 compareS(pANTLR3_STRING string, pANTLR3_STRING compStr) argument
1248 charAt8(pANTLR3_STRING string, ANTLR3_UINT32 offset) argument
1264 charAtUTF16(pANTLR3_STRING string, ANTLR3_UINT32 offset) argument
1280 subString8(pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex) argument
1297 subStringUTF16(pANTLR3_STRING string, ANTLR3_UINT32 startIndex, ANTLR3_UINT32 endIndex) argument
1313 toInt32_8(struct ANTLR3_STRING_struct * string) argument
1321 toInt32_UTF16(struct ANTLR3_STRING_struct * string) argument
1355 to8_8(pANTLR3_STRING string) argument
1365 to8_UTF16(pANTLR3_STRING string) argument
[all...]
/external/chromium/net/server/
H A Dhttp_server_request_info.h10 #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/
H A Dhttp_server_response_info.h10 #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/chrome/common/extensions/
H A Dextension_error_utils.cc9 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 ExtensionErrorUtil
[all...]
/external/oprofile/libpp/
H A Dlocate_images.h15 #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 cons
[all...]
/external/protobuf/src/google/protobuf/testing/
H A Dfile.h49 static bool Exists(const string& name);
51 // Read an entire file to a string. Return true if successful, false
53 static bool ReadFileToString(const string& name, string* output);
56 static void ReadFileToStringOrDie(const string& name, string* output);
58 // Create a file and write a string to it.
59 static void WriteStringToFileOrDie(const string& contents,
60 const string& name);
63 static bool CreateDir(const string
[all...]

Completed in 684 milliseconds

1234567891011>>