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

1 2 3

  /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...]
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*);
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...]
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)
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*);
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...]
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...]
DateConstructor.cpp 56 static EncodedJSValue JSC_HOST_CALL dateParse(ExecState*);
57 static EncodedJSValue JSC_HOST_CALL dateNow(ExecState*);
58 static EncodedJSValue JSC_HOST_CALL dateUTC(ExecState*);
127 static EncodedJSValue JSC_HOST_CALL constructWithDateConstructor(ExecState* exec)
140 static EncodedJSValue JSC_HOST_CALL callDate(ExecState* exec)
159 static EncodedJSValue JSC_HOST_CALL dateParse(ExecState* exec)
164 static EncodedJSValue JSC_HOST_CALL dateNow(ExecState*)
169 static EncodedJSValue JSC_HOST_CALL dateUTC(ExecState* exec)
ErrorConstructor.cpp 42 static EncodedJSValue JSC_HOST_CALL constructWithErrorConstructor(ExecState* exec)
55 static EncodedJSValue JSC_HOST_CALL callErrorConstructor(ExecState* exec)
ErrorPrototype.cpp 35 static EncodedJSValue JSC_HOST_CALL errorProtoFuncToString(ExecState*);
47 EncodedJSValue JSC_HOST_CALL errorProtoFuncToString(ExecState* exec)
FunctionPrototype.cpp 36 static EncodedJSValue JSC_HOST_CALL functionProtoFuncToString(ExecState*);
37 static EncodedJSValue JSC_HOST_CALL functionProtoFuncApply(ExecState*);
38 static EncodedJSValue JSC_HOST_CALL functionProtoFuncCall(ExecState*);
55 static EncodedJSValue JSC_HOST_CALL callFunctionPrototype(ExecState*)
85 EncodedJSValue JSC_HOST_CALL functionProtoFuncToString(ExecState* exec)
106 EncodedJSValue JSC_HOST_CALL functionProtoFuncApply(ExecState* exec)
135 EncodedJSValue JSC_HOST_CALL functionProtoFuncCall(ExecState* exec)
StringConstructor.cpp 42 static EncodedJSValue JSC_HOST_CALL stringFromCharCode(ExecState* exec)
68 static EncodedJSValue JSC_HOST_CALL constructWithStringConstructor(ExecState* exec)
83 static EncodedJSValue JSC_HOST_CALL callStringConstructor(ExecState* exec)
  /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)
JSEventSourceCustom.cpp 47 EncodedJSValue JSC_HOST_CALL JSEventSourceConstructor::constructJSEventSource(ExecState* exec)
  /external/webkit/Source/JavaScriptCore/
jsc.cpp 74 static EncodedJSValue JSC_HOST_CALL functionPrint(ExecState*);
75 static EncodedJSValue JSC_HOST_CALL functionDebug(ExecState*);
76 static EncodedJSValue JSC_HOST_CALL functionGC(ExecState*);
77 static EncodedJSValue JSC_HOST_CALL functionVersion(ExecState*);
78 static EncodedJSValue JSC_HOST_CALL functionRun(ExecState*);
79 static EncodedJSValue JSC_HOST_CALL functionLoad(ExecState*);
80 static EncodedJSValue JSC_HOST_CALL functionCheckSyntax(ExecState*);
81 static EncodedJSValue JSC_HOST_CALL functionReadline(ExecState*);
82 static NO_RETURN_WITH_VALUE EncodedJSValue JSC_HOST_CALL functionQuit(ExecState*);
85 static EncodedJSValue JSC_HOST_CALL functionSetSamplingFlags(ExecState*)
    [all...]

Completed in 491 milliseconds

1 2 3