Searched refs:exec (Results 226 - 250 of 707) sorted by relevance

1234567891011>>

/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Ditspoof.h23 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dlcukocol.h25 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dstrtest.h31 void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par=NULL);
H A Dsvccoll.h25 void runIndexedTest(int32_t index, UBool exec, const char* &name, char* /*par = NULL */);
H A Dtransrt.h26 void runIndexedTest(int32_t index, UBool exec, const char* &name,
H A Dtrcoll.h30 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
H A Dtsputil.h18 void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par );
H A Dlcukocol.cpp74 void LotusCollationKoreanTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) argument
76 if (exec) logln("TestSuite LotusCollationKoreanTest: ");
79 case 0: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
H A Descoll.cpp100 void CollationSpanishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par */) argument
102 if (exec) logln("TestSuite CollationSpanishTest: ");
104 if((!myCollation) && exec) {
110 case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break;
111 case 1: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
H A Dtrcoll.cpp90 void CollationTurkishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) argument
92 if (exec) logln("TestSuite CollationTurkishTest: ");
94 if((!myCollation) && exec) {
100 case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break;
101 case 1: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
H A Dlistformattertest.cpp217 void ListFormatterTest::runIndexedTest(int32_t index, UBool exec, argument
220 case 0: name = "TestRoot"; if (exec) TestRoot(); break;
221 case 1: name = "TestBogus"; if (exec) TestBogus(); break;
222 case 2: name = "TestEnglish"; if (exec) TestEnglish(); break;
223 case 3: name = "TestEnglishUS"; if (exec) TestEnglishUS(); break;
224 case 4: name = "TestRussian"; if (exec) TestRussian(); break;
225 case 5: name = "TestMalayalam"; if (exec) TestMalayalam(); break;
226 case 6: name = "TestZulu"; if (exec) TestZulu(); break;
227 case 7: name = "TestOutOfOrderPatterns"; if (exec) TestOutOfOrderPatterns(); break;
228 case 8: name = "Test9946"; if (exec) Test994
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/profiler/
H A DProfilerOriginStack.cpp100 JSValue OriginStack::toJS(ExecState* exec) const
102 JSArray* result = constructEmptyArray(exec, 0);
105 result->putDirectIndex(exec, i, m_stack[i].toJS(exec));
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DDateInstance.h57 const GregorianDateTime* gregorianDateTime(ExecState* exec) const
61 return calculateGregorianDateTime(exec);
64 const GregorianDateTime* gregorianDateTimeUTC(ExecState* exec) const
68 return calculateGregorianDateTimeUTC(exec);
H A DJSNameScope.h39 static JSNameScope* create(ExecState* exec, const Identifier& identifier, JSValue value, unsigned attributes) argument
41 VM& vm = exec->vm();
42 JSNameScope* scopeObject = new (NotNull, allocateCell<JSNameScope>(vm.heap)) JSNameScope(vm, exec->lexicalGlobalObject(), exec->scope());
H A DJSScope.cpp51 static inline bool abstractAccess(ExecState* exec, JSScope* scope, const Identifier& ident, GetOrPut getOrPut, size_t depth, bool& needsVarInjectionChecks, ResolveOp& op) argument
54 if (ident == exec->propertyNames().arguments) {
93 if (!globalObject->getOwnPropertySlot(globalObject, exec, ident, slot)
128 JSValue JSScope::resolve(ExecState* exec, JSScope* scope, const Identifier& ident) argument
138 if (object->hasProperty(exec, ident))
143 ResolveOp JSScope::abstractResolve(ExecState* exec, JSScope* scope, const Identifier& ident, GetOrPut getOrPut, ResolveType unlinkedType) argument
152 if (abstractAccess(exec, scope, ident, getOrPut, depth, needsVarInjectionChecks, op))
/macosx-10.10.1/emacs-93/emacs/src/m/
H A Dgould-np1.h52 #define aouthdr exec
/macosx-10.10.1/expat-12/expat/amiga/
H A Dlaunch.c25 #include <proto/exec.h>
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DEvalCodeCache.h52 EvalExecutable* getSlow(ExecState* exec, ScriptExecutable* owner, bool inStrictContext, const String& evalSource, JSScope* scope) argument
54 EvalExecutable* evalExecutable = EvalExecutable::create(exec, makeSource(evalSource), inStrictContext);
59 m_cacheMap.set(evalSource.impl(), WriteBarrier<EvalExecutable>(exec->vm(), owner, evalExecutable));
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A DRegExp_input.js48 // RegExp.input = "abcd12357efg"; /\d+/.exec('2345')
50 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /\\d+/.exec('2345')",
51 String(["2345"]), String(/\d+/.exec('2345')));
53 // RegExp.input = "abcd12357efg"; /\d+/.exec(RegExp.input)
55 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /\\d+/.exec(RegExp.input)",
56 String(["12357"]), String(/\d+/.exec(RegExp.input)));
58 // RegExp.input = "abcd12357efg"; /[h-z]+/.exec(RegExp.input)
60 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; /[h-z]+/.exec(RegExp.input)",
61 null, /[h-z]+/.exec(RegExp.input));
H A DRegExp_input_as_array.js48 // RegExp['$_'] = "abcd12357efg"; /\d+/.exec('2345')
50 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /\\d+/.exec('2345')",
51 String(["2345"]), String(/\d+/.exec('2345')));
53 // RegExp['$_'] = "abcd12357efg"; /\d+/.exec(RegExp.input)
55 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /\\d+/.exec(RegExp.input)",
56 String(["12357"]), String(/\d+/.exec(RegExp.input)));
58 // RegExp['$_'] = "abcd12357efg"; /[h-z]+/.exec(RegExp.input)
60 testcases[count++] = new TestCase ( SECTION, "RegExp['$_'] = 'abcd12357efg'; /[h-z]+/.exec(RegExp.input)",
61 null, /[h-z]+/.exec(RegExp.input));
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dman.vim116 exec "let s:man_tag_buf_".s:man_tag_depth." = ".bufnr("%")
117 exec "let s:man_tag_lin_".s:man_tag_depth." = ".line(".")
118 exec "let s:man_tag_col_".s:man_tag_depth." = ".col(".")
142 silent exec "edit $HOME/".page.".".sect."~"
147 silent exec "norm 1GdG"
149 silent exec "r!/usr/bin/man ".s:GetCmdArg(sect, page)." | col -b"
166 exec "let s:man_tag_buf=s:man_tag_buf_".s:man_tag_depth
167 exec "let s:man_tag_lin=s:man_tag_lin_".s:man_tag_depth
168 exec "let s:man_tag_col=s:man_tag_col_".s:man_tag_depth
169 exec
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/Hosted/
H A DNetscapePluginInstanceProxy.mm887 ExecState* exec = globalObject->globalExec();
891 JSValue result = JSC::evaluate(exec, makeSource(script));
893 marshalValue(exec, result, resultData, resultLength);
894 exec->clearException();
916 ExecState* exec = frame->script().globalObject(pluginWorld())->globalExec();
917 JSLockHolder lock(exec);
918 JSValue function = object->get(exec, methodName);
925 demarshalValues(exec, argumentsData, argumentsLength, argList);
927 JSValue value = call(exec, function, callType, callData, object, argList);
929 marshalValue(exec, valu
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/
H A DJSScriptRef.cpp136 ExecState* exec = toJS(context); local
137 JSLockHolder locker(exec);
138 if (script->vm() != &exec->vm()) {
143 JSValue thisValue = thisValueRef ? toJS(exec, thisValueRef) : jsUndefined();
144 JSValue result = evaluate(exec, SourceCode(script), thisValue, &internalException);
147 *exception = toRef(exec, internalException);
151 return toRef(exec, result);
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dprocess.hpp120 status exec(const atf::fs::path&, const argv_array&,
132 status exec(const atf::fs::path&, const argv_array&,
144 status exec(const atf::fs::path&, const argv_array&,
156 status exec(const atf::fs::path&, const argv_array&,
168 status exec(const atf::fs::path&, const argv_array&,
184 status exec(const atf::fs::path&, const argv_array&,
251 exec(const atf::fs::path& prog, const argv_array& argv, function in namespace:atf::process
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/agents/
H A DInspectorProfilerAgent.cpp242 String InspectorProfilerAgent::startProfiling(const String &title, JSC::ExecState* exec) argument
254 if (!exec)
255 exec = profilingGlobalExecState();
256 ASSERT(exec);
258 JSC::LegacyProfiler::profiler()->startProfiling(exec, resolvedTitle);
266 PassRefPtr<JSC::Profile> InspectorProfilerAgent::stopProfiling(const String& title, JSC::ExecState* exec) argument
273 if (!exec)
274 exec = profilingGlobalExecState();
275 ASSERT(exec);
277 RefPtr<JSC::Profile> profile = JSC::LegacyProfiler::profiler()->stopProfiling(exec, titl
[all...]

Completed in 163 milliseconds

1234567891011>>