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

<<11121314151617181920>>

  /external/chromium_org/sdch/open-vcdiff/src/
encodetable_test.cc 20 #include <string.h> // strlen
22 #include <string>
35 typedef std::string string; typedef in class:open_vcdiff::__anon12341::CodeTableWriterTest
109 EXPECT_EQ(s, string(out.data() + out_index, size));
142 string out;
143 OutputString<string> output_string;
headerparser_test.cc 19 #include <string>
31 typedef std::string string; typedef in class:open_vcdiff::__anon12342::VCDiffHeaderParserTest
92 string encoded_buffer_;
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_dependencies.py 35 import string namespace
133 parts = string.split(match.group(1), ',')
135 key, _, value = map(string.strip, part.partition('='))
342 idl_files.append(string.rstrip(line, '\n'))
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptValue.cpp 65 bool ScriptValue::getString(String& result, v8::Isolate* isolate) const
71 v8::Handle<v8::Value> string = v8Value(); local
72 if (string.IsEmpty() || !string->IsString())
74 result = toWebCoreString(string);
78 String ScriptValue::toString(ScriptState*) const
81 v8::Handle<v8::String> string = v8Value()->ToString(); local
83 return String();
84 return v8StringToWebCoreString<String>(string, DoNotExternalize)
    [all...]
V8StringResource.cpp 35 WebCoreStringResourceBase* WebCoreStringResourceBase::toWebCoreStringResourceBase(v8::Handle<v8::String> string)
37 v8::String::Encoding encoding;
38 v8::String::ExternalStringResourceBase* resource = string->GetExternalStringResourceBase(&encoding);
41 if (encoding == v8::String::ONE_BYTE_ENCODING)
56 static StringClass fromV8String(v8::Handle<v8::String>, int);
60 struct StringTraits<String> {
61 static const String& fromStringResource(WebCoreStringResourceBase* resource)
66 static String fromV8String(v8::Handle<v8::String>, int)
126 String string = String::createUninitialized(length, buffer); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInstrumentation.py 32 import string namespace
35 template_h = string.Template("""// Code generated from InspectorInstrumentation.idl
54 template_inline = string.Template("""
62 template_inline_forward = string.Template("""
69 template_inline_returns_value = string.Template("""
79 template_cpp = string.Template("""// Code generated from InspectorInstrumentation.idl
96 template_outofline = string.Template("""
101 template_agent_call = string.Template("""
105 template_agent_call_timeline_returns_cookie = string.Template("""
113 template_instrumenting_agents_h = string.Template("""// Code generated from InspectorInstrumentation.id
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PODIntervalTree.h 241 String localMaxValueString = ValueToString<T>::string(localMaxValue);
257 static String string(const PODInterval<T, UserData>& interval) function in struct:WebCore::ValueToString
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
DateTimeFormatTest.cpp 41 String string; member in struct:DateTimeFormatTest::Token
52 Token(const String& string)
53 : string(string)
61 return fieldType == other.fieldType && count == other.count && string == other.string;
64 String toString() const
72 builder.append(string);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
break_lines.cpp 187 String string = lazyBreakIterator.string(); local
188 if (string.is8Bit())
189 return nextBreakablePosition<LChar, false>(lazyBreakIterator, string.characters8(), string.length(), pos);
190 return nextBreakablePosition<UChar, false>(lazyBreakIterator, string.characters16(), string.length(), pos);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedType.h 58 static PassOwnPtr<SVGAnimatedType> createString(String*);
155 const String& string() const function in class:WebCore::SVGAnimatedType
158 return *m_data.string;
258 String& string() function in class:WebCore::SVGAnimatedType
261 return *m_data.string;
270 String valueAsString();
271 bool setValueAsString(const QualifiedName&, const String&);
299 String* string member in union:WebCore::SVGAnimatedType::DataUnion
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/tests/
PODIntervalTreeTest.cpp 47 static String string(const float& value) { return String::number(value); } function in struct:WebCore::ValueToString
52 static String string(void* const& value) function in struct:WebCore::ValueToString
54 return String::format("0x%p", value);
93 static String string(int* const& value) function in struct:WebCore::ValueToString
95 return String::format("0x%p", value);
136 static String string(const UserData1& value function in struct:WebCore::ValueToString
193 static String string(const EndpointType1& value) function in struct:WebCore::ValueToString
214 static String string(const int& value) { return String::number(value); } function in struct:WebCore::ValueToString
    [all...]
  /external/chromium_org/third_party/WebKit/Source/weborigin/
KURL.h 57 // The argument is an absolute URL string. The string is assumed to be
58 // output of KURL::string() called on a valid KURL object, or indiscernible
59 // from such. It is usually best to avoid repeatedly parsing a string,
61 KURL(ParsedURLStringTag, const String&);
65 static KURL createIsolated(ParsedURLStringTag, const String&);
67 bool isHashTableDeletedValue() const { return string().isHashTableDeletedValue(); }
76 KURL(const KURL& base, const String& relative);
77 KURL(const KURL& base, const String& relative, const WTF::TextEncoding&);
84 String strippedForUseAsReferrer() const
111 const String& string() const { return m_string; } function in class:WebCore::KURL
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecLatin1.cpp 121 String TextCodecLatin1::decode(const char* bytes, size_t length, bool, bool, bool&)
126 String result = String::createUninitialized(length, characters);
168 String result16 = String::createUninitialized(length, characters16);
253 CString string = CString::newUninitialized(length, bytes); local
255 // Convert the string a fast way and simultaneously do an efficient check to see if it's all ASCII.
264 return string;
  /external/chromium_org/third_party/icu/source/i18n/
coleitr.cpp 71 * Get the ordering priority of the next character in the string.
73 * occured or if the end of string has been reached
100 // and we only compare the string not the contents of the normalization
102 int thislength = (int)(m_data_->iteratordata_.endp - m_data_->iteratordata_.string);
103 int thatlength = (int)(that.m_data_->iteratordata_.endp - that.m_data_->iteratordata_.string);
109 if (uprv_memcmp(m_data_->iteratordata_.string,
110 that.m_data_->iteratordata_.string,
142 * Get the ordering priority of the previous collation element in the string.
145 * occured or if the start of string has been reached.
153 * Resets the cursor to the beginning of the string
177 UChar *string = NULL; local
238 UnicodeString string; local
285 UChar *string = NULL; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
check-xinclude-test-suite.py 5 import string namespace
34 if string.find(str, "error:") >= 0:
88 output = test.xpathEval('string(output)')
157 content = string.strip(test.content)
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 34 import string namespace
159 if len(node.value) >= 4096 or node.value.strip(string.printable):
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
glX_proto_recv.py 29 import sys, getopt, string namespace
242 print string.join( list, ",\n" )
typeexpr.py 28 import string, copy namespace
45 def string(self): member in class:type_node
46 """Return string representation of this type_node."""
126 # Replace '*' with ' * ' in type_string. Then, split the string
128 tokens = string.split( string.replace( type_string, "*", " * " ) )
221 def string(self): member in class:type_expression
224 s += t.string()
292 print 'Got "%s" (%u, %u).' % (te.string(), te.get_stack_size(), te.get_element_size())
  /external/chromium_org/third_party/pexpect/
FSM.py 151 You can pass a list or a string. Note that it is handy to use
152 string.digits, string.whitespace, string.letters, etc. to add
236 (or a string) by calling process_list(). """
248 be a string or any iterable object. """
267 import sys, os, traceback, optparse, time, string namespace
315 f.add_transition_list (string.digits, 'INIT', BeginBuildNumber, 'BUILDING_NUMBER')
316 f.add_transition_list (string.digits, 'BUILDING_NUMBER', BuildNumber, 'BUILDING_NUMBER')
317 f.add_transition_list (string.whitespace, 'BUILDING_NUMBER', EndBuildNumber, 'INIT'
    [all...]
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_name.cpp 515 const uint16_t* string = SkTAddOffset<const uint16_t>(stringTable, offset); local
516 SkStringFromUTF16BE(string, length, record.language);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
lexer.py 12 import string namespace
94 ident_chars0 = string.letters+"_"
95 ident_chars1 = string.letters+string.digits+"_"
125 ident_chars0 = string.letters+"_"
126 ident_chars1 = string.letters+string.digits+"_"
217 "Return helpful error string :)"
node.py 11 import string namespace
148 s = "%s(%s)"%(self.__class__.__name__,nl+string.join(s,","+nl))
  /external/chromium_org/tools/gyp/pylib/gyp/
mac_tool.py 16 import string namespace
33 """Dispatches a string command to a method."""
134 lines = string.replace(lines, evar, os.environ[key])
139 if lines[i].strip().startswith("<string>${"):
  /external/chromium_org/tools/site_compare/drivers/win32/
windowing.py 15 import string namespace
313 extension: string to append to filename
318 trans = string.maketrans(r'\/:*?"<>|', '_________')
  /external/chromium_org/ui/base/l10n/
l10n_util_unittest.cc 40 explicit StringWrapper(const string16& string) : string_(string) {}
41 const string16& string() const { return string_; } function in class:__anon16627::StringWrapper
57 std::string s = l10n_util::GetStringUTF8(IDS_SIMPLE);
58 EXPECT_EQ(std::string("Hello World!"), s);
63 EXPECT_EQ(std::string("Hello, chrome. Your number is 10."), s);
80 void SetDefaultLocaleForTest(const std::string& tag, base::Environment* env) {
96 std::string filenames[] = {
119 const std::string original_locale = base::i18n::GetConfiguredLocale();
127 EXPECT_EQ("fr", l10n_util::GetApplicationLocale(std::string()));
    [all...]

Completed in 1305 milliseconds

<<11121314151617181920>>