Home | History | Annotate | Download | only in API

Lines Matching refs:ctx

47 ::JSType JSValueGetType(JSContextRef ctx, JSValueRef value)
49 ExecState* exec = toJS(ctx);
68 bool JSValueIsUndefined(JSContextRef ctx, JSValueRef value)
70 ExecState* exec = toJS(ctx);
77 bool JSValueIsNull(JSContextRef ctx, JSValueRef value)
79 ExecState* exec = toJS(ctx);
86 bool JSValueIsBoolean(JSContextRef ctx, JSValueRef value)
88 ExecState* exec = toJS(ctx);
95 bool JSValueIsNumber(JSContextRef ctx, JSValueRef value)
97 ExecState* exec = toJS(ctx);
104 bool JSValueIsString(JSContextRef ctx, JSValueRef value)
106 ExecState* exec = toJS(ctx);
113 bool JSValueIsObject(JSContextRef ctx, JSValueRef value)
115 ExecState* exec = toJS(ctx);
122 bool JSValueIsObjectOfClass(JSContextRef ctx, JSValueRef value, JSClassRef jsClass)
124 ExecState* exec = toJS(ctx);
138 bool JSValueIsEqual(JSContextRef ctx, JSValueRef a, JSValueRef b, JSValueRef* exception)
140 ExecState* exec = toJS(ctx);
155 bool JSValueIsStrictEqual(JSContextRef ctx, JSValueRef a, JSValueRef b)
157 ExecState* exec = toJS(ctx);
166 bool JSValueIsInstanceOfConstructor(JSContextRef ctx, JSValueRef value, JSObjectRef constructor, JSValueRef* exception)
168 ExecState* exec = toJS(ctx);
185 JSValueRef JSValueMakeUndefined(JSContextRef ctx)
187 ExecState* exec = toJS(ctx);
193 JSValueRef JSValueMakeNull(JSContextRef ctx)
195 ExecState* exec = toJS(ctx);
201 JSValueRef JSValueMakeBoolean(JSContextRef ctx, bool value)
203 ExecState* exec = toJS(ctx);
209 JSValueRef JSValueMakeNumber(JSContextRef ctx, double value)
211 ExecState* exec = toJS(ctx);
217 JSValueRef JSValueMakeString(JSContextRef ctx, JSStringRef string)
219 ExecState* exec = toJS(ctx);
225 bool JSValueToBoolean(JSContextRef ctx, JSValueRef value)
227 ExecState* exec = toJS(ctx);
234 double JSValueToNumber(JSContextRef ctx, JSValueRef value, JSValueRef* exception)
236 ExecState* exec = toJS(ctx);
251 JSStringRef JSValueToStringCopy(JSContextRef ctx, JSValueRef value, JSValueRef* exception)
253 ExecState* exec = toJS(ctx);
268 JSObjectRef JSValueToObject(JSContextRef ctx, JSValueRef value, JSValueRef* exception)
270 ExecState* exec = toJS(ctx);
285 void JSValueProtect(JSContextRef ctx, JSValueRef value)
287 ExecState* exec = toJS(ctx);
294 void JSValueUnprotect(JSContextRef ctx, JSValueRef value)
296 ExecState* exec = toJS(ctx);