Searched defs:call (Results 101 - 125 of 252) sorted by relevance

1234567891011

/external/clang/test/CodeGenCXX/
H A Dmangle-template.cpp207 int call(bool b) { return inl<void>(b); } function in namespace:test14
/external/clang/test/SemaTemplate/
H A Dinstantiate-local-class.cpp89 void call() { function in namespace:PR9685
111 void call() { T<int>().foo(); } function in namespace:PR12702
158 void call() { function in namespace:PR17740
178 int call() { function in namespace:PR14373
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractScheduledService.java215 // do not want to call it again.
341 public Void call() throws Exception { method in class:AbstractScheduledService.CustomScheduler.ReschedulableCallable
/external/icu/icu4c/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.h59 virtual void call(UErrorCode *status) function in class:BreakItFunction
159 virtual void call(UErrorCode* status) function in class:DateFmtFunction
253 virtual void call(UErrorCode* status2) function in class:NumFmtFunction
382 virtual void call(UErrorCode* status2) function in class:StdioNumFmtFunction
461 virtual void call(UErrorCode* status2) function in class:CollationFunction
/external/icu/icu4c/source/test/perf/convperf/
H A Dconvperf.h55 virtual void call(UErrorCode* status){ function in class:ICUToUnicodePerfFunction
101 virtual void call(UErrorCode* status){ function in class:ICUFromUnicodePerfFunction
131 virtual void call(UErrorCode* status){ function in class:ICUOpenAllConvertersFunction
192 virtual void call(UErrorCode* status){ function in class:WinANSIToUnicodePerfFunction
246 virtual void call(UErrorCode* status){ function in class:WinANSIFromUnicodePerfFunction
315 virtual void call(UErrorCode* status){ function in class:WinIMultiLanguageToUnicodePerfFunction
372 virtual void call(UErrorCode* status){ function in class:WinIMultiLanguageFromUnicodePerfFunction
423 virtual void call(UErrorCode* status){ function in class:WinIMultiLanguage2ToUnicodePerfFunction
479 virtual void call(UErrorCode* status){ function in class:WinIMultiLanguage2FromUnicodePerfFunction
/external/icu/icu4c/source/test/perf/normperf/
H A Dnormperf.h45 virtual void call(UErrorCode* status){ function in class:QuickCheckPerfFunction
116 virtual void call(UErrorCode* status){ function in class:NormPerfFunction
/external/icu/icu4c/source/test/perf/unisetperf/
H A Dunisetperf.cpp140 // virtual void call(UErrorCode* pErrorCode) { ... }
175 virtual void call(UErrorCode* pErrorCode) { function in class:Contains
237 virtual void call(UErrorCode* pErrorCode) { function in class:SpanUTF16
288 virtual void call(UErrorCode* pErrorCode) { function in class:SpanBackUTF16
338 virtual void call(UErrorCode* pErrorCode) { function in class:SpanUTF8
384 virtual void call(UErrorCode* pErrorCode) { function in class:SpanBackUTF8
/external/icu/icu4c/source/test/perf/utrie2perf/
H A Dutrie2perf.cpp102 // virtual void call(UErrorCode* pErrorCode) { ... }
122 virtual void call(UErrorCode* pErrorCode) { function in class:CheckFCD
142 virtual void call(UErrorCode* pErrorCode) {
163 virtual void call(UErrorCode* pErrorCode) {
190 virtual void call(UErrorCode* pErrorCode) { function in class:ToNFC
214 virtual void call(UErrorCode* pErrorCode) { function in class:GetBiDiClass
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java43 return call(Type.STRING, "asString", expression);
52 return call(Type.INT, "asInt", expression);
61 return call(Type.BOOLEAN, "asBoolean", expression);
68 return call(Type.VALUE, "asVariableValue", expression, TemplateTranslator.DATA_CONTEXT);
70 return call(Type.VALUE, "asValue", expression);
187 * An untyped method call (e.g. doStuff(x, "y")).
189 public static JavaExpression call(final String method, final JavaExpression... params) { method in class:JavaExpression
190 return call(null, method, params);
194 * A typed method call (e.g. doStuff(x, "y")).
196 public static JavaExpression call(Typ method in class:JavaExpression
[all...]
/external/llvm/test/MC/X86/
H A Dx86-16.s532 call $0x7ace,$0x7ace label
/external/mesa3d/src/glsl/
H A Dir_constant_expression.cpp1232 /* (call name (ref) (params))*/
1234 ir_call *call = inst->as_call(); local
1240 if (!call->return_deref)
1245 call->return_deref->constant_referenced(variable_context, store, offset);
1250 ir_constant *value = call->constant_expression_value(variable_context);
H A Dir_function_detect_recursion.cpp33 * To detect recursion, the function call graph is constructed. The graph is
44 * of function calls. That is, a function may not call itself either
95 * present if the static function call graph of the program contains
106 * call graph of the program" at all.
110 * about functions that aren't in any cycle, but are in the part of the call
111 * tree that connects them. For example, if the call graph consists of a
143 /* Callers of this ralloc-based new need not call delete. It's
155 /* If the user *does* call delete, that's OK, we will just
167 /** List of functions that call this function. */
212 virtual ir_visitor_status visit_enter(ir_call *call) argument
[all...]
/external/qemu/telephony/
H A Dremote_call.c123 remote_call_done( RemoteCall call )
125 call->pref[0] = call->next;
126 call->next = NULL;
127 call->pref = &call->next;
129 if (call->buff && call->buff != call->buff0) {
130 free(call
223 remote_call_set_sms_pdu( RemoteCall call, SmsPDU pdu ) argument
256 remote_call_add( RemoteCall call, RemoteCall *plist ) argument
271 RemoteCall call = opaque; local
368 RemoteCall call; local
398 RemoteCall call = remote_call_generic( REMOTE_CALL_DIAL, number, from ); local
420 RemoteCall call = remote_call_generic( REMOTE_CALL_SMS, number, from ); local
[all...]
/external/skia/src/core/
H A DSkMatrixClipStateMgr.cpp153 // Since the saveLayer call draws something we need to potentially dump
155 SkDEBUGCODE(bool saved =) this->call(kOther_CallType);
250 bool SkMatrixClipStateMgr::call(CallType callType) { function in class:SkMatrixClipStateMgr
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/
H A Dclosure-runner.jar ... .chromium.devtools.compiler.Runner$CompilerRunner call () throws java.lang.Exception private java.lang ...
/external/chromium_org/content/browser/media/
H A Dwebrtc_getusermedia_browsertest.cc239 // These tests will all make a getUserMedia call with different constraints and
514 std::string call = GenerateGetUserMediaCall(kGetUserMediaAndExpectFailure, local
524 ExecuteJavascriptAndReturnResult(call));
615 std::string call = GenerateGetUserMediaCall(kGetUserMediaAndStop, local
622 DVLOG(1) << "Calling getUserMedia: " << call;
624 ExecuteJavascriptAndWaitForOk(call);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPromisePropertyTest.cpp46 virtual ScriptValue call(ScriptValue) OVERRIDE;
49 ScriptValue NotReached::call(ScriptValue) function in class:__anon10900::NotReached
71 virtual ScriptValue call(ScriptValue arg) OVERRIDE
/external/chromium_org/third_party/closure_compiler/runner/src/com/google/javascript/jscomp/
H A DChromePass.java117 private void visitPropertyDefinition(Node call, Node parent) { argument
118 Node callee = call.getFirstChild();
119 String target = call.getChildAtIndex(1).getQualifiedName();
124 Node property = call.getChildAtIndex(2);
127 target + "." + property.getString()).srcrefTree(call);
130 setJsDocWithType(getPropNode, getTypeByCrPropertyKind(call.getChildAtIndex(3)));
161 private boolean visitMakePublic(Node call, Node exprResult) { argument
164 String className = call.getChildAtIndex(1).getQualifiedName();
166 Node methods = call.getChildAtIndex(2);
/external/chromium_org/third_party/icu/source/test/perf/utfperf/
H A Dutfperf.cpp138 // virtual void call(UErrorCode* pErrorCode) { ... }
164 virtual void call(UErrorCode* pErrorCode){ function in class:Roundtrip
231 virtual void call(UErrorCode* pErrorCode){ function in class:FromUnicode
284 virtual void call(UErrorCode* pErrorCode){ function in class:FromUTF8
/external/chromium_org/third_party/jinja2/
H A Druntime.py167 def call(__self, __obj, *args, **kwargs): member in class:Context
327 raise TypeError('Tried to call non recursive loop. Maybe you '
331 # a nifty trick to enhance the error message if someone tried to call
452 Traceback (most recent call last):
468 `UndefinedError` on call.
536 Traceback (most recent call last):
561 Traceback (most recent call last):
565 Traceback (most recent call last):
569 Traceback (most recent call last):
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Dsystem_stub.py328 def call(self, *args, **kwargs): member in class:SubprocessModuleStub
/external/chromium_org/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc508 void InstructionSelector::VisitCall(Node* call, BasicBlock* continuation, argument
511 CallDescriptor* descriptor = OpParameter<CallDescriptor*>(call);
517 GetFrameStateDescriptor(call->InputAt(descriptor->InputCount()));
523 InitializeCallBuffer(call, &buffer, true, true);
533 // Select the appropriate opcode based on the call type.
549 // Emit the call instruction.
/external/chromium_org/v8/src/compiler/
H A Djs-inlining.cc101 // Inline this graph at {call}, use {jsgraph} and its zone to create
103 void InlineAtCall(JSGraph* jsgraph, Node* call);
233 void Inlinee::InlineAtCall(JSGraph* jsgraph, Node* call) { argument
236 Node* control = NodeProperties::GetControlInput(call);
243 NodeProperties::GetValueInput(call, 0),
244 NodeProperties::GetEffectInput(call));
250 int inliner_inputs = OperatorProperties::GetValueInputCount(call->op());
259 // There is an input from the call, and the index is a value
261 NodeProperties::ReplaceWithValue(*iter, call->InputAt(index));
288 // Iterate over all uses of the call nod
311 JSCallFunctionAccessor(Node* call) argument
348 CreateArgumentsAdaptorFrameState(JSCallFunctionAccessor* call, Handle<JSFunction> jsfunction, Zone* temp_zone) argument
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dcodegen-tester.h13 #include "test/cctest/compiler/call-tester.h"
138 CType call(CType a0, CType a1) { function in class:v8::internal::compiler::BinopTester
164 CHECK_EQ(fn(*i, *j), this->call(*i, *j));
194 uint32_t call(uint32_t a0, uint32_t a1) { function in class:v8::internal::compiler::Uint32BinopTester
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp29 "Should not call EmitDeclInit on a reference!");
92 // with the right signature that we can just call.
126 // Emit a call with the size in bytes of the object.
184 llvm::CallInst *call = CGF.Builder.CreateCall(dtor, addr); local
186 // Make sure the call and the callee agree on calling convention.
189 call->setCallingConv(dtorFn->getCallingConv());
513 // Make sure the call and the callee agree on calling convention.

Completed in 3034 milliseconds

1234567891011