Searched refs:Call (Results 1 - 25 of 173) sorted by relevance

1234567

/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/tie/
H A Dtie_rarray.tcl38 if {![$self Call array exists $rvar]} {
48 return [$self Call array get $remotevar]
52 $self Call array set $remotevar $dict
57 $self Call array unset $remotevar $pattern
62 return [$self Call array names $remotevar]
66 return [$self Call array size $remotevar]
70 return [$self Call set ${remotevar}($index)]
74 $self Call set ${remotevar}($index) $value
79 $self Call unset -nocomplain ${remotevar}($index)
104 method Call {arg
[all...]
/macosx-10.9.5/CPANInternal-140/IPC-LDT/
H A DMakefile.PL31 Filter::Util::Call => 1,
/macosx-10.9.5/CPANInternal-140/IPC-LDT-2.03/
H A DMakefile.PL31 Filter::Util::Call => 1,
/macosx-10.9.5/WebCore-7537.78.1/plugins/
H A DPluginMainThreadScheduler.h55 class Call;
57 void dispatchCallsForPlugin(NPP, const Deque<Call>& calls);
58 typedef HashMap<NPP, Deque<Call> > CallQueueMap;
62 class Call { class in class:WebCore::PluginMainThreadScheduler
64 Call(MainThreadFunction* function, void* userData) function in class:WebCore::PluginMainThreadScheduler::Call
H A DPluginMainThreadScheduler.cpp52 it->value.append(Call(function, userData));
65 m_callQueueMap.set(npp, Deque<Call>());
76 void PluginMainThreadScheduler::dispatchCallsForPlugin(NPP npp, const Deque<Call>& calls)
78 Deque<Call>::const_iterator end = calls.end();
79 for (Deque<Call>::const_iterator it = calls.begin(); it != end; ++it) {
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/virtchannel_base/
H A Dhalfpipe.tcl46 my Call -close-command $c
112 my Call -write-command $c $bytes
154 my Call -empty-command $channel
159 method Call {o args} {
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DLinkBuffer.h56 // * The return address of a Call may be acquired.
68 typedef MacroAssembler::Call Call; typedef in class:JSC::LinkBuffer
112 void link(Call call, FunctionPtr function)
114 ASSERT(call.isFlagSet(Call::Linkable));
145 CodeLocationCall locationOf(Call call)
147 ASSERT(call.isFlagSet(Call::Linkable));
148 ASSERT(!call.isFlagSet(Call::Near));
152 CodeLocationNearCall locationOfNearCall(Call call)
154 ASSERT(call.isFlagSet(Call
[all...]
H A DMacroAssemblerX86.h182 Call call()
184 return Call(m_assembler.call(), Call::Linkable);
193 Call tailRecursiveCall()
195 return Call::fromTailJump(jump());
198 Call makeTailRecursiveCall(Jump oldJump)
200 return Call::fromTailJump(oldJump);
294 static void linkCall(void* code, Call call, FunctionPtr function)
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGSpeculativeJIT.h884 JITCompiler::Call callOperation(P_DFGOperation_E operation, GPRReg result)
889 JITCompiler::Call callOperation(P_DFGOperation_EC operation, GPRReg result, GPRReg cell)
894 JITCompiler::Call callOperation(P_DFGOperation_EO operation, GPRReg result, GPRReg object)
899 JITCompiler::Call callOperation(P_DFGOperation_EOS operation, GPRReg result, GPRReg object, size_t size)
904 JITCompiler::Call callOperation(P_DFGOperation_EOZ operation, GPRReg result, GPRReg object, int32_t size)
909 JITCompiler::Call callOperation(C_DFGOperation_EOZ operation, GPRReg result, GPRReg object, int32_t size)
914 JITCompiler::Call callOperation(P_DFGOperation_EPS operation, GPRReg result, GPRReg old, size_t size)
919 JITCompiler::Call callOperation(P_DFGOperation_ES operation, GPRReg result, size_t size)
924 JITCompiler::Call callOperation(P_DFGOperation_ESt operation, GPRReg result, Structure* structure)
929 JITCompiler::Call callOperatio
[all...]
H A DDFGJITCompiler.h68 CallLinkRecord(MacroAssembler::Call call, FunctionPtr function)
74 MacroAssembler::Call m_call;
143 CallExceptionRecord(MacroAssembler::Call call, CodeOrigin codeOrigin)
149 CallExceptionRecord(MacroAssembler::Call call, MacroAssembler::Jump exceptionCheck, CodeOrigin codeOrigin)
156 MacroAssembler::Call m_call;
307 void notifyCall(Call functionCall, CodeOrigin codeOrigin, CallBeginToken& token)
314 Call appendCall(const FunctionPtr& function)
316 Call functionCall = call();
327 void addExceptionCheck(Call functionCall, CodeOrigin codeOrigin, CallBeginToken& token)
335 void addFastExceptionCheck(Call functionCal
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITStubCall.h207 JIT::Call call()
216 JIT::Call call = m_jit->call();
233 JIT::Call call(unsigned dst) // dst is a virtual register.
236 JIT::Call call = this->call();
244 JIT::Call callWithValueProfiling(unsigned dst)
247 JIT::Call call = this->call();
259 JIT::Call call(unsigned dst) // dst is a virtual register.
262 JIT::Call call = this->call();
267 JIT::Call callWithValueProfiling(unsigned dst)
270 JIT::Call cal
[all...]
/macosx-10.9.5/CPANInternal-140/Sub-Uplevel/t/
H A D03_nested_uplevels.t22 package Call;
30 push @result, recurse_call_check($depth, $up, @case, 'Call' );
34 $n == 1 ? "Wrap(Call)" : "Wrap(Call) x $n" ),
65 my @results = Call::recurse_call_check( $depth, $up, 'Call' );
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Didnaconf.h46 void Call();
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DCallLinkInfo.h46 enum CallType { None, Call, CallVarargs, Construct }; enumerator in enum:JSC::CallLinkInfo::CallType
50 return Call;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp228 Instruction *Call = CS.getInstruction(); local
245 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
247 Args, "", Call);
251 New = CallInst::Create(NF, Args, "", Call);
254 if (cast<CallInst>(Call)->isTailCall())
257 New->setDebugLoc(Call->getDebugLoc());
261 if (!Call->use_empty())
262 Call->replaceAllUsesWith(New);
264 New->takeName(Call);
268 Call
780 Instruction *Call = CS.getInstruction(); local
[all...]
H A DIPConstantPropagation.cpp225 Instruction* Call = CS.getInstruction(); local
229 if (!Call || !CS.isCallee(UI))
232 // Call result not used?
233 if (Call->use_empty())
244 Call->replaceAllUsesWith(New);
248 for (Value::use_iterator I = Call->use_begin(), E = Call->use_end();
H A DPruneEH.cpp178 CallInst *Call = CallInst::Create(II->getCalledValue(), Args, "", II); local
179 Call->takeName(II);
180 Call->setCallingConv(II->getCallingConv());
181 Call->setAttributes(II->getAttributes());
182 Call->setDebugLoc(II->getDebugLoc());
188 II->replaceAllUsesWith(Call);
H A DArgumentPromotion.cpp632 Instruction *Call = CS.getInstruction(); local
661 Call);
663 Args.push_back(new LoadInst(Idx, Idx->getName()+".val", Call));
690 V = GetElementPtrInst::Create(V, Ops, V->getName()+".idx", Call);
696 LoadInst *newLoad = new LoadInst(V, V->getName()+".val", Call);
718 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
720 Args, "", Call);
724 New = CallInst::Create(NF, Args, "", Call);
727 if (cast<CallInst>(Call)->isTailCall())
735 AA.replaceWithNewValue(Call, Ne
[all...]
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-report/
H A Dintegration_test.sh123 tc, expect_helpers, exit_any_and_exit, expected_exit, Call will exit
125 tc, expect_helpers, exit_code_and_exit, expected_exit, Call will exit
132 tc, expect_helpers, signal_any_and_signal, expected_signal, Call will signal
134 tc, expect_helpers, signal_no_and_signal, expected_signal, Call will signal
148 exit_any_and_exit: Expected failure: Call will exit
150 exit_code_and_exit: Expected failure: Call will exit
157 signal_any_and_signal: Expected failure: Call will signal
159 signal_no_and_signal: Expected failure: Call will signal
166 expect_helpers:exit_any_and_exit: Call will exit
167 expect_helpers:exit_code_and_exit: Call wil
[all...]
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/t/
H A D049Unhide.t14 require Filter::Util::Call;
18 plan skip_all => "Filter::Util::Call not available";
/macosx-10.9.5/CPANInternal-140/Log-Log4perl-1.40/t/
H A D049Unhide.t21 require Filter::Util::Call;
25 plan skip_all => "Filter::Util::Call not available";
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/macosx-10.9.5/llvmCore-3425.0.33/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DLegalizeFloatTypes.cpp911 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
915 GetPairElements(Call, Lo, Hi);
920 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
924 GetPairElements(Call, Lo, Hi);
929 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
935 GetPairElements(Call, Lo, Hi);
940 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
944 GetPairElements(Call, Lo, Hi);
950 SDValue Call = MakeLibCall(GetFPLibCall(N->getValueType(0), local
957 GetPairElements(Call, L
962 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
971 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
980 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
989 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
998 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
1007 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
1017 SDValue Call = MakeLibCall(GetFPLibCall(N->getValueType(0), local
1030 SDValue Call = MakeLibCall(GetFPLibCall(N->getValueType(0), local
1042 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
1068 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
1077 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
1086 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
1095 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
1104 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
1114 SDValue Call = MakeLibCall(GetFPLibCall(N->getValueType(0), local
1126 SDValue Call = LibCallify(GetFPLibCall(N->getValueType(0), local
[all...]

Completed in 407 milliseconds

1234567