HomeSort by relevance Sort by last modified time
    Searched refs:EncodedJSValue (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/webkit/Source/JavaScriptCore/dfg/
DFGOperations.h 41 typedef EncodedJSValue (*J_DFGOperation_EJJ)(ExecState*, EncodedJSValue, EncodedJSValue);
42 typedef EncodedJSValue (*J_DFGOperation_EJ)(ExecState*, EncodedJSValue);
43 typedef EncodedJSValue (*J_DFGOperation_EJP)(ExecState*, EncodedJSValue, void*);
44 typedef EncodedJSValue (*J_DFGOperation_EJI)(ExecState*, EncodedJSValue, Identifier*);
45 typedef bool (*Z_DFGOperation_EJ)(ExecState*, EncodedJSValue);
    [all...]
DFGOperations.cpp 39 EncodedJSValue operationConvertThis(ExecState* exec, EncodedJSValue encodedOp)
44 EncodedJSValue operationValueAdd(ExecState* exec, EncodedJSValue encodedOp1, EncodedJSValue encodedOp2)
65 EncodedJSValue operationGetByVal(ExecState* exec, EncodedJSValue encodedBase, EncodedJSValue encodedProperty)
104 EncodedJSValue operationGetById(ExecState* exec, EncodedJSValue encodedBase, Identifier* identifier
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObjectFunctions.h 39 EncodedJSValue JSC_HOST_CALL globalFuncEval(ExecState*);
40 EncodedJSValue JSC_HOST_CALL globalFuncParseInt(ExecState*);
41 EncodedJSValue JSC_HOST_CALL globalFuncParseFloat(ExecState*);
42 EncodedJSValue JSC_HOST_CALL globalFuncIsNaN(ExecState*);
43 EncodedJSValue JSC_HOST_CALL globalFuncIsFinite(ExecState*);
44 EncodedJSValue JSC_HOST_CALL globalFuncDecodeURI(ExecState*);
45 EncodedJSValue JSC_HOST_CALL globalFuncDecodeURIComponent(ExecState*);
46 EncodedJSValue JSC_HOST_CALL globalFuncEncodeURI(ExecState*);
47 EncodedJSValue JSC_HOST_CALL globalFuncEncodeURIComponent(ExecState*);
48 EncodedJSValue JSC_HOST_CALL globalFuncEscape(ExecState*)
    [all...]
StringRecursionChecker.cpp 28 EncodedJSValue StringRecursionChecker::throwStackOverflowError()
33 EncodedJSValue StringRecursionChecker::emptyString()
StringRecursionChecker.h 34 EncodedJSValue earlyReturnValue() const; // 0 if everything is OK, value to return for failure cases
37 EncodedJSValue throwStackOverflowError();
38 EncodedJSValue emptyString();
39 EncodedJSValue performCheck();
43 EncodedJSValue m_earlyReturnValue;
46 inline EncodedJSValue StringRecursionChecker::performCheck()
64 inline EncodedJSValue StringRecursionChecker::earlyReturnValue() const
MathObject.cpp 37 static EncodedJSValue JSC_HOST_CALL mathProtoFuncAbs(ExecState*);
38 static EncodedJSValue JSC_HOST_CALL mathProtoFuncACos(ExecState*);
39 static EncodedJSValue JSC_HOST_CALL mathProtoFuncASin(ExecState*);
40 static EncodedJSValue JSC_HOST_CALL mathProtoFuncATan(ExecState*);
41 static EncodedJSValue JSC_HOST_CALL mathProtoFuncATan2(ExecState*);
42 static EncodedJSValue JSC_HOST_CALL mathProtoFuncCeil(ExecState*);
43 static EncodedJSValue JSC_HOST_CALL mathProtoFuncCos(ExecState*);
44 static EncodedJSValue JSC_HOST_CALL mathProtoFuncExp(ExecState*);
45 static EncodedJSValue JSC_HOST_CALL mathProtoFuncFloor(ExecState*);
46 static EncodedJSValue JSC_HOST_CALL mathProtoFuncLog(ExecState*)
    [all...]
ObjectPrototype.cpp 33 static EncodedJSValue JSC_HOST_CALL objectProtoFuncValueOf(ExecState*);
34 static EncodedJSValue JSC_HOST_CALL objectProtoFuncHasOwnProperty(ExecState*);
35 static EncodedJSValue JSC_HOST_CALL objectProtoFuncIsPrototypeOf(ExecState*);
36 static EncodedJSValue JSC_HOST_CALL objectProtoFuncDefineGetter(ExecState*);
37 static EncodedJSValue JSC_HOST_CALL objectProtoFuncDefineSetter(ExecState*);
38 static EncodedJSValue JSC_HOST_CALL objectProtoFuncLookupGetter(ExecState*);
39 static EncodedJSValue JSC_HOST_CALL objectProtoFuncLookupSetter(ExecState*);
40 static EncodedJSValue JSC_HOST_CALL objectProtoFuncPropertyIsEnumerable(ExecState*);
41 static EncodedJSValue JSC_HOST_CALL objectProtoFuncToLocaleString(ExecState*);
83 EncodedJSValue JSC_HOST_CALL objectProtoFuncValueOf(ExecState* exec
    [all...]
DatePrototype.cpp 76 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetDate(ExecState*);
77 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetDay(ExecState*);
78 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetFullYear(ExecState*);
79 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetHours(ExecState*);
80 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetMilliSeconds(ExecState*);
81 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetMinutes(ExecState*);
82 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetMonth(ExecState*);
83 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetSeconds(ExecState*);
84 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetTime(ExecState*);
85 static EncodedJSValue JSC_HOST_CALL dateProtoFuncGetTimezoneOffset(ExecState*)
    [all...]
BooleanPrototype.cpp 35 static EncodedJSValue JSC_HOST_CALL booleanProtoFuncToString(ExecState*);
36 static EncodedJSValue JSC_HOST_CALL booleanProtoFuncValueOf(ExecState*);
54 EncodedJSValue JSC_HOST_CALL booleanProtoFuncToString(ExecState* exec)
73 EncodedJSValue JSC_HOST_CALL booleanProtoFuncValueOf(ExecState* exec)
ObjectPrototype.h 39 EncodedJSValue JSC_HOST_CALL objectProtoFuncToString(ExecState*);
RegExpPrototype.cpp 43 static EncodedJSValue JSC_HOST_CALL regExpProtoFuncTest(ExecState*);
44 static EncodedJSValue JSC_HOST_CALL regExpProtoFuncExec(ExecState*);
45 static EncodedJSValue JSC_HOST_CALL regExpProtoFuncCompile(ExecState*);
46 static EncodedJSValue JSC_HOST_CALL regExpProtoFuncToString(ExecState*);
61 EncodedJSValue JSC_HOST_CALL regExpProtoFuncTest(ExecState* exec)
69 EncodedJSValue JSC_HOST_CALL regExpProtoFuncExec(ExecState* exec)
77 EncodedJSValue JSC_HOST_CALL regExpProtoFuncCompile(ExecState* exec)
115 EncodedJSValue JSC_HOST_CALL regExpProtoFuncToString(ExecState* exec)
127 if (EncodedJSValue earlyReturnValue = checker.earlyReturnValue())
StringPrototype.cpp 49 static EncodedJSValue JSC_HOST_CALL stringProtoFuncToString(ExecState*);
50 static EncodedJSValue JSC_HOST_CALL stringProtoFuncCharAt(ExecState*);
51 static EncodedJSValue JSC_HOST_CALL stringProtoFuncCharCodeAt(ExecState*);
52 static EncodedJSValue JSC_HOST_CALL stringProtoFuncConcat(ExecState*);
53 static EncodedJSValue JSC_HOST_CALL stringProtoFuncIndexOf(ExecState*);
54 static EncodedJSValue JSC_HOST_CALL stringProtoFuncLastIndexOf(ExecState*);
55 static EncodedJSValue JSC_HOST_CALL stringProtoFuncMatch(ExecState*);
56 static EncodedJSValue JSC_HOST_CALL stringProtoFuncReplace(ExecState*);
57 static EncodedJSValue JSC_HOST_CALL stringProtoFuncSearch(ExecState*);
58 static EncodedJSValue JSC_HOST_CALL stringProtoFuncSlice(ExecState*)
    [all...]
ArrayConstructor.cpp 38 static EncodedJSValue JSC_HOST_CALL arrayConstructorIsArray(ExecState*);
69 static EncodedJSValue JSC_HOST_CALL constructWithArrayConstructor(ExecState* exec)
82 static EncodedJSValue JSC_HOST_CALL callArrayConstructor(ExecState* exec)
96 EncodedJSValue JSC_HOST_CALL arrayConstructorIsArray(ExecState* exec)
CallData.h 48 typedef EncodedJSValue (JSC_HOST_CALL *NativeFunction)(ExecState*);
ConstructData.h 48 typedef EncodedJSValue (JSC_HOST_CALL *NativeConstructor)(ExecState*);
ErrorPrototype.cpp 35 static EncodedJSValue JSC_HOST_CALL errorProtoFuncToString(ExecState*);
47 EncodedJSValue JSC_HOST_CALL errorProtoFuncToString(ExecState* exec)
52 if (EncodedJSValue earlyReturnValue = checker.earlyReturnValue())
ObjectConstructor.cpp 38 static EncodedJSValue JSC_HOST_CALL objectConstructorGetPrototypeOf(ExecState*);
39 static EncodedJSValue JSC_HOST_CALL objectConstructorGetOwnPropertyDescriptor(ExecState*);
40 static EncodedJSValue JSC_HOST_CALL objectConstructorGetOwnPropertyNames(ExecState*);
41 static EncodedJSValue JSC_HOST_CALL objectConstructorKeys(ExecState*);
42 static EncodedJSValue JSC_HOST_CALL objectConstructorDefineProperty(ExecState*);
43 static EncodedJSValue JSC_HOST_CALL objectConstructorDefineProperties(ExecState*);
44 static EncodedJSValue JSC_HOST_CALL objectConstructorCreate(ExecState*);
45 static EncodedJSValue JSC_HOST_CALL objectConstructorSeal(ExecState*);
46 static EncodedJSValue JSC_HOST_CALL objectConstructorFreeze(ExecState*);
47 static EncodedJSValue JSC_HOST_CALL objectConstructorPreventExtensions(ExecState*)
    [all...]
JSValue.h 60 typedef int64_t EncodedJSValue;
62 typedef void* EncodedJSValue;
108 static EncodedJSValue encode(JSValue);
109 static JSValue decode(EncodedJSValue);
368 typedef IntHash<EncodedJSValue> EncodedJSValueHash;
370 struct EncodedJSValueHashTraits : HashTraits<EncodedJSValue> {
372 static EncodedJSValue emptyValue() { return JSValue::encode(JSValue()); }
373 static void constructDeletedValue(EncodedJSValue& slot) { slot = JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
374 static bool isDeletedValue(EncodedJSValue value) { return value == JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
377 typedef PtrHash<EncodedJSValue> EncodedJSValueHash
    [all...]
NumberPrototype.cpp 39 static EncodedJSValue JSC_HOST_CALL numberProtoFuncToString(ExecState*);
40 static EncodedJSValue JSC_HOST_CALL numberProtoFuncToLocaleString(ExecState*);
41 static EncodedJSValue JSC_HOST_CALL numberProtoFuncValueOf(ExecState*);
42 static EncodedJSValue JSC_HOST_CALL numberProtoFuncToFixed(ExecState*);
43 static EncodedJSValue JSC_HOST_CALL numberProtoFuncToExponential(ExecState*);
44 static EncodedJSValue JSC_HOST_CALL numberProtoFuncToPrecision(ExecState*);
99 EncodedJSValue JSC_HOST_CALL numberProtoFuncToExponential(ExecState* exec)
129 EncodedJSValue JSC_HOST_CALL numberProtoFuncToFixed(ExecState* exec)
167 EncodedJSValue JSC_HOST_CALL numberProtoFuncToPrecision(ExecState* exec)
203 EncodedJSValue JSC_HOST_CALL numberProtoFuncToString(ExecState* exec
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.h 64 EncodedJSValue asEncodedJSValue;
276 extern "C" EncodedJSValue ctiTrampoline(void* code, RegisterFile*, CallFrame*, void* /*unused1*/, Profiler**, JSGlobalData*);
315 EncodedJSValue JIT_STUB cti_op_add(STUB_ARGS_DECLARATION);
316 EncodedJSValue JIT_STUB cti_op_bitand(STUB_ARGS_DECLARATION);
317 EncodedJSValue JIT_STUB cti_op_bitnot(STUB_ARGS_DECLARATION);
318 EncodedJSValue JIT_STUB cti_op_bitor(STUB_ARGS_DECLARATION);
319 EncodedJSValue JIT_STUB cti_op_bitxor(STUB_ARGS_DECLARATION);
320 EncodedJSValue JIT_STUB cti_op_call_NotJSFunction(STUB_ARGS_DECLARATION);
321 EncodedJSValue JIT_STUB cti_op_call_eval(STUB_ARGS_DECLARATION);
322 EncodedJSValue JIT_STUB cti_op_construct_NotJSConstruct(STUB_ARGS_DECLARATION)
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestObj.h 86 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionVoidMethod(JSC::ExecState*);
87 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionVoidMethodWithArgs(JSC::ExecState*);
88 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionIntMethod(JSC::ExecState*);
89 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionIntMethodWithArgs(JSC::ExecState*);
90 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionObjMethod(JSC::ExecState*);
91 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionObjMethodWithArgs(JSC::ExecState*);
92 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionMethodThatRequiresAllArgs(JSC::ExecState*);
93 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionMethodThatRequiresAllArgsAndThrows(JSC::ExecState*);
94 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionSerializedValue(JSC::ExecState*);
95 JSC::EncodedJSValue JSC_HOST_CALL jsTestObjPrototypeFunctionIdbKey(JSC::ExecState*)
    [all...]
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackFunction.h 50 static EncodedJSValue JSC_HOST_CALL call(ExecState*);
  /external/webkit/Source/WebCore/bindings/js/
JSArrayBufferCustom.cpp 37 EncodedJSValue JSC_HOST_CALL JSArrayBufferConstructor::constructJSArrayBuffer(ExecState* exec)
JSWebKitCSSMatrixCustom.cpp 35 EncodedJSValue JSC_HOST_CALL JSWebKitCSSMatrixConstructor::constructJSWebKitCSSMatrix(ExecState* exec)
JSWebKitPointCustom.cpp 35 EncodedJSValue JSC_HOST_CALL JSWebKitPointConstructor::constructJSWebKitPoint(ExecState* exec)

Completed in 220 milliseconds

1 2 3 4