HomeSort by relevance Sort by last modified time
    Searched refs:parseValue (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLIElement.h 44 void parseValue(const AtomicString&);
HTMLLIElement.cpp 73 parseValue(value);
103 parseValue(fastGetAttribute(valueAttr));
107 inline void HTMLLIElement::parseValue(const AtomicString& value)
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
IntEditor.java 24 protected Object parseValue(String str) {
TextEditor.java 43 Object newVal = parseValue(s.length() == 0 ? null : s.toString());
65 protected Object parseValue(String str) {
  /cts/tools/dex-tools/src/dex/reader/
DexAnnotationAttributeImpl.java 42 parseValue();
45 private void parseValue() {
DexEncodedValueImpl.java 54 parseValue();
57 private void parseValue() {
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParser.cpp 39 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode parserMode, StyleSheetContents* styleSheet)
41 return BisonCSSParser::parseValue(declaration, propertyID, string, important, parserMode, styleSheet);
44 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, const CSSParserContext& context)
46 return BisonCSSParser::parseValue(declaration, propertyID, string, important, context);
54 bool success = parseValue(stylePropertySet.get(), propertyID, string, false, context);
CSSParser.h 25 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
42 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, const CSSParserContext&);
BisonCSSParser.h 87 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, const CSSParserContext&);
88 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
97 bool parseValue(CSSPropertyID, bool important);
258 bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, StyleSheetContents* contextStyleSheet);
CSSPropertyParser.h 59 static bool parseValue(CSSPropertyID, bool important,
73 bool parseValue(CSSPropertyID, bool important);
CSSPropertyParser.cpp 125 bool CSSPropertyParser::parseValue(CSSPropertyID property, bool important,
130 return parser.parseValue(property, important);
430 bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important)
515 if (num != 1 || !parseValue(CSSPropertyOverflowY, important))
549 if (!parseValue(CSSPropertyWebkitBorderHorizontalSpacing, important))
557 if (!parseValue(CSSPropertyWebkitBorderHorizontalSpacing, important) || !parseValue(CSSPropertyWebkitBorderVerticalSpacing, important))
    [all...]
BisonCSSParser-in.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
DOMWindowCSS.cpp 66 // CSSParser::parseValue() won't work correctly if !important is present,
76 return CSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, HTMLStandardMode, 0);
  /frameworks/base/core/java/android/view/animation/
TranslateAnimation.java 59 Description d = Description.parseValue(a.peekValue(
64 d = Description.parseValue(a.peekValue(
69 d = Description.parseValue(a.peekValue(
74 d = Description.parseValue(a.peekValue(
RotateAnimation.java 58 Description d = Description.parseValue(a.peekValue(
63 d = Description.parseValue(a.peekValue(
GridLayoutAnimationController.java 118 Animation.Description d = Animation.Description.parseValue(
121 d = Animation.Description.parseValue(
ScaleAnimation.java 120 Description d = Description.parseValue(a.peekValue(
125 d = Description.parseValue(a.peekValue(
LayoutAnimationController.java 106 Animation.Description d = Animation.Description.parseValue(
  /dalvik/dx/src/com/android/dx/cf/direct/
AnnotationParser.java 103 result = parseValue();
292 Constant value = parseValue();
306 private Constant parseValue() throws IOException {
399 list.set(i, parseValue());
417 * Helper for {@link #parseValue}, which parses a constant reference
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAngle.cpp 213 static bool parseValue(const String& value, float& valueInSpecifiedUnits, SVGAngle::SVGAngleType& unitType)
249 bool success = value.is8Bit() ? parseValue<LChar>(value, valueInSpecifiedUnits, unitType)
250 : parseValue<UChar>(value, valueInSpecifiedUnits, unitType);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
xmlconfig.c 300 static GLboolean parseValue (driOptionValue *v, driOptionType type,
366 if (!parseValue (&ranges[i].start, info->type, range) ||
367 !parseValue (&ranges[i].end, info->type, sep+1))
376 if (!parseValue (&ranges[i].start, info->type, range))
524 if (!parseValue (&v, data->cache->info[opt].type, value))
591 if (!parseValue (&cache->values[opt], cache->info[opt].type, defaultVal))
780 if (!parseValue (&screenNum, DRI_INT, screen))
820 else if (!parseValue (&cache->values[opt], cache->info[opt].type, value))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/common/
xmlconfig.c 300 static GLboolean parseValue (driOptionValue *v, driOptionType type,
366 if (!parseValue (&ranges[i].start, info->type, range) ||
367 !parseValue (&ranges[i].end, info->type, sep+1))
376 if (!parseValue (&ranges[i].start, info->type, range))
524 if (!parseValue (&v, data->cache->info[opt].type, value))
591 if (!parseValue (&cache->values[opt], cache->info[opt].type, defaultVal))
780 if (!parseValue (&screenNum, DRI_INT, screen))
820 else if (!parseValue (&cache->values[opt], cache->info[opt].type, value))
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 203 final Object value = parseValue(st, type);
233 static Object parseValue(StreamTokenizer st, final int type) throws IOException {
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 406 v = parseValue(type, val);
422 public static Object parseValue(String type, String val) throws ApiParseException {
XmlApiFile.java 184 value = ApiFile.parseValue(typeName, attributes.getValue("value"));

Completed in 554 milliseconds

1 2 3