Searched refs:value (Results 226 - 250 of 7674) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/tools/
H A Dsplaytree.js35 tree.insert(0, 'value');
43 tree.insert(0, 'value');
44 assertArrayEquals(['value'], tree.exportValues());
45 tree.insert(0, 'value');
46 assertArrayEquals(['value'], tree.exportValues());
63 return { key: 50, value: 50,
64 left: { key: 30, value: 30,
65 left: { key: 10, value: 10, left: null,
66 right: { key: 20, value: 20,
67 left: { key: 15, value
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DInstruction.java820 default: throw new IllegalArgumentException("Unsupported value size ["+valueSize+"]");
843 default: throw new IllegalArgumentException("Unsupported value size ["+valueSize+"]");
847 protected static void writeByte(byte[] code, int offset, int value) argument
849 if (value > 0xff)
851 throw new IllegalArgumentException("Unsigned byte value larger than 0xff ["+value+"]");
854 code[offset] = (byte)value;
857 protected static void writeShort(byte[] code, int offset, int value) argument
859 if (value > 0xffff)
861 throw new IllegalArgumentException("Unsigned short value large
868 writeInt(byte[] code, int offset, int value) argument
876 writeValue(byte[] code, int offset, int value, int valueSize) argument
888 writeSignedByte(byte[] code, int offset, int value) argument
898 writeSignedShort(byte[] code, int offset, int value) argument
909 writeSignedValue(byte[] code, int offset, int value, int valueSize) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemHeader.java6 private String value; field in class:PemHeader
8 public PemHeader(String name, String value) argument
11 this.value = value;
21 return value;
26 return getHashCode(this.name) + 31 * getHashCode(this.value);
38 return other == this || (isEqual(this.name, other.name) && isEqual(this.value, other.value));
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Dlocale.js99 function lpad(value, ch) {
100 value = String(value);
102 while (width && value.length < width) {
103 value = ch + value;
106 return value;
109 // Format a value according to the selected flag and field width.
110 function fmt(value, defaultWidth) {
112 return value;
[all...]
/external/chromium/chrome/common/net/
H A Dnet_resource_provider.cc27 DictionaryValue value; local
28 value.SetString("header",
30 value.SetString("parentDirText",
32 value.SetString("headerName",
34 value.SetString("headerSize",
36 value.SetString("headerDateModified",
38 value.SetString("listingParsingErrorBoxText",
44 &value);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp4.cpp16 T value; // expected-note {{member is declared here}} member in struct:X::Inner
19 static T value; member in struct:X
23 T X<T, U>::value; // expected-error{{no matching constructor}} member in class:X
31 return X<IntHolder, int>::value; // expected-note{{instantiation}}
41 Inner() : value(17) { }
42 IntHolder value; member in struct:X::Inner
46 IntHolder X<IntHolder, long>::value = 17; member in class:X
54 return X<IntHolder, long>::value; // okay, uses specialization
/external/clang/test/FixIt/
H A Dno-macro-fixit.c10 int value; local
12 while (value = va_arg(values, int)) { // expected-warning {{using the result of an assignment as a condition without parentheses}} \
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DUint.java25 public Uint(int value) { argument
26 this.intValue = value;
/external/javassist/src/main/javassist/bytecode/
H A DByteArray.java39 public static void write16bit(int value, byte[] code, int index) { argument
40 code[index] = (byte)(value >>> 8);
41 code[index + 1] = (byte)value;
55 public static void write32bit(int value, byte[] code, int index) { argument
56 code[index] = (byte)(value >>> 24);
57 code[index + 1] = (byte)(value >>> 16);
58 code[index + 2] = (byte)(value >>> 8);
59 code[index + 3] = (byte)value;
/external/jsr305/ri/src/main/java/javax/annotation/
H A DNonnegative.java11 /** Used to annotate a value that should only contain nonnegative values */
24 Number value = (Number) v;
25 if (value instanceof Long)
26 isNegative = value.longValue() < 0;
27 else if (value instanceof Double)
28 isNegative = value.doubleValue() < 0;
29 else if (value instanceof Float)
30 isNegative = value.floatValue() < 0;
32 isNegative = value.intValue() < 0;
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAppleStoreAccountTypeBox.java16 byte value = this.appleDataBox.getData()[0];
17 switch (value) {
/external/qemu/android/
H A Dboot-properties.h32 * -2 property value too long
35 int boot_property_add( const char* name, const char* value );
40 const char* value, int valuelen );
/external/qemu/
H A Dqbool.h22 int value; member in struct:QBool
25 QBool *qbool_from_int(int value);
H A Dqfloat.h22 double value; member in struct:QFloat
25 QFloat *qfloat_from_double(double value);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Dtry-009.js32 function TryObject( value, throwFunction, result ) {
33 this.value = value;
38 throw EXCEPTION_STRING + this.value;
41 return NO_EXCEPTION_STRING + this.value;
48 result = NO_EXCEPTION_STRING + object.value;
60 ? EXCEPTION_STRING + object.value :
61 NO_EXCEPTION_STRING + object.value),
/external/webkit/Source/WebCore/bindings/js/
H A DJSAudioBufferSourceNodeCustom.cpp39 void JSAudioBufferSourceNode::setBuffer(ExecState*, JSValue value) argument
42 imp->setBuffer(toAudioBuffer(value));
H A DJSConvolverNodeCustom.cpp39 void JSConvolverNode::setBuffer(ExecState*, JSValue value) argument
42 imp->setBuffer(toAudioBuffer(value));
H A DJSExceptionBase.cpp46 ExceptionBase* toExceptionBase(JSC::JSValue value) argument
48 if (DOMCoreException* domException = toDOMCoreException(value))
50 if (RangeException* rangeException = toRangeException(value))
52 if (EventException* eventException = toEventException(value))
54 if (XMLHttpRequestException* xmlHttpException = toXMLHttpRequestException(value))
57 if (SVGException* svgException = toSVGException(value))
61 if (XPathException* pathException = toXPathException(value))
65 if (SQLException* pathException = toSQLException(value))
/external/webkit/Source/WebCore/bindings/scripts/test/
H A DTestSerializedScriptValueInterface.idl34 readonly attribute SerializedScriptValue value;
/external/webkit/Source/WebCore/css/
H A DRGBColor.cpp39 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/Source/WebCore/html/
H A DDOMSettableTokenList.idl32 attribute DOMString value;
/external/webkit/Source/WebCore/html/parser/
H A DHTMLMetaCharsetParser.cpp57 String HTMLMetaCharsetParser::extractCharset(const String& value) argument
60 unsigned length = value.length();
63 pos = value.find(charsetString, pos, false);
70 while (pos < length && value[pos] <= ' ')
73 if (value[pos] != '=')
78 while (pos < length && value[pos] <= ' ')
82 if (pos < length && (value[pos] == '"' || value[pos] == '\'')) {
83 quoteMark = static_cast<char>(value[pos++]);
91 while (end < length && ((quoteMark && value[en
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBCursorWithValue.idl31 readonly attribute SerializedScriptValue value;
/external/webkit/Source/WebCore/svg/
H A DGradientAttributes.h46 void setSpreadMethod(GradientSpreadMethod value) argument
48 m_spreadMethod = value;
52 void setBoundingBoxMode(bool value) argument
54 m_boundingBoxMode = value;
58 void setGradientTransform(const AffineTransform& value) argument
60 m_gradientTransform = value;
64 void setStops(const Vector<Gradient::ColorStop>& value) argument
66 m_stops = value;
H A DLinearGradientAttributes.h45 void setX1(const SVGLength& value) { m_x1 = value; m_x1Set = true; } argument
46 void setY1(const SVGLength& value) { m_y1 = value; m_y1Set = true; } argument
47 void setX2(const SVGLength& value) { m_x2 = value; m_x2Set = true; } argument
48 void setY2(const SVGLength& value) { m_y2 = value; m_y2Set = true; } argument

Completed in 2513 milliseconds

1234567891011>>