HomeSort by relevance Sort by last modified time
    Searched full:value (Results 2476 - 2500 of 15709) sorted by null

<<919293949596979899100>>

  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4.2-3-n.js 26 If the radix is the number 10 or not supplied, then this number value is
27 given as an argument to the ToString operator; the resulting string value
34 this value is not a Number object. Therefore it cannot be transferred to
64 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
15.7.4.2-4.js 26 If the radix is the number 10 or not supplied, then this number value is
27 given as an argument to the ToString operator; the resulting string value
34 this value is not a Number object. Therefore it cannot be transferred to
64 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
exec-002.js 21 * - value of lastIndex
22 * - value of index
23 * - value of input
24 * - value of the array indices
regexp-enumerate-001.js 53 for ( p in r ) { e[e.length] = { property:p, value:r[p] }; t.addProperty( p, r[p]) };
57 "for ( p in r ) { e[e.length] = { property:p, value:r[p] }; e.length",
66 function addProperty(name, value) {
94 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
regress-50447.js 69 "lineNumber property returned unexpected value.");
86 "fileName property returned unexpected value.");
88 "lineNumber property returned unexpected value.");
104 "fileName property returned unexpected value.");
106 "lineNumber property returned unexpected value.");
123 "fileName property returned unexpected value.");
125 "lineNumber property returned unexpected value.");
141 "fileName property returned unexpected value.");
143 "lineNumber property returned unexpected value.");
  /external/webkit/WebCore/bindings/js/
JSHTMLOptionsCollectionCustom.cpp 44 void JSHTMLOptionsCollection::setLength(ExecState* exec, JSValue value)
49 double lengthValue = value.toNumber(exec);
63 void JSHTMLOptionsCollection::indexSetter(ExecState* exec, unsigned index, JSValue value)
67 selectIndexSetter(base, exec, index, value);
JSSQLResultSetRowListCustom.cpp 60 const SQLValue& value = m_impl->values()[valuesIndex + i]; local
63 switch (value.type()) {
65 jsValue = jsString(exec, value.string());
71 jsValue = jsNumber(exec, value.number());
  /external/webkit/WebCore/bindings/v8/
ScriptState.h 48 void setException(v8::Local<v8::Value> exception)
52 v8::Local<v8::Value> exception() { return m_exception; }
70 static void weakReferenceCallback(v8::Persistent<v8::Value> object, void* parameter);
72 v8::Local<v8::Value> m_exception;
V8DataGridDataSource.h 49 static PassRefPtr<V8DataGridDataSource> create(v8::Handle<v8::Value> dataSource, Frame* frame)
57 v8::Handle<v8::Value> jsDataSource() const { return m_dataSource; }
60 V8DataGridDataSource(v8::Handle<v8::Value>, Frame*);
62 v8::Persistent<v8::Value> m_dataSource;
V8NPUtils.h 41 // Convert a V8 Value of any type (string, bool, object, etc) to a NPVariant.
42 void convertV8ObjectToNPVariant(v8::Local<v8::Value>, NPObject*, NPVariant*);
44 // Convert a NPVariant (string, bool, object, etc) back to a V8 Value. The owner object is the NPObject which relates to the
46 v8::Handle<v8::Value> convertNPVariantToV8Object(const NPVariant*, NPObject*);
  /external/webkit/WebCore/bindings/v8/custom/
V8DataGridColumnListCustom.cpp 46 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); local
47 if (!value.IsEmpty())
48 return value;
V8DocumentLocationCustom.cpp 35 v8::Handle<v8::Value> V8Document::locationAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
45 void V8Document::locationAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
53 V8DOMWindowShell::setLocation(window, toWebCoreString(value));
V8ElementCustom.cpp 54 v8::Handle<v8::Value> V8Element::setAttributeCallback(const v8::Arguments& args)
59 String value = toWebCoreString(args[1]); local
62 V8BindingElement::setAttribute(V8BindingState::Only(), element, name, value, ec); local
69 v8::Handle<v8::Value> V8Element::setAttributeNodeCallback(const v8::Arguments& args)
86 v8::Handle<v8::Value> V8Element::setAttributeNSCallback(const v8::Arguments& args)
92 String value = toWebCoreString(args[2]); local
95 V8BindingElement::setAttributeNS(V8BindingState::Only(), element, namespaceURI, qualifiedName, value, ec); local
102 v8::Handle<v8::Value> V8Element::setAttributeNodeNSCallback(const v8::Arguments& args)
119 v8::Handle<v8::Value> toV8(Element* impl, bool forceNewObject)
V8HTMLInputElementCustom.cpp 41 v8::Handle<v8::Value> V8HTMLInputElement::selectionStartAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
54 void V8HTMLInputElement::selectionStartAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
64 imp->setSelectionStart(value->Int32Value());
67 v8::Handle<v8::Value> V8HTMLInputElement::selectionEndAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
80 void V8HTMLInputElement::selectionEndAccessorSetter(v8::Local<v8::String> name, v8::Local<v8::Value> value, const v8::AccessorInfo& info)
91 imp->setSelectionEnd(value->Int32Value());
94 v8::Handle<v8::Value> V8HTMLInputElement::setSelectionRangeCallback(const v8::Arguments& args)
V8SVGLengthCustom.cpp 43 v8::Handle<v8::Value> V8SVGLength::valueAccessorGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
45 INC_STATS("DOM.SVGLength.value");
48 return v8::Number::New(imp.value(V8Proxy::svgContext(wrapper)));
51 v8::Handle<v8::Value> V8SVGLength::convertToSpecifiedUnitsCallback(const v8::Arguments& args)
V8WebGLByteArrayCustom.cpp 46 v8::Handle<v8::Value> V8WebGLByteArray::constructorCallback(const v8::Arguments& args)
53 v8::Handle<v8::Value> V8WebGLByteArray::getCallback(const v8::Arguments& args)
59 v8::Handle<v8::Value> V8WebGLByteArray::setCallback(const v8::Arguments& args)
65 v8::Handle<v8::Value> toV8(WebGLByteArray* impl)
V8WebGLFloatArrayCustom.cpp 46 v8::Handle<v8::Value> V8WebGLFloatArray::constructorCallback(const v8::Arguments& args)
53 v8::Handle<v8::Value> V8WebGLFloatArray::getCallback(const v8::Arguments& args)
59 v8::Handle<v8::Value> V8WebGLFloatArray::setCallback(const v8::Arguments& args)
65 v8::Handle<v8::Value> toV8(WebGLFloatArray* impl)
V8WebGLIntArrayCustom.cpp 46 v8::Handle<v8::Value> V8WebGLIntArray::constructorCallback(const v8::Arguments& args)
53 v8::Handle<v8::Value> V8WebGLIntArray::getCallback(const v8::Arguments& args)
59 v8::Handle<v8::Value> V8WebGLIntArray::setCallback(const v8::Arguments& args)
65 v8::Handle<v8::Value> toV8(WebGLIntArray* impl)
V8WebGLShortArrayCustom.cpp 46 v8::Handle<v8::Value> V8WebGLShortArray::constructorCallback(const v8::Arguments& args)
53 v8::Handle<v8::Value> V8WebGLShortArray::getCallback(const v8::Arguments& args)
59 v8::Handle<v8::Value> V8WebGLShortArray::setCallback(const v8::Arguments& args)
65 v8::Handle<v8::Value> toV8(WebGLShortArray* impl)
V8WebGLUnsignedByteArrayCustom.cpp 46 v8::Handle<v8::Value> V8WebGLUnsignedByteArray::constructorCallback(const v8::Arguments& args)
53 v8::Handle<v8::Value> V8WebGLUnsignedByteArray::getCallback(const v8::Arguments& args)
59 v8::Handle<v8::Value> V8WebGLUnsignedByteArray::setCallback(const v8::Arguments& args)
65 v8::Handle<v8::Value> toV8(WebGLUnsignedByteArray* impl)
V8WebGLUnsignedIntArrayCustom.cpp 46 v8::Handle<v8::Value> V8WebGLUnsignedIntArray::constructorCallback(const v8::Arguments& args)
53 v8::Handle<v8::Value> V8WebGLUnsignedIntArray::getCallback(const v8::Arguments& args)
59 v8::Handle<v8::Value> V8WebGLUnsignedIntArray::setCallback(const v8::Arguments& args)
65 v8::Handle<v8::Value> toV8(WebGLUnsignedIntArray* impl)
V8WebGLUnsignedShortArrayCustom.cpp 46 v8::Handle<v8::Value> V8WebGLUnsignedShortArray::constructorCallback(const v8::Arguments& args)
53 v8::Handle<v8::Value> V8WebGLUnsignedShortArray::getCallback(const v8::Arguments& args)
59 v8::Handle<v8::Value> V8WebGLUnsignedShortArray::setCallback(const v8::Arguments& args)
65 v8::Handle<v8::Value> toV8(WebGLUnsignedShortArray* impl)
V8XSLTProcessorCustom.cpp 49 v8::Handle<v8::Value> V8XSLTProcessor::constructorCallback(const v8::Arguments& args)
56 v8::Handle<v8::Value> V8XSLTProcessor::importStylesheetCallback(const v8::Arguments& args)
70 v8::Handle<v8::Value> V8XSLTProcessor::transformToFragmentCallback(const v8::Arguments& args)
85 v8::Handle<v8::Value> V8XSLTProcessor::transformToDocumentCallback(const v8::Arguments& args)
106 v8::Handle<v8::Value> V8XSLTProcessor::setParameterCallback(const v8::Arguments& args)
116 String value = toWebCoreString(args[2]); local
117 imp->setParameter(namespaceURI, localName, value);
123 v8::Handle<v8::Value> V8XSLTProcessor::getParameterCallback(const v8::Arguments& args)
140 v8::Handle<v8::Value> V8XSLTProcessor::removeParameterCallback(const v8::Arguments& args)
  /external/webkit/WebCore/bridge/
testbindings.cpp 129 strncpy (msgBuf, message->value.stringValue.UTF8Characters, message->value.stringValue.UTF8Length);
130 msgBuf[message->value.stringValue.UTF8Length] = 0;
134 printf ("%f\n", (float)message->value.doubleValue);
136 printf ("%d\n", message->value.intValue);
138 printf ("%p\n", message->value.objectValue);
144 NPUTF8 *msg = "Attempt to set double value with invalid type.";
155 NPUTF8 *msg = "Attempt to set int value with invalid type.";
172 NPUTF8 *msg = "Attempt to set bool value with invalid type.";
303 newInstance->stringValue.value.stringValue.UTF8Length = strlen ("Hello world")
    [all...]
  /external/webkit/WebCore/dom/
OptionElement.h 42 virtual String value() const = 0;
61 String value() const { return m_value; } function in class:WebCore::OptionElementData
62 void setValue(const String& value) { m_value = value; }

Completed in 896 milliseconds

<<919293949596979899100>>