Searched refs:exec (Results 176 - 200 of 707) sorted by relevance

1234567891011>>

/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dcitrtest.h20 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dcurrcoll.h32 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL);
H A Dencoll.h31 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dg7coll.h53 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dlocnmtst.h18 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL);
H A Dmiscdtfm.h22 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
H A Dpptest.h22 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
H A Dregiontst.h22 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
H A Dreptest.h31 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par=NULL);
H A Dtchcfmt.h53 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dtsdcfmsy.h21 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dtsdtfmsy.h20 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dtsmthred.h25 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dtufmtts.h21 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Duobjtest.h18 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
H A Duvectest.h25 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dv32test.h25 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL );
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DDateInstance.cpp61 const GregorianDateTime* DateInstance::calculateGregorianDateTime(ExecState* exec) const
67 VM& vm = exec->vm();
78 const GregorianDateTime* DateInstance::calculateGregorianDateTimeUTC(ExecState* exec) const
84 VM& vm = exec->vm();
H A DErrorInstance.h48 static ErrorInstance* create(ExecState* exec, Structure* structure, JSValue message, Vector<StackFrame> stackTrace = Vector<StackFrame>()) argument
50 return create(exec->vm(), structure, message.isUndefined() ? String() : message.toString(exec)->value(exec), stackTrace);
H A DJSDataView.cpp46 ExecState* exec, Structure* structure, PassRefPtr<ArrayBuffer> passedBuffer,
52 exec, createRangeError(exec, "Byte offset and length out of range of buffer"));
55 VM& vm = exec->vm();
89 JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot)
92 if (propertyName == exec->propertyNames().byteLength) {
97 return Base::getOwnPropertySlot(thisObject, exec, propertyName, slot);
45 create( ExecState* exec, Structure* structure, PassRefPtr<ArrayBuffer> passedBuffer, unsigned byteOffset, unsigned byteLength) argument
88 getOwnPropertySlot( JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
H A DJSStringJoiner.cpp97 JSValue JSStringJoiner::join(ExecState* exec) argument
100 return throwOutOfMemoryError(exec);
103 return jsEmptyString(exec);
113 return throwOutOfMemoryError(exec);
116 return jsEmptyString(exec);
125 return throwOutOfMemoryError(exec);
127 return JSString::create(exec->vm(), outputStringImpl.release());
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A DRegExp_lastIndex.js42 // re=/x./g; re.lastIndex=4; re.exec('xyabcdxa');
45 testcases[count++] = new TestCase ( SECTION, "re=/x./g; re.lastIndex=4; re.exec('xyabcdxa')",
46 '["xa"]', String(re.exec('xyabcdxa')));
52 // re.exec('xyabcdef');
53 testcases[count++] = new TestCase ( SECTION, "re.exec('xyabcdef')",
54 null, re.exec('xyabcdef'));
60 // re.exec('xyabcdef');
61 testcases[count++] = new TestCase ( SECTION, "re.exec('xyabcdef')",
62 '["xy"]', String(re.exec('xyabcdef')));
64 // re.lastIndex=30; re.exec('12
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DJSNPMethod.h44 static JSNPMethod* create(JSC::ExecState* exec, JSC::JSGlobalObject* globalObject, const String& name, NPIdentifier npIdent) argument
46 JSC::Structure* structure = createStructure(exec->vm(), globalObject, globalObject->functionPrototype());
47 JSNPMethod* method = new (JSC::allocateCell<JSNPMethod>(*exec->heap())) JSNPMethod(globalObject, structure, npIdent);
48 method->finishCreation(exec->vm(), name);
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Dexec.h59 * exec stucture in an a.out file derived from FSF's
69 struct exec struct
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DAPICast.h63 inline JSC::JSValue toJS(JSC::ExecState* exec, JSValueRef v) argument
65 ASSERT_UNUSED(exec, exec);
85 inline JSC::JSValue toJSForGC(JSC::ExecState* exec, JSValueRef v) argument
87 ASSERT_UNUSED(exec, exec);
125 inline JSValueRef toRef(JSC::ExecState* exec, JSC::JSValue v) argument
127 ASSERT(exec->vm().currentThreadIsHoldingAPILock());
132 return reinterpret_cast<JSValueRef>(JSC::jsAPIValueWrapper(exec, v).asCell());
135 UNUSED_PARAM(exec);
[all...]

Completed in 289 milliseconds

1234567891011>>