/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
11.2.1-5.js | 54 7. Return a value of type Reference whose base object is Result(5) and 88 PROPERTY[i].value, 108 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value "; 113 function MyObject( value ) { 114 this.value = value; 115 this.stringValue = value +""; 116 this.numberValue = Number(value); 119 function Property( object, value, string, number ) { 121 this.string = String(value); [all...] |
/external/webkit/WebCore/bindings/js/ |
ScriptArray.cpp | 54 bool ScriptArray::set(unsigned index, const ScriptObject& value) 56 if (value.scriptState() != m_scriptState) { 61 jsArray()->put(m_scriptState, index, value.jsObject()); 65 bool ScriptArray::set(unsigned index, const String& value) 68 jsArray()->put(m_scriptState, index, jsString(m_scriptState, value)); 72 bool ScriptArray::set(unsigned index, double value) 75 jsArray()->put(m_scriptState, index, jsNumber(m_scriptState, value)); 79 bool ScriptArray::set(unsigned index, long long value) 82 jsArray()->put(m_scriptState, index, jsNumber(m_scriptState, value)); 86 bool ScriptArray::set(unsigned index, int value) [all...] |
/external/webkit/WebCore/bindings/v8/ |
ScriptArray.cpp | 51 bool ScriptArray::set(unsigned index, const ScriptObject& value) 53 if (value.scriptState() != m_scriptState) { 58 v8Object()->Set(v8::Integer::New(index), value.v8Value()); 62 bool ScriptArray::set(unsigned index, const String& value) 65 v8Object()->Set(v8::Integer::New(index), v8String(value)); 69 bool ScriptArray::set(unsigned index, double value) 72 v8Object()->Set(v8::Integer::New(index), v8::Number::New(value)); 76 bool ScriptArray::set(unsigned index, long long value) 79 v8Object()->Set(v8::Integer::New(index), v8::Number::New(value)); 83 bool ScriptArray::set(unsigned index, int value) [all...] |
/external/webkit/WebCore/html/ |
HTMLHRElement.cpp | 61 if (equalIgnoringCase(attr->value(), "left")) { 64 } else if (equalIgnoringCase(attr->value(), "right")) { 73 int v = attr->value().toInt(&ok); 77 addCSSLength(attr, CSSPropertyWidth, attr->value()); 83 addCSSColor(attr, CSSPropertyBorderColor, attr->value()); 84 addCSSColor(attr, CSSPropertyBackgroundColor, attr->value()); 93 StringImpl* si = attr->value().impl(); 108 void HTMLHRElement::setAlign(const String &value) 110 setAttribute(alignAttr, value); 128 void HTMLHRElement::setSize(const String &value) [all...] |
HTMLTableColElement.cpp | 78 _span = !attr->isNull() ? attr->value().toInt() : 1; 82 if (!attr->value().isEmpty()) { 83 addCSSLength(attr, CSSPropertyWidth, attr->value()); 113 void HTMLTableColElement::setAlign(const String &value) 115 setAttribute(alignAttr, value); 123 void HTMLTableColElement::setCh(const String &value) 125 setAttribute(charAttr, value); 133 void HTMLTableColElement::setChOff(const String &value) 135 setAttribute(charoffAttr, value); 148 void HTMLTableColElement::setVAlign(const String &value) [all...] |
/external/webkit/WebCore/svg/ |
SVGComponentTransferFunctionElement.cpp | 49 const String& value = attr->value(); local 51 if (value == "identity") 53 else if (value == "table") 55 else if (value == "discrete") 57 else if (value == "linear") 59 else if (value == "gamma") 63 tableValuesBaseValue()->parse(value); 65 setSlopeBaseValue(value.toFloat()); 67 setInterceptBaseValue(value.toFloat()) [all...] |
SVGFilterPrimitiveStandardAttributes.cpp | 43 // Spec: If the x/y attribute is not specified, the effect is as if a value of "0%" were specified. 44 // Spec: If the width/height attribute is not specified, the effect is as if a value of "100%" were specified. 53 const AtomicString& value = attr->value(); local 55 setXBaseValue(SVGLength(LengthModeWidth, value)); 57 setYBaseValue(SVGLength(LengthModeHeight, value)); 59 setWidthBaseValue(SVGLength(LengthModeWidth, value)); 61 setHeightBaseValue(SVGLength(LengthModeHeight, value)); 63 setResultBaseValue(value); 117 effectBBox = FloatRect(x().value(this) [all...] |
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
AppleScriptController.m | 62 id value = nil; 67 value = [NSString stringWithFormat:@"\"%@\"", [aeDesc stringValue]]; 73 value = [NSString stringWithFormat:@"%016llX", (unsigned long long)d]; 77 value = [NSMutableString stringWithString:@"("]; 81 [(NSMutableString*)value appendString:@", "]; 83 [(NSMutableString*)value appendString:[obj description]]; 85 [(NSMutableString*)value appendString:@")"]; 97 value = [NSString stringWithFormat:@"'%s'", typeStr]; 102 if (!value) 103 value = [aeDesc stringValue] [all...] |
/packages/apps/Email/src/com/android/email/mail/internet/ |
MimeHeader.java | 70 public void addHeader(String name, String value) throws MessagingException { 71 mFields.add(new Field(name, value)); 74 public void setHeader(String name, String value) throws MessagingException { 75 if (name == null || value == null) { 79 addHeader(name, value); 86 values.add(field.value); 118 builder.append(field.name + ": " + field.value + "\r\n"); 128 writer.write(field.name + ": " + field.value + "\r\n"); 136 final String value; field in class:MimeHeader.Field 138 public Field(String name, String value) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
AndroidLaunchConfiguration.java | 46 TargetMode(boolean value) { 47 mValue = value; 54 public static TargetMode getMode(boolean value) { 56 if (mode.mValue == value) { 105 // nothing to be done here, we'll use the default value 109 boolean value = config.getAttribute(LaunchConfigDelegate.ATTR_TARGET_MODE, 111 mTargetMode = TargetMode.getMode(value); 113 // nothing to be done here, we'll use the default value 126 // nothing to be done here, we'll use the default value 134 // nothing to be done here, we'll use the default value [all...] |
/system/core/libcutils/ |
atomic-android-sh.c | 37 * value. 49 void android_atomic_write(int32_t value, volatile int32_t* addr) { 53 } while (android_atomic_cmpxchg(oldValue, value, addr)); 72 int32_t android_atomic_add(int32_t value, volatile int32_t* addr) { 76 } while (android_atomic_cmpxchg(oldValue, oldValue+value, addr)); 80 int32_t android_atomic_and(int32_t value, volatile int32_t* addr) { 84 } while (android_atomic_cmpxchg(oldValue, oldValue&value, addr)); 88 int32_t android_atomic_or(int32_t value, volatile int32_t* addr) { 92 } while (android_atomic_cmpxchg(oldValue, oldValue|value, addr)); 96 int32_t android_atomic_swap(int32_t value, volatile int32_t* addr) [all...] |
/dalvik/libcore/luni/src/main/java/java/lang/ |
Long.java | 41 * The value which the receiver represents. 43 private final long value; field in class:Long 46 * Constant for the maximum {@code long} value, 2<sup>63</sup>-1. 51 * Constant for the minimum {@code long} value, -2<sup>63</sup>. 82 * Constructs a new {@code Long} with the specified primitive long value. 84 * @param value 85 * the primitive long value to store in the new instance. 87 public Long(long value) { 88 this.value = value; [all...] |
InheritableThreadLocal.java | 22 * A thread-local variable whose value is passed from parent to child thread. By 23 * default, the value of an inheritable thread-local variable of a child thread 24 * is initialized with the value of the parent thread's variable at thread 26 * to provide an arbitrary function for passing the value of a parent's 42 * Computes the initial value of this thread-local variable for the child 43 * thread given the parent thread's value. Called from the parent thread when 45 * thread's value. 47 * @param parentValue the value of the variable in the parent thread. 48 * @return the initial value of the variable for the child thread.
|
/frameworks/base/core/java/android/database/ |
DatabaseUtils.java | 171 * @param value the value to bind 174 Object value) { 175 if (value == null) { 177 } else if (value instanceof Double || value instanceof Float) { 178 prog.bindDouble(index, ((Number)value).doubleValue()); 179 } else if (value instanceof Number) { 180 prog.bindLong(index, ((Number)value).longValue()); 181 } else if (value instanceof Boolean) 402 String value; local 426 String value; local 542 Long value = Long.valueOf(cursor.getLong(colIndex)); local 641 long value = prog.simpleQueryForLong(); local 669 String value = prog.simpleQueryForString(); local [all...] |
/cts/tools/dex-tools/src/dex/structure/ |
DexAnnotation.java | 46 private byte value; field in class:DexAnnotation.Visibility 48 private Visibility(byte value) { 49 this.value = value; 54 * pre: 0 <= {@code value} <=2 56 * @param value 57 * the {@code byte} value which identifies a {@code 61 public static Visibility get(byte value) { 63 switch (value) {
|
/cts/tools/utils/ |
host_config.xml | 27 <!-- Number of tests executed between reboots. A value <= 0 disables reboots. --> 28 <IntValue name="maxTestCount" value="200" /> 30 <IntValue name="maxTestsInBatchMode" value="5000" /> 33 <IntValue name="testStatusTimeoutMs" value="300000" /> 35 <IntValue name="batchStartTimeoutMs" value="1800000" /> 37 <IntValue name="individualStartTimeoutMs" value="300000" /> 39 <IntValue name="signatureTestTimeoutMs" value="600000" /> 41 <IntValue name="packageInstallTimeoutMs" value="120000" /> 43 <IntValue name="postInstallWaitMs" value="10000" />
|
/dalvik/dx/src/com/android/dx/dex/code/form/ |
Form51l.java | 48 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 50 return regs.get(0).regString() + ", " + literalBitsString(value); 56 CstLiteralBits value = (CstLiteralBits) ((CstInsn) insn).getConstant(); local 57 return literalBitsComment(value, 64); 92 long value = local 97 (short) value, 98 (short) (value >> 16), 99 (short) (value >> 32), 100 (short) (value >> 48));
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstLiteralBits.java | 25 * Returns whether or not this instance's value may be accurately 28 * instance's value, then this method returns {@code true}. 36 * Gets the value as {@code int} bits. If this instance contains 45 * Gets the value as {@code long} bits. If this instance contains 47 * method is the sign extension of the value. 54 * Returns true if this value can fit in 16 bits with sign-extension. 57 * the value. 69 * Returns true if this value can fit in 8 bits with sign-extension. 72 * the value.
|
/dalvik/dx/tests/014-field-attrib-ConstantValue/ |
small-class.txt | 57 0010 # value 67 0010 # value 77 0014 # value 87 0011 # value 97 0010 # value 107 0012 # value 117 0010 # value 127 0010 # value 137 000f # value
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
BinarySearch.java | 29 * @param value 33 public static int binarySearch(String data, char value) { 38 if (value == target) 40 else if (value < target) 58 char value = 0; local 62 value = data.charAt(mid); 63 if (c > value) 65 else if (c == value) 70 return mid - (c < value ? 1 : 0);
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
NoticeReference.java | 38 * @param orgName a <code>String</code> value 39 * @param numbers a <code>Vector</code> value 68 * @param orgName a <code>String</code> value 69 * @param numbers an <code>ASN1EncodableVector</code> value 82 * @param displayTextType an <code>int</code> value 83 * @param orgName a <code>String</code> value 84 * @param numbers an <code>ASN1EncodableVector</code> value 101 * @param as an <code>ASN1Sequence</code> value obtained from either 146 * @return a <code>DERObject</code> value
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/ |
NodeLocator.java | 43 * @param publicId a <code>String</code> value 44 * @param systemId a <code>String</code> value 45 * @param lineNumber an <code>int</code> value 46 * @param columnNumber an <code>int</code> value 60 * @return a <code>String</code> value 70 * @return a <code>String</code> value 80 * @return an <code>int</code> value 91 * @return an <code>int</code> value 102 * @return a <code>String</code> value
|
/external/jdiff/ |
build.xml | 10 <property name="extlibs.dir" value="${basedir}/../../extlibs/jdiff-1.1.0/" /> 11 <property name="src.dir" value="${basedir}/src" /> 12 <property name="build.dir" value="build" /> 13 <property name="classes.dir" value="${build.dir}/classes" /> 14 <property name="lib.dir" value="${build.dir}/lib" /> 15 <property name="version" value="1.1.0" /> 19 <property name="debug" value="true" /> 20 <property name="JDIFF_HOME" value="${extlibs.dir}" /> 46 <!--<compilerarg value="-Xlint:unchecked"/> -->
|
/external/oprofile/libdb/ |
db_insert.c | 3 * Inserting a key-value pair into a DB 21 static inline int add_node(odb_data_t * data, odb_key_t key, odb_value_t value) 39 node->value = value; 70 if (node->value + offset != 0) { 71 node->value += offset; 93 * store a value) 106 int odb_add_node(odb_t * odb, odb_key_t key, odb_value_t value) 108 return add_node(odb->data, key, value);
|
/external/webkit/JavaScriptCore/runtime/ |
NumericStrings.h | 39 if (d == entry.key && !entry.value.isNull()) 40 return entry.value; 42 entry.value = UString::from(d); 43 return entry.value; 49 if (i == entry.key && !entry.value.isNull()) 50 return entry.value; 52 entry.value = UString::from(i); 53 return entry.value; 62 UString value; member in struct:JSC::NumericStrings::CacheEntry
|