HomeSort by relevance Sort by last modified time
    Searched refs:parsedOk (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/css/
CSSPropertySourceData.cpp 57 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range)
61 , parsedOk(parsedOk)
70 , parsedOk(other.parsedOk)
79 , parsedOk(false)
102 return StringHash::hash(name) + 3 * StringHash::hash(value) + 7 * important + 13 * parsedOk + 31;
CSSPropertySourceData.h 55 CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range);
65 bool parsedOk;
  /external/e2fsprogs/lib/uuid/
tst_uuid.c 50 int parsedOk;
52 parsedOk = uuid_parse(uuid, uuidBits) == 0;
55 if (parsedOk != isValid) {
56 printf(" but uuid_parse says %s\n", validStr[parsedOk]);
  /external/webkit/Source/WebCore/inspector/front-end/
CSSStyleModel.js 446 WebInspector.CSSProperty = function(ownerStyle, index, name, value, priority, status, parsedOk, implicit, shorthand, text)
454 this.parsedOk = parsedOk;
464 // parsedOk: true
469 ownerStyle, index, payload.name, payload.value, payload.priority || "", payload.status || "style", ("parsedOk" in payload) ? payload.parsedOk : true, !!payload.implicit, payload.shorthandName || "", payload.text);
StylesSidebarPane.js     [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.cpp 477 // Default "parsedOk" == true.
478 if (!propertyEntry.parsedOk)
479 property->setBoolean("parsedOk", false);
498 if (propertyEntry.parsedOk)
502 bool success = activeIt->second->getBoolean("parsedOk", &previousParsedOk);
527 if (propertyEntry.parsedOk) {
    [all...]

Completed in 529 milliseconds