Searched refs:string (Results 151 - 175 of 9301) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/sync/util/
H A Ddata_encryption.h9 #include <string>
14 using std::string;
17 vector<uint8> EncryptData(const string& data);
18 bool DecryptData(const vector<uint8>& in_data, string* out_data);
H A Dnigori.h9 #include <string>
35 bool InitByDerivation(const std::string& hostname,
36 const std::string& username,
37 const std::string& password);
41 bool InitByImport(const std::string& user_key,
42 const std::string& encryption_key,
43 const std::string& mac_key);
49 bool Permute(Type type, const std::string& name, std::string* permuted) const;
53 bool Encrypt(const std::string
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dsync_internals_html_source.h9 #include <string>
19 virtual void StartDataRequest(const std::string& path,
22 virtual std::string GetMimeType(const std::string& path) const;
/external/chromium/chrome/common/
H A Dchrome_version_info.h9 #include <string>
27 // the empty string in this case, so it's not harmful if you don't
32 std::string Name() const;
35 std::string Version() const;
38 std::string LastChange() const;
/external/chromium/net/base/
H A Ddata_url.h9 #include <string>
46 std::string* mime_type,
47 std::string* charset,
48 std::string* data);
H A Dmime_sniffer.h9 #include <string>
27 bool ShouldSniffMimeType(const GURL& url, const std::string& mime_type);
39 const GURL& url, const std::string& type_hint,
40 std::string* result);
/external/chromium/testing/gtest/xcode/Samples/FrameworkSample/
H A Dwidget.h37 // simply stores two values a string and an integer, which are returned via
40 #import <string>
44 Widget(int number, const std::string& name);
51 // Public accessors to the string data
52 std::string GetStringValue() const;
58 std::string name_;
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dsaslhandler.h31 #include <string>
48 // returns the empty string if none are suitable
49 virtual std::string ChooseBestSaslMechanism(const std::vector<std::string> & mechanisms, bool encrypted) = 0;
54 virtual SaslMechanism * CreateSaslMechanism(const std::string & mechanism) = 0;
/external/chromium/webkit/glue/
H A Dglue_serialize.h7 // In serialization, we write an object's state to a string in some opaque
8 // format. Deserialization reconstructs the object's state from such a string.
13 #include <string>
19 std::string HistoryItemToString(
22 const std::string& serialized_item);
27 std::string* serialized_item);
H A Dwebkit_glue_dummy.cc16 void SetUserAgent(const std::string& new_user_agent) {
/external/elfutils/libelf/
H A Delf_gnu_hash.c61 elf_gnu_hash (string)
62 const char *string;
65 for (unsigned char c = *string; c != '\0'; c = *++string)
/external/llvm/lib/Target/MSP430/
H A DMSP430Subtarget.cpp26 MSP430Subtarget::MSP430Subtarget(const std::string &TT,
27 const std::string &CPU,
28 const std::string &FS) :
30 std::string CPUName = "generic";
32 // Parse features string.
H A DMSP430Subtarget.h18 #include <string>
33 MSP430Subtarget(const std::string &TT, const std::string &CPU,
34 const std::string &FS);
36 /// ParseSubtargetFeatures - Parses features string setting specified
/external/llvm/lib/Target/XCore/
H A DXCoreSubtarget.h19 #include <string>
34 XCoreSubtarget(const std::string &TT, const std::string &CPU,
35 const std::string &FS);
37 /// ParseSubtargetFeatures - Parses features string setting specified
/external/lohit-fonts/lohit-kannada-ttf/
H A D66-lohit-kannada.conf6 <string>kn-in</string>
9 <string>sans-serif</string>
12 <string>Lohit Kannada</string>
17 <string>Lohit Kannada</string>
/external/lohit-fonts/lohit-telugu-ttf/
H A D66-lohit-telugu.conf6 <string>te</string>
9 <string>sans-serif</string>
12 <string>Lohit Telugu</string>
17 <string>Lohit Telugu</string>
/external/openfst/src/include/fst/script/
H A Dtext-io.h28 #include <string>
40 bool ReadPotentials(const string &weight_type,
41 const string& filename,
44 bool WritePotentials(const string& filename,
/external/proguard/src/proguard/util/
H A DStringMatcher.java33 * Checks whether the given string matches.
34 * @param string the string to match.
35 * @return a boolean indicating whether the string matches the criterion.
37 public boolean matches(String string); argument
/external/protobuf/gtest/xcode/Samples/FrameworkSample/
H A Dwidget.h37 // simply stores two values a string and an integer, which are returned via
40 #import <string>
44 Widget(int number, const std::string& name);
51 // Public accessors to the string data
52 std::string GetStringValue() const;
58 std::string name_;
/external/stressapptest/src/
H A Dos_factory.cc21 #include <string.h>
24 #include <string>
30 OsLayer *OsLayerFactory(const std::map<std::string, std::string> &options) {
/external/v8/test/mjsunit/
H A Dregexp-standalones.js34 var string = 'aaa\n789\r\nccc\r\n345'; variable
36 var result = string.match(pattern);
42 result = string.match(pattern);
47 string = 'aaa\n789\r\nccc\r\nddd';
49 result = string.match(pattern);
54 result = string.match(pattern);
60 string = '\u00BF\u00CD\u00BB\u00A7';
61 result = string.match(pattern);
63 assertEquals(string, result[0], "12");
65 string
[all...]
/external/valgrind/tsan/
H A Dignore.h9 string fun;
10 string obj;
11 string file;
13 IgnoreTriple(string ifun, string iobj, string ifile) : fun(ifun) {
21 IgnoreObj(string obj) : IgnoreTriple("*", obj, "*") {}
25 IgnoreFun(string fun) : IgnoreTriple(fun, "*", "*") {}
29 IgnoreFile(string file) : IgnoreTriple("*", "*", file) {}
39 extern vector<string> *g_ignore_ob
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
H A Dsplit-001.js35 // separator is an empty string
42 // string is an empty string
43 // if separator is an empty string, split each by character
54 function AddSplitCases( string, separator, str_sep, split_array ) {
58 "( " + string + " ).split(" + str_sep +").constructor == Array",
60 string.split(separator).constructor == Array );
64 "( " + string + " ).split(" + str_sep +").length",
66 string.split(separator).length );
69 var limit = (split_array.length > string
[all...]
/external/webkit/Source/WebCore/platform/chromium/
H A DFileChooserChromium.cpp41 String string;
43 string = fileButtonNoFileSelectedLabel();
45 string = pathGetDisplayFileName(m_filenames[0]);
49 return StringTruncator::centerTruncate(string, static_cast<float>(width), font);
/external/webkit/Source/WebCore/platform/efl/
H A DFileChooserEfl.cpp43 String string;
45 string = fileButtonNoFileSelectedLabel();
47 string = m_filenames[0];
51 return StringTruncator::centerTruncate(string, static_cast<float>(width), font);

Completed in 2347 milliseconds

1234567891011>>