HomeSort by relevance Sort by last modified time
    Searched refs:JSValue (Results 101 - 125 of 379) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/bindings/js/
JSWorkerContextCustom.cpp 83 JSValue JSWorkerContext::eventSource(ExecState* exec) const
89 JSValue JSWorkerContext::xmlHttpRequest(ExecState* exec) const
95 JSValue JSWorkerContext::webSocket(ExecState* exec) const
101 JSValue JSWorkerContext::importScripts(ExecState* exec, const ArgList& args)
116 JSValue function;
124 JSValue JSWorkerContext::addEventListener(ExecState* exec, const ArgList& args)
126 JSValue listener = args.at(1);
134 JSValue JSWorkerContext::removeEventListener(ExecState* exec, const ArgList& args)
136 JSValue listener = args.at(1);
144 JSValue JSWorkerContext::setTimeout(ExecState* exec, const ArgList& args
    [all...]
JSHTMLInputElementCustom.cpp 57 JSValue JSHTMLInputElement::type(ExecState* exec) const
70 JSValue JSHTMLInputElement::selectionStart(ExecState* exec) const
79 void JSHTMLInputElement::setSelectionStart(ExecState* exec, JSValue value)
88 JSValue JSHTMLInputElement::selectionEnd(ExecState* exec) const
97 void JSHTMLInputElement::setSelectionEnd(ExecState* exec, JSValue value)
106 JSValue JSHTMLInputElement::setSelectionRange(ExecState* exec, const ArgList& args)
JSCustomXPathNSResolver.h 32 #include <runtime/JSValue.h>
48 static PassRefPtr<JSCustomXPathNSResolver> create(JSC::ExecState*, JSC::JSValue);
JSHTMLDataGridElementCustom.cpp 40 JSValue JSHTMLDataGridElement::dataSource(ExecState*) const
48 void JSHTMLDataGridElement::setDataSource(ExecState*, JSValue value)
JSNodeFilterCustom.cpp 44 JSValue JSNodeFilter::acceptNode(ExecState* exec, const ArgList& args)
49 PassRefPtr<NodeFilter> toNodeFilter(JSValue value)
JSSVGLengthCustom.cpp 29 JSValue JSSVGLength::value(ExecState* exec) const
38 JSValue JSSVGLength::convertToSpecifiedUnits(ExecState* exec, const ArgList& args)
JSXMLHttpRequestUploadCustom.cpp 54 JSValue JSXMLHttpRequestUpload::addEventListener(ExecState* exec, const ArgList& args)
56 JSValue listener = args.at(1);
64 JSValue JSXMLHttpRequestUpload::removeEventListener(ExecState* exec, const ArgList& args)
66 JSValue listener = args.at(1);
  /external/webkit/WebCore/bridge/objc/
objc_utility.h 76 ObjcValue convertValueToObjcValue(ExecState*, JSValue, ObjcValueType);
77 JSValue convertNSStringToString(ExecState* exec, NSString *nsstring);
78 JSValue convertObjcValueToValue(ExecState*, void* buffer, ObjcValueType, RootObject*);
objc_runtime.h 47 virtual JSValue valueFromInstance(ExecState*, const Instance*) const;
48 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;
80 virtual void setValueAt(ExecState *exec, unsigned int index, JSValue aValue) const;
81 virtual JSValue valueAt(ExecState *exec, unsigned int index) const;
86 static JSValue convertObjcArrayToArray(ExecState *exec, ObjectStructPtr anObject);
105 static PassRefPtr<Structure> createStructure(JSValue prototype)
114 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
117 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
  /external/webkit/JavaScriptCore/runtime/
ArrayConstructor.cpp 38 static JSValue JSC_HOST_CALL arrayConstructorIsArray(ExecState*, JSObject*, JSValue, const ArgList&);
79 static JSValue JSC_HOST_CALL callArrayConstructor(ExecState* exec, JSObject*, JSValue, const ArgList& args)
92 JSValue JSC_HOST_CALL arrayConstructorIsArray(ExecState*, JSObject*, JSValue, const ArgList& args)
JSArray.h 28 typedef HashMap<unsigned, JSValue> SparseArrayValueMap;
36 JSValue m_vector[1];
52 virtual void put(ExecState*, unsigned propertyName, JSValue); // FIXME: Make protected and add setItem.
60 void sort(ExecState*, JSValue compareFunction, CallType, const CallData&);
61 void sortNumeric(ExecState*, JSValue compareFunction, CallType, const CallData&);
63 void push(ExecState*, JSValue);
64 JSValue pop();
67 JSValue getIndex(unsigned i)
74 void setIndex(unsigned i, JSValue v)
77 JSValue& x = m_storage->m_vector[i]
    [all...]
JSByteArray.h 39 JSValue getIndex(ExecState* exec, unsigned i)
67 void setIndex(ExecState* exec, unsigned i, JSValue value)
77 static PassRefPtr<Structure> createStructure(JSValue prototype);
82 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
83 virtual void put(JSC::ExecState*, unsigned propertyName, JSC::JSValue);
113 JSByteArray* asByteArray(JSValue value);
114 inline JSByteArray* asByteArray(JSValue value)
119 inline bool isJSByteArray(JSGlobalData* globalData, JSValue v) { return v.isCell() && v.asCell()->vptr() == globalData->jsByteArrayVPtr; }
JSObject.h 42 inline JSCell* getJSFunction(JSGlobalData& globalData, JSValue value)
86 JSValue prototype() const;
87 void setPrototype(JSValue prototype);
94 JSValue get(ExecState*, const Identifier& propertyName) const;
95 JSValue get(ExecState*, unsigned propertyName) const;
105 virtual void put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&);
106 virtual void put(ExecState*, unsigned propertyName, JSValue value);
108 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot);
109 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes);
110 virtual void putWithAttributes(ExecState*, unsigned propertyName, JSValue value, unsigned attributes)
    [all...]
NumberConstructor.h 36 JSValue getValueProperty(ExecState*, int token) const;
40 static PassRefPtr<Structure> createStructure(JSValue proto)
RegExpConstructor.h 60 static PassRefPtr<Structure> createStructure(JSValue prototype)
65 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
80 JSValue getBackref(ExecState*, unsigned) const;
81 JSValue getLastParen(ExecState*) const;
82 JSValue getLeftContext(ExecState*) const;
83 JSValue getRightContext(ExecState*) const;
97 RegExpConstructor* asRegExpConstructor(JSValue);
101 inline RegExpConstructor* asRegExpConstructor(JSValue value)
ArgList.h 90 JSValue at(size_t i) const
93 return m_buffer[i].jsValue();
104 void append(JSValue v)
131 JSValue last()
134 return m_buffer[m_size - 1].jsValue();
146 void slowAppend(JSValue);
181 typedef JSValue* iterator;
182 typedef const JSValue* const_iterator;
190 ArgList(JSValue* args, unsigned argCount)
201 : m_args(reinterpret_cast<JSValue*>(args)
    [all...]
JSGlobalObjectFunctions.cpp 53 static JSValue encode(ExecState* exec, const ArgList& args, const char* doNotEscape)
75 static JSValue decode(ExecState* exec, const ArgList& args, const char* doNotUnescape, bool strict)
274 JSValue JSC_HOST_CALL globalFuncEval(ExecState* exec, JSObject* function, JSValue thisValue, const ArgList& args)
281 JSValue x = args.at(0);
288 if (JSValue parsedObject = preparser.tryLiteralParse())
299 JSValue JSC_HOST_CALL globalFuncParseInt(ExecState* exec, JSObject*, JSValue, const ArgList& args)
301 JSValue value = args.at(0);
322 JSValue JSC_HOST_CALL globalFuncParseFloat(ExecState* exec, JSObject*, JSValue, const ArgList& args
    [all...]
BooleanConstructor.h 39 JSObject* constructBooleanFromImmediateBoolean(ExecState*, JSValue);
ConstructData.cpp 33 JSObject* construct(ExecState* exec, JSValue object, ConstructType constructType, const ConstructData& constructData, const ArgList& args)
JSStaticScopeObject.h 46 JSStaticScopeObject(ExecState* exec, const Identifier& ident, JSValue value, unsigned attributes)
57 virtual void put(ExecState*, const Identifier&, JSValue, PutPropertySlot&);
58 void putWithAttributes(ExecState*, const Identifier&, JSValue, unsigned attributes);
60 static PassRefPtr<Structure> createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount); }
StringObject.h 40 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue, PutPropertySlot&);
49 static PassRefPtr<Structure> createStructure(JSValue prototype)
59 StringObject* asStringObject(JSValue);
61 inline StringObject* asStringObject(JSValue value)
MarkStack.h 29 #include "JSValue.h"
49 ALWAYS_INLINE void append(JSValue);
54 appendValues(reinterpret_cast<JSValue*>(values), count, properties);
57 ALWAYS_INLINE void appendValues(JSValue* values, size_t count, MarkSetProperties properties = NoNullValues)
76 MarkSet(JSValue* values, JSValue* end, MarkSetProperties properties)
83 JSValue* m_values;
84 JSValue* m_end;
  /external/webkit/JavaScriptCore/
jsc.cpp 74 static JSValue JSC_HOST_CALL functionPrint(ExecState*, JSObject*, JSValue, const ArgList&);
75 static JSValue JSC_HOST_CALL functionDebug(ExecState*, JSObject*, JSValue, const ArgList&);
76 static JSValue JSC_HOST_CALL functionGC(ExecState*, JSObject*, JSValue, const ArgList&);
77 static JSValue JSC_HOST_CALL functionVersion(ExecState*, JSObject*, JSValue, const ArgList&);
78 static JSValue JSC_HOST_CALL functionRun(ExecState*, JSObject*, JSValue, const ArgList&)
    [all...]
  /external/webkit/JavaScriptCore/API/
JSValueRef.cpp 39 #include <runtime/JSValue.h>
52 JSValue jsValue = toJS(exec, value);
54 if (jsValue.isUndefined())
56 if (jsValue.isNull())
58 if (jsValue.isBoolean())
60 if (jsValue.isNumber())
62 if (jsValue.isString())
64 ASSERT(jsValue.isObject());
73 JSValue jsValue = toJS(exec, value)
    [all...]
  /external/webkit/JavaScriptGlue/
JSUtils.h 35 #include <JavaScriptCore/JSValue.h>
58 JSUserObject *KJSValueToJSObject(JSValue inValue, ExecState *exec);
59 CFTypeRef KJSValueToCFType(JSValue inValue, ExecState *exec);
60 JSValue JSObjectKJSValue(JSUserObject* ptr);

Completed in 241 milliseconds

1 2 3 45 6 7 8 91011>>