/external/webkit/WebCore/css/ |
MediaQueryExp.cpp | 43 CSSParserValue* value = valueList->current(); local 45 if (value->id != 0) 46 m_value = CSSPrimitiveValue::createIdentifier(value->id); 47 else if (value->unit == CSSPrimitiveValue::CSS_STRING) 48 m_value = CSSPrimitiveValue::create(value->string, (CSSPrimitiveValue::UnitTypes) value->unit); 49 else if (value->unit >= CSSPrimitiveValue::CSS_NUMBER && 50 value->unit <= CSSPrimitiveValue::CSS_KHZ) 51 m_value = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit) 59 CSSParserValue* value = 0; local [all...] |
RGBColor.cpp | 39 unsigned value = (m_rgbColor >> 16) & 0xFF; local 40 return CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER); 45 unsigned value = (m_rgbColor >> 8) & 0xFF; local 46 return CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER); 51 unsigned value = m_rgbColor & 0xFF; local 52 return CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER); 57 float value = static_cast<float>((m_rgbColor >> 24) & 0xFF) / 0xFF; local 58 return WebCore::CSSPrimitiveValue::create(value, WebCore::CSSPrimitiveValue::CSS_NUMBER);
|
/external/webkit/WebCore/platform/network/qt/ |
ResourceRequestQt.cpp | 56 QByteArray value = QString(it->second).toAscii(); local 57 // QNetworkRequest::setRawHeader() would remove the header if the value is null 59 if (!value.isNull()) 60 request.setRawHeader(name, value);
|
/external/webkit/WebCore/svg/ |
SVGFELightElement.cpp | 44 const String& value = attr->value(); local 46 setAzimuthBaseValue(value.toFloat()); 48 setElevationBaseValue(value.toFloat()); 50 setXBaseValue(value.toFloat()); 52 setYBaseValue(value.toFloat()); 54 setZBaseValue(value.toFloat()); 56 setPointsAtXBaseValue(value.toFloat()); 58 setPointsAtYBaseValue(value.toFloat()); 60 setPointsAtZBaseValue(value.toFloat()) [all...] |
SVGFEMergeNodeElement.cpp | 41 const String& value = attr->value(); local 43 setIn1BaseValue(value);
|
SVGListTraits.h | 30 template<typename Item> struct UsesDefaultInitializer { static const bool value = true; }; member in struct:WebCore::UsesDefaultInitializer 31 template<> struct UsesDefaultInitializer<double> { static const bool value = false; }; member in struct:WebCore::UsesDefaultInitializer 32 template<> struct UsesDefaultInitializer<float> { static const bool value = false; }; member in struct:WebCore::UsesDefaultInitializer
|
/external/webkit/WebCore/wml/ |
WMLAccessElement.cpp | 43 String value = parseValueForbiddingVariableReferences(attr->value()); local 44 if (value.isEmpty()) 47 m_domain = value; 49 String value = parseValueForbiddingVariableReferences(attr->value()); local 50 if (value.isEmpty()) 53 m_path = value;
|
WMLBRElement.cpp | 58 const AtomicString& value = attr->value(); local 59 if (value.isEmpty()) 62 if (equalIgnoringCase(value, "all")) 65 addCSSProperty(attr, CSSPropertyClear, value);
|
/frameworks/base/include/ui/ |
KeycodeLabels.h | 24 int value; member in struct:KeycodeLabel
|
/libcore/luni/src/main/java/java/text/ |
Annotation.java | 21 * Wrapper for a text attribute value which represents an annotation. An 27 * value is the same.</li> 39 private Object value; field in class:Annotation 48 value = attribute; 52 * Returns the value of this annotation. The value may be {@code null}. 54 * @return the value of this annotation or {@code null}. 57 return value; 67 return getClass().getName() + "[value=" + value + ']' [all...] |
/system/core/include/cutils/ |
config_utils.h | 33 const char *value; member in struct:cnode 43 cnode* config_node(const char *name, const char *value); 48 /* look up a child by name and return the boolean value */ 51 /* look up a child by name and return the string value */ 55 void config_set(cnode *root, const char *name, const char *value);
|
/system/extras/tests/bionic/libc/bionic/ |
lib_static_init.h | 6 int value; member in class:Foo
|
/build/tools/droiddoc/src/ |
AnnotationInstanceInfo.java | 48 AnnotationValueInfo value = values[i]; local 49 str.append(value.element().name()); 51 str.append(value.valueString());
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
OrganizationParser.java | 74 String value = this.lexer.getRest(); local 76 organization.setOrganization(value.trim());
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Statements/ |
12.6.3-4.js | 41 for the property name and W for the value. 44 GetPropertyName(V) for the property name and W for the value. 47 9. If Result(8) is a value completion, change C to be "normal completion 48 after value V" where V is the value carried by Result(8). 85 for ( value in o ) { 86 result += o[value]; 90 "for ( value in o ) { result += o[value]", 94 var value = "value" variable 105 var value = 0; variable [all...] |
/cts/tools/dx-tests/src/dxc/junit/opcodes/areturn/jm/ |
T_areturn_1.java | 30 Integer value = new Integer(12345); local 31 return value;
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput/d/ |
T_sput_13.java | 20 static int value = 5 / 0; field in class:StubInitError 26 StubInitError.value = 12;
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput_boolean/d/ |
T_sput_boolean_13.java | 20 static boolean value = 5 / 0 > 0 ? true : false; field in class:StubInitError 26 StubInitError.value = true;
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput_byte/d/ |
T_sput_byte_13.java | 20 static byte value = (byte)(5 / 0); field in class:StubInitError 26 StubInitError.value = 11;
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput_char/d/ |
T_sput_char_13.java | 20 static char value = (char)(5 / 0); field in class:StubInitError 26 StubInitError.value = 11;
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput_object/d/ |
T_sput_object_13.java | 21 static Object value; field in class:StubInitError 27 StubInitError.value = this;
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput_short/d/ |
T_sput_short_13.java | 20 static short value = (short)(5 / 0); field in class:StubInitError 26 StubInitError.value = 11;
|
/cts/tools/vm-tests/src/dot/junit/opcodes/sput_wide/d/ |
T_sput_wide_13.java | 20 static long value = (long)(5 / 0); field in class:StubInitError 26 StubInitError.value = 11;
|
/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttAnnotationDefault.java | 28 /** {@code non-null;} the annotation default value */ 29 private final Constant value; field in class:AttAnnotationDefault 38 * @param value {@code non-null;} the annotation default value 42 public AttAnnotationDefault(Constant value, int byteLength) { 45 if (value == null) { 46 throw new NullPointerException("value == null"); 49 this.value = value; 60 * Gets the annotation default value [all...] |
/dalvik/dx/tests/083-ssa-phi-placement/ |
Blort.java | 55 int value = 0; local 60 return new Integer(value); 63 return Boolean.valueOf(value != 0);
|