Searched defs:value (Results 1 - 25 of 1958) sorted by relevance

1234567891011>>

/external/clearsilver/cs/
H A Dtest_joo.cs2 Empty has no value assigned (ie, empty), Foo has a value, NotExist doesn't exist external variable declarations
/external/elfutils/libdw/
H A Ddwarf_arrayorder.c28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
H A Ddwarf_bitoffset.c28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
H A Ddwarf_bitsize.c28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
H A Ddwarf_bytesize.c28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
H A Ddwarf_srclang.c28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
/external/fdlibm/
H A Ds_ldexp.c18 double ieee_ldexp(double value, int exp) argument
20 double ieee_ldexp(value, exp)
21 double value; int exp;
24 if(!ieee_finite(value)||value==0.0) return value;
25 value = ieee_scalbn(value,exp);
26 if(!ieee_finite(value)||value
[all...]
/external/webkit/LayoutTests/fast/js/resources/
H A Dselect-options-remove.js4 var value; variable
7 value = document.createElement("DIV");
8 shouldBe("select1.options.remove(value)", "undefined");
14 value = "o";
15 shouldBe("select1.options.remove(value)", "undefined");
21 value = 3.14;
22 shouldBe("select1.options.remove(value)", "undefined");
28 value = true;
29 shouldBe("select1.options.remove(value)", "undefined");
35 value
[all...]
/external/webkit/LayoutTests/http/tests/appcache/resources/
H A Dcounter.php12 $value = file_get_contents($file); variable
13 file_put_contents($file, ++$value);
14 return $value;
H A Dversioned-manifest.php18 $value = getCount($file); variable
19 file_put_contents($file, ++$value);
/external/webkit/WebCore/bindings/js/
H A DJSExceptionBase.cpp42 ExceptionBase* toExceptionBase(JSC::JSValue value) argument
44 if (DOMCoreException* domException = toDOMCoreException(value))
46 if (RangeException* rangeException = toRangeException(value))
48 if (EventException* eventException = toEventException(value))
50 if (XMLHttpRequestException* xmlHttpException = toXMLHttpRequestException(value))
53 if (SVGException* svgException = toSVGException(value))
57 if (XPathException* pathException = toXPathException(value))
H A DJSCSSValueCustom.cpp47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, CSSValue* value) argument
49 if (!value)
52 DOMObject* wrapper = getCachedDOMObjectWrapper(exec, value);
57 if (value->isWebKitCSSTransformValue())
58 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, WebKitCSSTransformValue, value);
59 else if (value->isValueList())
60 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSValueList, value);
62 else if (value->isSVGPaint())
63 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPaint, value);
64 else if (value
[all...]
/external/webkit/WebCore/bindings/v8/custom/
H A DV8DataGridColumnListCustom.cpp46 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); local
47 if (!value.IsEmpty())
48 return value;
/external/proguard/src/proguard/evaluation/value/
H A DConvertedByteValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a byte value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedByteValue
35 * Creates a new converted byte value of the given integer value.
37 public ConvertedByteValue(IntegerValue value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedCharacterValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a character value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedCharacterValue
35 * Creates a new converted character value of the given integer value.
37 public ConvertedCharacterValue(IntegerValue value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedDoubleValue.java21 package proguard.evaluation.value;
24 * This DoubleValue represents a double value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedDoubleValue
35 * Creates a new converted double value of the given value.
37 public ConvertedDoubleValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedFloatValue.java21 package proguard.evaluation.value;
24 * This FloatValue represents a float value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedFloatValue
35 * Creates a new converted float value of the given value.
37 public ConvertedFloatValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedIntegerValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a integer value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedIntegerValue
35 * Creates a new converted integer value of the given value.
37 public ConvertedIntegerValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedLongValue.java21 package proguard.evaluation.value;
24 * This LongValue represents a long value that is converted from another
25 * scalar value.
31 private final Value value; field in class:ConvertedLongValue
35 * Creates a new converted long value of the given value.
37 public ConvertedLongValue(Value value) argument
39 this.value = value;
49 this.value
[all...]
H A DConvertedShortValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a short value that is converted from an
25 * integer value.
31 private final IntegerValue value; field in class:ConvertedShortValue
35 * Creates a new converted short value of the given integer value.
37 public ConvertedShortValue(IntegerValue value) argument
39 this.value = value;
49 this.value
[all...]
/external/jsr305/ri/src/main/java/javax/annotation/concurrent/
H A DGuardedBy.java37 String value(); method in interface:GuardedBy
/external/jsr305/sampleUses/src/main/java/
H A DLuhnVerification.java3 static boolean checkNumber(String value) { argument
6 for (int i = value.length() - 1; i >= 0; i--) {
7 int v = value.charAt(i) - '0';
/external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
H A Dget_amr_wb_bits.cpp121 int16 value = 0; local
125 value <<= 2;
129 value |= 2;
134 value |= 1;
141 value <<= 1;
145 value |= 1;
150 return (value);
156 int16 value = 0; local
160 value = 1;
162 return (value);
[all...]
/external/srec/portable/include/
H A DPANSIFileImpl.h44 FILE* value; member in struct:PANSIFileImpl_t
/external/webkit/JavaScriptCore/bytecode/
H A DJumpTable.cpp35 int32_t SimpleJumpTable::offsetForValue(int32_t value, int32_t defaultOffset) argument
37 if (value >= min && static_cast<uint32_t>(value - min) < branchOffsets.size()) {
38 int32_t offset = branchOffsets[value - min];

Completed in 228 milliseconds

1234567891011>>