Searched refs:exec (Results 201 - 225 of 707) sorted by relevance

1234567891011>>

/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dficoll.cpp86 void CollationFinnishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) argument
88 if (exec) logln("TestSuite CollationFinnishTest: ");
90 if((!myCollation) && exec) {
96 case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break;
97 case 1: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
H A Dallcoll.cpp193 void CollationDummyTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) argument
195 if (exec) logln("TestSuite CollationDummyTest: ");
198 case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break;
199 case 1: name = "TestSecondary"; if (exec) TestSecondary(/* par */); break;
200 case 2: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
201 case 3: name = "TestExtra"; if (exec) TestExtra(/* par */); break;
202 case 4: name = "TestIdentical"; if (exec) TestIdentical(/* par */); break;
203 case 5: name = "TestJB581"; if (exec) TestJB581(/* par */); break;
H A Dalphaindextst.h21 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dastrotst.h23 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
H A Ddcfmapts.h20 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Ddecoll.h29 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Ddtifmtts.h21 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Descoll.h31 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dficoll.h30 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Ditrbnfp.h23 virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par);
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DJSString.cpp133 void JSRopeString::resolveRopeToAtomicString(ExecState* exec) const
136 resolveRope(exec);
167 AtomicStringImpl* JSRopeString::resolveRopeToExistingAtomicString(ExecState* exec) const
170 resolveRope(exec);
203 void JSRopeString::resolveRope(ExecState* exec) const
213 outOfMemory(exec);
227 outOfMemory(exec);
305 void JSRopeString::outOfMemory(ExecState* exec) const
310 if (exec)
311 throwOutOfMemoryError(exec);
314 getIndexSlowCase(ExecState* exec, unsigned i) argument
355 toObject(ExecState* exec, JSGlobalObject* globalObject) const argument
360 toThis(JSCell* cell, ExecState* exec, ECMAMode ecmaMode) argument
367 getStringPropertyDescriptor(ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) argument
[all...]
H A DJSActivation.cpp87 inline bool JSActivation::symbolTablePut(ExecState* exec, PropertyName propertyName, JSValue value, bool shouldThrow) argument
89 VM& vm = exec->vm();
94 GCSafeConcurrentJITLocker locker(symbolTable()->m_lock, exec->vm().heap);
101 throwTypeError(exec, StrictModeReadonlyPropertyWriteError);
115 void JSActivation::getOwnNonIndexPropertyNames(JSObject* object, ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode) argument
121 propertyNames.add(exec->propertyNames().arguments);
131 propertyNames.add(Identifier(exec, it->key.get()));
135 JSObject::getOwnNonIndexPropertyNames(thisObject, exec, propertyNames, mode);
160 bool JSActivation::getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
164 if (propertyName == exec
189 put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
204 deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
212 toThis(JSCell*, ExecState* exec, ECMAMode ecmaMode) argument
[all...]
H A DJSString.h375 ALWAYS_INLINE JSString* jsSingleCharacterSubstring(ExecState* exec, const String& s, unsigned offset) argument
377 VM* vm = &exec->vm();
391 ALWAYS_INLINE Identifier JSString::toIdentifier(ExecState* exec) const
393 return Identifier(exec, toAtomicString(exec));
396 ALWAYS_INLINE AtomicString JSString::toAtomicString(ExecState* exec) const
399 static_cast<const JSRopeString*>(this)->resolveRopeToAtomicString(exec);
403 ALWAYS_INLINE AtomicStringImpl* JSString::toExistingAtomicString(ExecState* exec) const
406 return static_cast<const JSRopeString*>(this)->resolveRopeToExistingAtomicString(exec);
417 inline const String& JSString::value(ExecState* exec) cons
431 getIndex(ExecState* exec, unsigned i) argument
[all...]
H A DDataView.cpp52 JSArrayBufferView* DataView::wrap(ExecState* exec, JSGlobalObject* globalObject) argument
55 exec, globalObject->typedArrayStructure(TypeDataView), buffer(), byteOffset(),
H A DJSConsole.h51 static JSConsole* create(ExecState* exec, Structure* structure) argument
53 return create(exec->vm(), structure);
H A DJSArray.h90 bool shiftCountForShift(ExecState* exec, unsigned startIndex, unsigned count) argument
92 return shiftCountWithArrayStorage(exec->vm(), startIndex, count, ensureArrayStorage(exec->vm()));
94 bool shiftCountForSplice(ExecState* exec, unsigned& startIndex, unsigned count) argument
96 return shiftCountWithAnyIndexingType(exec, startIndex, count);
99 bool shiftCount(ExecState* exec, unsigned& startIndex, unsigned count) argument
103 return shiftCountForShift(exec, startIndex, count);
105 return shiftCountForSplice(exec, startIndex, count);
112 bool unshiftCountForShift(ExecState* exec, unsigned startIndex, unsigned count) argument
114 return unshiftCountWithArrayStorage(exec, startInde
116 unshiftCountForSplice(ExecState* exec, unsigned startIndex, unsigned count) argument
121 unshiftCount(ExecState* exec, unsigned startIndex, unsigned count) argument
292 constructArray(ExecState* exec, Structure* arrayStructure, const ArgList& values) argument
308 constructArray(ExecState* exec, Structure* arrayStructure, const JSValue* values, unsigned length) argument
323 constructArrayNegativeIndexed(ExecState* exec, Structure* arrayStructure, const JSValue* values, unsigned length) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGOSREntry.cpp41 void* prepareOSREntry(ExecState* exec, CodeBlock* codeBlock, unsigned bytecodeIndex) argument
57 VM* vm = &exec->vm();
122 if (argument >= exec->argumentCountIncludingThis()) {
133 value = exec->thisValue();
135 value = exec->argument(argument - 1);
150 if (!exec->registers()[localOffset].jsValue().isNumber()) {
154 exec->registers()[localOffset].jsValue(), ", expected number.\n");
161 if (!exec->registers()[localOffset].jsValue().isMachineInt()) {
165 exec->registers()[localOffset].jsValue(), ", expected ",
172 if (!entry->m_expectedValues.local(local).validate(exec
[all...]
H A DDFGOSRExitPreparation.cpp39 void prepareCodeOriginForOSRExit(ExecState* exec, CodeOrigin codeOrigin) argument
41 VM& vm = exec->vm();
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSClassRef.cpp153 OpaqueJSClassContextData& OpaqueJSClass::contextData(ExecState* exec) argument
155 std::unique_ptr<OpaqueJSClassContextData>& contextData = exec->lexicalGlobalObject()->opaqueJSClassData().add(this, nullptr).iterator->value;
157 contextData = std::make_unique<OpaqueJSClassContextData>(exec->vm(), this);
167 OpaqueJSClassStaticValuesTable* OpaqueJSClass::staticValues(JSC::ExecState* exec) argument
169 return contextData(exec).staticValues.get();
172 OpaqueJSClassStaticFunctionsTable* OpaqueJSClass::staticFunctions(JSC::ExecState* exec) argument
174 return contextData(exec).staticFunctions.get();
185 JSObject* OpaqueJSClass::prototype(ExecState* exec) argument
198 OpaqueJSClassContextData& jsClassData = contextData(exec);
204 JSObject* prototype = JSCallbackObject<JSDestructibleObject>::create(exec, exe
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DProfileGenerator.cpp42 PassRefPtr<ProfileGenerator> ProfileGenerator::create(ExecState* exec, const String& title, unsigned uid) argument
44 return adoptRef(new ProfileGenerator(exec, title, uid));
47 ProfileGenerator::ProfileGenerator(ExecState* exec, const String& title, unsigned uid) argument
48 : m_origin(exec ? exec->lexicalGlobalObject() : 0)
49 , m_profileGroup(exec ? exec->lexicalGlobalObject()->profileGroup() : 0)
54 if (exec)
55 addParentForConsoleStart(exec);
60 AddParentForConsoleStartFunctor(ExecState* exec, RefPt argument
96 addParentForConsoleStart(ExecState* exec) argument
[all...]
H A DLegacyProfiler.cpp61 void LegacyProfiler::startProfiling(ExecState* exec, const String& title) argument
63 if (!exec)
68 JSGlobalObject* origin = exec->lexicalGlobalObject();
76 exec->vm().setEnabledProfiler(this);
77 RefPtr<ProfileGenerator> profileGenerator = ProfileGenerator::create(exec, title, ++ProfilesUID);
81 PassRefPtr<Profile> LegacyProfiler::stopProfiling(ExecState* exec, const String& title) argument
83 if (!exec)
86 JSGlobalObject* origin = exec->lexicalGlobalObject();
95 exec->vm().setEnabledProfiler(nullptr);
162 CallIdentifier LegacyProfiler::createCallIdentifier(ExecState* exec, JSValu argument
173 createCallIdentifierFromFunctionImp(ExecState* exec, JSObject* function, const String& defaultSourceURL, unsigned defaultLineNumber, unsigned defaultColumnNumber) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DScriptDebugServer.cpp95 dispatchBreakpointActionLog(debuggerCallFrame->exec(), breakpointAction.data);
102 reportException(debuggerCallFrame->exec(), exception);
106 dispatchBreakpointActionSound(debuggerCallFrame->exec(), breakpointAction.identifier);
112 reportException(debuggerCallFrame->exec(), exception);
143 void ScriptDebugServer::dispatchBreakpointActionLog(ExecState* exec, const String& message) argument
148 ListenerSet* listeners = getListenersForGlobalObject(exec->lexicalGlobalObject());
158 listener->breakpointActionLog(exec, message);
161 void ScriptDebugServer::dispatchBreakpointActionSound(ExecState* exec, int breakpointActionIdentifier) argument
166 ListenerSet* listeners = getListenersForGlobalObject(exec->lexicalGlobalObject());
179 void ScriptDebugServer::dispatchBreakpointActionProbe(ExecState* exec, cons argument
247 sourceParsed(ExecState* exec, SourceProvider* sourceProvider, int errorLine, const String& errorMessage) argument
310 handleExceptionInBreakpointCondition(JSC::ExecState* exec, JSC::JSValue exception) const argument
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DPlatform.js39 var versionMatch = / AppleWebKit\/([^ ]+)/.exec(navigator.userAgent);
44 var osVersionMatch = / Mac OS X (\d+)_(\d+)/.exec(navigator.appVersion);
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c++/
H A Dcheck.hpp76 friend std::auto_ptr< check_result > exec(const atf::process::argv_array&);
125 std::auto_ptr< check_result > exec(const atf::process::argv_array&);
/macosx-10.10.1/xnu-2782.1.97/bsd/i386/
H A Dexec.h60 * @(#)exec.h 8.1 (Berkeley) 6/11/93
86 ((ex).a_magic == ZMAGIC ? __LDPGSZ : sizeof(struct exec))
102 struct exec { struct

Completed in 161 milliseconds

1234567891011>>