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

1 2 3 4 56 7 8 91011>>

  /external/chromium/testing/
generate_gmock_mutant.py 6 import string namespace
44 // MOCK_METHOD2(string, OnRequest(int n, const string& request));
46 // MOCK_METHOD2(void, LogMessage(int level, const string& message));
48 // string HandleFlowers(const string& reply, int n, const string& request) {
49 // string result = SStringPrintf("In request of %d %s ", n, request);
54 // void DoLogMessage(int level, const string& message) {
71 // string("orchids"))))
    [all...]
  /external/chromium_org/cc/
PRESUBMIT.py 12 import string namespace
156 string.join(pass_by_value_types, '|'),
  /external/chromium_org/chrome/common/extensions/docs/server2/
reference_resolver.py 8 import string namespace
  /external/chromium_org/content/common/indexed_db/
indexed_db_param_traits.cc 7 #include <string>
39 WriteParam(m, p.string());
73 string16 string; local
74 if (!ReadParam(m, iter, &string))
76 *r = IndexedDBKey(string);
99 void ParamTraits<IndexedDBKey>::Log(const param_type& p, std::string* l) {
112 LogParam(p.string(), l);
127 WriteParam(m, p.string());
151 string16 string; local
152 if (!ReadParam(m, iter, &string))
    [all...]
  /external/chromium_org/content/common/mac/
attributed_string_coder.h 65 explicit EncodedString(string16 string);
70 string16 string() const { return string_; } function in class:mac::AttributedStringCoder::EncodedString
77 // The plain-text string.
105 static void Log(const param_type& p, std::string* l);
113 static void Log(const param_type& p, std::string* l);
  /external/chromium_org/content/renderer/
text_input_client_observer.cc 71 NSAttributedString* string = nil; local
74 string = WebKit::WebSubstringUtil::attributedSubstringInRange(
78 mac::AttributedStringCoder::Encode(string));
  /external/chromium_org/ppapi/c/documentation/
doxy_cleanup.py 15 import string namespace
61 tag.string = tag.td.h2.a.next
69 print "Header tag: %s is %s" % (tag.name, tag.string.strip())
72 print "Splitting Table named %s" % tag.string.strip()
  /external/chromium_org/ppapi/cpp/documentation/
doxy_cleanup.py 14 import string namespace
60 tag.string = tag.td.h2.a.next
68 print "Header tag: %s is %s" % (tag.name, tag.string.strip())
71 print "Splitting Table named %s" % tag.string.strip()
  /external/chromium_org/ppapi/proxy/
url_request_info_resource.cc 61 StringVar* string = StringVar::FromPPVar(var); local
62 if (string)
63 result = PP_FromBool(SetStringProperty(property, string->value()));
76 std::string(static_cast<const char*>(data), len)));
118 data_.custom_referrer_url = std::string();
122 data_.custom_content_transfer_encoding = std::string();
126 data_.custom_user_agent = std::string();
183 const std::string& value) {
  /external/chromium_org/remoting/tools/
json_to_grd.py 12 import string namespace
22 for c in string.ascii_uppercase:
51 # load list of string IDs and placeholder names from the untranslated file
99 # Uppercase all string name.
  /external/chromium_org/rlz/lib/
crc8_unittest.cc 15 char string[10]; member in struct:Data
35 bytes = reinterpret_cast<unsigned char*>(data[i].string);
38 length = strlen(data[i].string);
46 // Corrupt string and see if CRC still matches.
47 data[i].string[data[i].random_byte] = data[i].corrupt_value;
  /external/chromium_org/sdch/open-vcdiff/src/google/
vcdecoder.h 20 #include <string>
143 typedef std::string string; typedef in class:open_vcdiff::VCDiffDecoder
159 const string& encoding,
171 const string& encoding,
  /external/chromium_org/sdch/open-vcdiff/src/
output_string_test.cc 17 #include <string>
31 typedef std::string string; typedef in class:open_vcdiff::__anon12345::OutputStringTest
38 string string_;
39 OutputString<string> output_string_;
  /external/chromium_org/testing/
generate_gmock_mutant.py 6 import string namespace
45 // MOCK_METHOD2(string, OnRequest(int n, const string& request));
47 // MOCK_METHOD2(void, LogMessage(int level, const string& message));
49 // string HandleFlowers(const string& reply, int n, const string& request) {
50 // string result = SStringPrintf("In request of %d %s ", n, request);
55 // void DoLogMessage(int level, const string& message) {
72 // string("orchids"))))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
NPV8Object.h 61 const NPUTF8* string; member in union:WebCore::PrivateIdentifier::__anon12543
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
StringWithDirection.h 39 // In some circumstances we want to store a String along with the TextDirection
40 // of the String as learned from the context of the String. For example,
44 // Note that is explicitly *not* the direction of the string as learned
45 // from the characters of the string; it's extra metadata we have external
46 // to the string.
54 StringWithDirection(const String& string, TextDirection dir)
55 : m_string(string)
60 const String& string() const { return m_string; function in class:WebCore::StringWithDirection
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyPath.cpp 45 Vector<String> strings;
86 WebString WebIDBKeyPath::string() const function in class:WebKit::WebIDBKeyPath
90 return m_private->string();
  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
CString.cpp 35 CString string; local
36 ASSERT_TRUE(string.isNull());
37 ASSERT_EQ(string.data(), static_cast<const char*>(0));
38 ASSERT_EQ(string.length(), static_cast<size_t>(0));
54 CString string(emptyString);
55 ASSERT_FALSE(string.isNull());
56 ASSERT_EQ(string.length(), static_cast<size_t>(0));
57 ASSERT_EQ(string.data()[0], 0);
69 CString string(referenceString);
70 ASSERT_FALSE(string.isNull())
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebCString.h 41 #include <string>
53 // A single-byte string container with unspecified encoding. It is
78 // first character that does not match has a greater value in this string
99 WebCString(const std::string& s)
104 WebCString& operator=(const std::string& s)
111 operator std::string() const
114 return len ? std::string(data(), len) : std::string();
WebThreadSafeData.h 38 #include <string>
64 operator std::string() const
67 return len ? std::string(data(), len) : std::string();
  /external/chromium_org/third_party/WebKit/public/web/
WebContentDetectionResult.h 42 WebContentDetectionResult(const WebRange& range, const WebString& string, const WebURL& intent)
45 , m_string(string)
52 const WebString& string() const { return m_string; } function in class:WebKit::WebContentDetectionResult
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
Input.h 21 Input(size_t count, const char* const string[], const int length[]);
24 const char* string(size_t index) const { return mString[index]; } function in class:pp::Input
31 size_t sIndex; // String index;
  /external/chromium_org/third_party/freetype/include/freetype/
ftsnames.h 72 /* platform_id :: The platform ID for `string'. */
74 /* encoding_id :: The encoding ID for `string'. */
76 /* language_id :: The language ID for `string'. */
78 /* name_id :: An identifier for `string'. */
80 /* string :: The `name' string. Note that its format differs */
82 /* be a Pascal String, a UTF-16 one, etc. */
84 /* Generally speaking, the string is not */
88 /* string_len :: The length of `string' in bytes. */
105 FT_Byte* string; /* this string is *not* null-terminated! * member in struct:FT_SfntName_
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
extension_helper.py 30 import sys, getopt, string namespace
172 print '#if %s' % (string.join(condition, " || "))
257 condition_string = string.join(condition, " || ")
remap_helper.py 29 import sys, getopt, string namespace
52 # spec is terminated by an empty string
85 # output string pool

Completed in 2082 milliseconds

1 2 3 4 56 7 8 91011>>