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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/extensions/browser/
granted_file_entry.h 8 #include <string>
17 std::string id;
18 std::string filesystem_id;
19 std::string registered_name;
  /external/chromium_org/extensions/browser/value_store/
value_store_util.h 8 #include <string>
17 scoped_ptr<std::string> NewKey(const std::string& key);
21 scoped_ptr<std::string> NoKey();
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/
memory.h 8 #include <string.h>
  /external/chromium_org/net/base/
data_url.h 8 #include <string>
60 std::string* mime_type,
61 std::string* charset,
62 std::string* data);
  /external/chromium_org/net/http/
http_log_util.h 8 #include <string>
17 NET_EXPORT_PRIVATE std::string ElideHeaderValueForNetLog(
19 const std::string& header,
20 const std::string& value);
  /external/chromium_org/ppapi/tests/
test_pdf.h 8 #include <string>
18 virtual void RunTests(const std::string& filter);
21 std::string TestGetLocalizedString();
22 std::string TestGetResourceImage();
test_x509_certificate_private.h 8 #include <string>
18 virtual void RunTests(const std::string& filter);
21 std::string TestValidCertificate();
22 std::string TestInvalidCertificate();
  /external/chromium_org/rlz/lib/
assert.cc 12 std::string expected_assertion_;
  /external/chromium_org/third_party/WebKit/Source/core/testing/
RefCountedScriptWrappable.cpp 10 RefCountedScriptWrappable::RefCountedScriptWrappable(const String& string)
11 : m_string(string)
19 PassRefPtr<RefCountedScriptWrappable> RefCountedScriptWrappable::create(const String& string)
21 return adoptRef(new RefCountedScriptWrappable(string));
  /external/chromium_org/third_party/icu/source/common/unicode/
std_string.h 22 * \brief C++ API: Central ICU header for including the C++ standard &lt;string&gt;
30 #include <string>
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
string_util.h 11 // std::string.
16 #include <string>
22 std::string DoReplaceStringPlaceholders(const std::string& format_string,
23 const std::vector<std::string>& subst);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_maos.c 7 #include <string.h>
  /external/chromium_org/tools/clang/empty_string/tests/
test-expected.cc 5 // Test file for the empty string clang tool.
7 #include <string>
9 // Tests for std::string declarations.
11 std::string a, b("abc"), c;
14 // Tests for std::string allocated with new.
16 std::string* a = new std::string, *b = new std::string("abc"),
17 *c = new std::string, *d = new std::string();
    [all...]
  /external/chromium_org/ui/gfx/
font_fallback_mac.cc 7 #include <string>
14 std::vector<std::string> GetFallbackFontFamilies(
15 const std::string& font_family) {
17 return std::vector<std::string>(1, font_family);
  /external/iproute2/genl/
static-syms.c 1 #include <string.h>
  /external/iproute2/ip/
static-syms.c 1 #include <string.h>
  /external/iproute2/tc/
static-syms.c 1 #include <string.h>
  /external/kernel-headers/original/uapi/linux/
string.h 7 #include <string.h>
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_maos.c 7 #include <string.h>
  /external/oprofile/libutil++/
file_manip.h 15 #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 const & file)
    [all...]
  /external/chromium_org/components/search_engines/
search_terms_data.h 8 #include <string>
23 virtual std::string GoogleBaseURLValue() const;
27 std::string GoogleBaseSuggestURLValue() const;
31 virtual std::string GetApplicationLocale() const;
34 // the empty string.
38 // implementation returns the empty string.
39 virtual std::string GetSearchClient() const;
43 // This implementation returns the empty string.
44 virtual std::string GetSuggestClient() const;
49 // This implementation returns the empty string
    [all...]
  /external/chromium_org/components/translate/core/language_detection/
language_detection_util.h 8 #include <string>
15 std::string DeterminePageLanguage(const std::string& code,
16 const std::string& html_lang,
18 std::string* cld_language,
23 void CorrectLanguageCodeTypo(std::string* code);
27 bool IsValidLanguageCode(const std::string& code);
33 bool IsSameOrSimilarLanguages(const std::string& page_language,
34 const std::string& cld_language);
39 bool MaybeServerWrongConfiguration(const std::string& page_language
    [all...]
  /external/chromium_org/gpu/command_buffer/common/
debug_marker_manager.h 9 #include <string>
22 const std::string& GetMarker() const;
24 void SetMarker(const std::string& marker);
26 void PushGroup(const std::string& name);
34 explicit Group(const std::string& name);
37 const std::string& name() const {
41 void SetMarker(const std::string& marker);
43 const std::string& marker() const {
48 std::string name_;
49 std::string marker_
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
mapping_file_provider.h 20 #include <string>
27 using std::string;
48 // country_calling_code in the language specified, or an empty string if no
54 const string& GetFileName(int country_calling_code, const string& language,
55 const string& script, const string& region, string*
60 const string& language,
61 const string& script
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/test/
getopt_s.c 56 getopt_check_character(char c, const char *string) {
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[0] != '-'
    [all...]

Completed in 2169 milliseconds

1 2 3 4 56 7 8 91011>>