HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 426 - 450 of 1699) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegList.cpp 68 PassRefPtr<SVGPropertyBase> SVGPathSegList::cloneForAnimation(const String& value) const
146 String SVGPathSegList::valueAsString() const
148 String string; local
149 buildStringFromByteStream(byteStream(), string, UnalteredParsing); local
150 return string;
153 void SVGPathSegList::setValueAsString(const String& string, ExceptionState& exceptionState)
158 if (!buildSVGPathByteStreamFromString(string, m_byteStream.get(), UnalteredParsing))
159 exceptionState.throwDOMException(SyntaxError, "Problem parsing path \"" + string + "\"")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 33 import string namespace
75 elif json_type == "string":
76 return "string"
172 backend_js = string.Template(file_header_ + """
195 if "type" in json_type and json_type["type"] == "string" and "enum" in json_type:
201 if "type" in json_property and json_property["type"] == "string" and "enum" in json_property:
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKey.h 56 static IDBKey* createString(const String& string)
58 return new IDBKey(string);
124 const String& string() const function in class:WebCore::IDBKey
149 explicit IDBKey(const String& value) : m_type(StringType), m_string(value), m_number(0) { }
156 const String m_string;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPolygon.h 143 static String string(const float value) { return String::number(value); } function in struct:WebCore::ValueToString
147 static String string(const FloatPolygonEdge* edge) { return String::format("%p (%f,%f %f,%f)", edge, edge->vertex1().x(), edge->vertex1().y(), edge->vertex2().x(), edge->vertex2().y()); } function in struct:WebCore::ValueToString
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBreakIterator.h 43 PLATFORM_EXPORT TextBreakIterator* wordBreakIterator(const String&, int start, int length);
64 LazyLineBreakIterator(String string, const AtomicString& locale = AtomicString())
65 : m_string(string)
80 String string() const { return m_string; } function in class:WebCore::LazyLineBreakIterator
128 // initialized to use the previously stored string as the primary breaking context and using
148 void resetStringAndReleaseIterator(String string, const AtomicString& locale)
153 m_string = string;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKey.cpp 51 WebIDBKey WebIDBKey::createString(const WebString& string)
54 key.assignString(string);
104 keys.append(IDBKey::createString(array[i].string()));
139 keys[i] = WebIDBKey::createString(key->string());
168 void WebIDBKey::assignString(const WebString& string)
170 m_private = IDBKey::createString(string);
224 WebString WebIDBKey::string() const function in class:blink::WebIDBKey
226 return m_private->string();
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 24 import string namespace
64 string output of command
85 string output of command
189 instrumentation_path: string. It should be the fully classified package
267 """Returns a string of adb command that will be executed."""
305 if ls_response.strip("#").strip(string.whitespace) != "":
393 expected: the string that should appear to consider the
  /external/chromium_org/third_party/icu/source/test/intltest/
tsdate.cpp 151 UnicodeString string[DEPTH]; local
162 fFormat->format(theDate, string[0]);
167 date[i] = fFormat->parse(string[i-1], status);
171 errln("**** FAIL: Parse of " + prettify(string[i-1], FALSE) + " failed.");
175 fFormat->format(date[i], string[i]);
181 errln("**** FAIL: Date mismatch after match for " + string[i]);
185 if (stringMatch == 0 && string[i] == string[i-1])
187 else if (stringMatch > 0 && string[i] != string[i-1]
    [all...]
tsnmfmt.cpp 275 UnicodeString string[DEPTH]; local
285 string[i] = "(n/a)"; // "format was never done" value
289 fFormat->parse(string[i-1], number[i], status);
292 errMsg = "**** FAIL: Parse of " + prettify(string[i-1]) + " failed.";
304 errMsg = ("**** FAIL: Parse of " + prettify(string[i-1])
310 string[i].truncate(0);
311 fFormat->format(number[i].getDouble(), string[i]);
321 if (stringMatch == 0 && string[i] == string[i-1])
323 else if (stringMatch > 0 && string[i] != string[i-1]
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
JsoMap.java 33 * Construct a JsoMap object given some json text. This method directly evaluates the String
40 static JsoMap buildJsoMap(String json) throws JSONException {
63 private JsoMap(JSONObject copyFrom, String[] names) throws JSONException {
72 void delKey(String key) {
77 * Retrieve the string value for specified key.
80 * @return string value.
84 public String get(String key) { // throws ClassCastException, IllegalArgumentException
87 if (o instanceof String) {
88 return (String) o
252 String string() throws ClassCastException, IllegalArgumentException { method in class:JsoMap
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringutils.h 34 #include <string.h>
50 #include <string>
55 // Generic string/memory utilities
74 // Rename a bunch of common string functions so they are consistent across
139 // Traits simplifies porting string functions to be CTYPE-agnostic
148 // STL string type
149 //typedef XXX string;
150 // Null-terminated string
155 // String utilities which work with char or wchar_t
299 typedef std::string string typedef in struct:talk_base::Traits
311 typedef std::wstring string; typedef in struct:talk_base::Traits
    [all...]
  /external/chromium_org/third_party/libxml/src/
check-relaxng-test-suite.py 5 import string namespace
48 if string.find(URL, '#') != -1:
49 URL = URL[0:string.find(URL, '#')]
207 # resource handling: keep a dictionary of URL->string mappings
265 sections = node.xpathEval('string(section)')
check-relaxng-test-suite2.py 5 import string namespace
221 # resource handling: keep a dictionary of URL->string mappings
279 sections = node.xpathEval('string(section)')
check-xml-test-suite.py 5 import string namespace
348 content = string.strip(test.content)
366 string.find(profile, "IBM XML Conformance Test Suite - Production") < 0:
check-xsddata-test-suite.py 5 import string namespace
219 # resource handling: keep a dictionary of URL->string mappings
277 sections = node.xpathEval('string(section)')
genUnicode.py 13 import string namespace
34 (blockfile, catfile) = string.split(sources)
52 line = string.strip(line)
56 fields = string.split(line, ';')
57 range = string.strip(fields[0])
58 (start, end) = string.split(range, "..")
59 name = string.strip(fields[1])
60 name = string.replace(name, ' ', '')
74 alias = string.split(block,':')
75 alist = string.split(alias[1],','
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_const.c 438 * Build a zero-terminated constant string.
446 LLVMValueRef string = LLVMAddGlobal(gallivm->module, LLVMArrayType(i8, len), ""); local
447 LLVMSetGlobalConstant(string, TRUE);
448 LLVMSetLinkage(string, LLVMInternalLinkage);
449 LLVMSetInitializer(string, LLVMConstStringInContext(gallivm->context, str, len, TRUE));
450 string = LLVMConstBitCast(string, LLVMPointerType(i8, 0));
451 return string;
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
glX_XML.py 30 import sys, getopt, string namespace
355 """Return the length, as a string, of the variable-sized
464 In these cases the string 'X_GLXVendorPrivate' or
glX_proto_send.py 30 import sys, getopt, copy, string namespace
38 tmp = '%s_%s' % (tmp, string.lower(str[i:i+3]))
41 tmp = '%s_%s' % (tmp, string.lower(str[i]))
633 skip_condition = "(%s)" % (string.join( condition_list, ") && (" ))
    [all...]
glX_proto_size.py 30 import sys, getopt, copy, string namespace
290 print ' compsize = __gl%s_size(%s);' % (f.name, string.join(f.count_parameter_list, ","))
540 dst = p.string()
608 # size string for the variable length parameter(s). While
  /external/chromium_org/third_party/pexpect/
ANSI.py 32 import string namespace
234 self.state.add_transition_list (string.digits, 'ELB', DoStartNumber, 'NUMBER_1')
235 self.state.add_transition_list (string.digits, 'NUMBER_1', DoBuildNumber, 'NUMBER_1')
252 self.state.add_transition_list (string.digits, 'MODECRAP', DoStartNumber, 'MODECRAP_NUM')
253 self.state.add_transition_list (string.digits, 'MODECRAP_NUM', DoBuildNumber, 'MODECRAP_NUM')
260 self.state.add_transition_list (string.digits, 'SEMICOLON', DoStartNumber, 'NUMBER_2')
261 self.state.add_transition_list (string.digits, 'NUMBER_2', DoBuildNumber, 'NUMBER_2')
276 self.state.add_transition_list (string.digits, 'SEMICOLON_X', None, 'NUMBER_X')
317 if ch not in string.printable:
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayEvent.cpp 35 SK_MEMBER_PROPERTY(key, String), // a single key (also last key pressed)
36 SK_MEMBER_PROPERTY(keys, String), // a single key or dash-delimited range of keys
38 SK_MEMBER(target, String),
219 input->string.set(meta.findString(name));
238 SkString* string = value.fOperand.fString; local
239 const char* chars = string->c_str();
  /external/chromium_org/third_party/skia/src/xml/
SkJS.cpp 197 SkBool SkJS::ValueToString(jsval value, SkString* string) {
201 string->set(JS_GetStringBytes(str));
211 SkString string; local
212 success = js.ValueToString(val, &string);
214 SkASSERT(strcmp(string.c_str(), "3.142857142857143") == 0);
225 success = js.ValueToString(val, &string);
SkJSDisplayable.cpp 234 SkString* string= NULL; local
257 info->getString(displayable, &string);
283 str = JS_NewStringCopyN(cx, string->c_str(), string->size());
306 SkString string; local
327 string.set(JS_GetStringBytes(str));
352 info->setString(displayable, &string);
  /external/chromium_org/third_party/tlslite/tlslite/utils/
rijndael.py 19 key must be a string of length 16, 24, or 32
37 import string namespace

Completed in 1340 milliseconds

<<11121314151617181920>>