Searched defs:call (Results 1 - 25 of 147) sorted by relevance

123456

/external/valgrind/main/memcheck/tests/x86/
H A Dtronical.S82 call VG_SYM_ASM(printf)
95 call VG_SYM_ASM(malloc)
97 call set define
98 call get
/external/llvm/test/Object/Inputs/
H A Delfver.S15 call _puts@PLT label
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/ExecutionContexts/
H A Dregress-23346.js32 return call();
37 function call() function
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DCallable.java25 V call() throws Exception; method in interface:Callable
/external/clang/test/CodeGenCXX/
H A Dinstantiate-temporaries.cpp17 void call() { function
22 // CHECK: call void @_ZN1Y3getEv
23 // CHECK-NEXT: call void @_ZN1XD1Ev
25 template void call<int>();
33 // CHECK: call void @_ZN1XC1Ev
34 // CHECK-NEXT: call void @_ZN2X2D1Ev
/external/mesa3d/src/glsl/
H A Dir_function_can_inline.cpp27 * Determines if we can inline a function call using ir_function_inlining.cpp.
59 can_inline(ir_call *call) argument
62 const ir_function_signature *callee = call->get_callee();
H A Dhir_field_selection.cpp78 ast_expression *call = expr->subexpressions[1]; local
79 assert(call->oper == ast_function_call);
82 method = call->subexpressions[0]->primary_expression.identifier;
85 if (!call->expressions.is_empty())
/external/skia/src/gpu/gl/
H A DGrGLUtil.cpp19 const char* call) {
26 if (NULL != call) {
27 GrPrintf("\n\t\t%s", call);
17 GrGLCheckErr(const GrGLInterface* gl, const char* location, const char* call) argument
/external/v8/test/mjsunit/
H A Dmegamorphic-callbacks.js36 function call(o) { function
47 call(o);
68 // Perform the call checks.
69 assertEquals(300, o.f(), "normal call");
70 assertEquals(300, call(o), "ic call");
/external/v8/test/mjsunit/regress/
H A Dregress-1650.js30 function g(f) { return f.call.apply(f.bind, arguments); }
45 Fake.prototype.call = function () {
/external/webkit/Source/JavaScriptCore/runtime/
H A DCallData.cpp35 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args) function in namespace:JSC
/external/bluetooth/bluez/plugins/
H A Dhal.c37 static void formfactor_reply(DBusPendingCall *call, void *user_data) argument
44 reply = dbus_pending_call_steal_reply(call);
86 DBusPendingCall *call; local
106 &call, -1) == FALSE) {
113 dbus_pending_call_set_notify(call, formfactor_reply, adapter, NULL);
115 dbus_pending_call_unref(call);
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DThreadingManager.java74 public Object call() throws Exception { method in class:ThreadingManager.LoadingTask
84 // public Void call(){
/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackFunction.cpp52 EncodedJSValue JSCallbackFunction::call(ExecState* exec) function in class:JSC::JSCallbackFunction
77 callData.native.function = call;
/external/clang/test/CodeGen/
H A Dannotations-builtin.c20 // CHECK-NEXT: call i32 @llvm.annotation.i32
23 int call = __builtin_annotation(foo(argc), "annotation_a"); local
24 // CHECK: call {{.*}} @foo
25 // CHECK: call i32 @llvm.annotation.i32
29 // CHECK-NEXT: call i32 @llvm.annotation.i32
34 // CHECK-NEXT: call i32 @llvm.annotation.i32
39 // CHECK-NEXT: call i32 @llvm.annotation.i32
44 // CHECK-NEXT: call i32 @llvm.annotation.i32
49 // CHECK: call i32 @llvm.annotation.i32
/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-references.cpp38 void call() { function in namespace:reference
/external/llvm/include/llvm/Support/
H A DManagedStatic.h32 static void call(void * Ptr) { delete (T*)Ptr; } function in struct:llvm::object_deleter
35 static void call(void * Ptr) { delete[] (T*)Ptr; } function in struct:llvm::object_deleter
58 /// explicit through the llvm_shutdown() function call.
68 if (!tmp) RegisterManagedStatic(object_creator<C>, object_deleter<C>::call);
76 if (!tmp) RegisterManagedStatic(object_creator<C>, object_deleter<C>::call);
84 if (!tmp) RegisterManagedStatic(object_creator<C>, object_deleter<C>::call);
92 if (!tmp) RegisterManagedStatic(object_creator<C>, object_deleter<C>::call);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DCachedCall.h48 JSValue call() function in class:JSC::CachedCall
/external/webkit/Source/WebCore/bindings/js/
H A DJSMainThreadExecState.h45 static JSC::JSValue call(JSC::ExecState* exec, JSC::JSValue functionObject, JSC::CallType callType, const JSC::CallData& callData, JSC::JSValue thisValue, const JSC::ArgList& args) function in class:WebCore::JSMainThreadExecState
48 return JSC::call(exec, functionObject, callType, callData, thisValue, args);
H A DScriptFunctionCall.cpp124 ScriptValue ScriptFunctionCall::call(bool& hadException, bool reportExceptions) function in class:WebCore::ScriptFunctionCall
144 JSValue result = JSMainThreadExecState::call(m_exec, function, callType, callData, thisObject, m_arguments);
156 ScriptValue ScriptFunctionCall::call() function in class:WebCore::ScriptFunctionCall
159 return call(hadException);
200 ScriptValue ScriptCallback::call() function in class:WebCore::ScriptCallback
203 return call(hadException);
206 ScriptValue ScriptCallback::call(bool& hadException) function in class:WebCore::ScriptCallback
215 JSValue result = JSC::call(m_exec, m_function.jsValue(), callType, callData, m_function.jsValue(), m_arguments);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptFunctionCall.cpp115 ScriptValue ScriptFunctionCall::call(bool& hadException, bool reportExceptions) function in class:WebCore::ScriptFunctionCall
142 ScriptValue ScriptFunctionCall::call() function in class:WebCore::ScriptFunctionCall
145 return call(hadException);
181 ScriptValue ScriptCallback::call() function in class:WebCore::ScriptCallback
184 return call(hadException);
187 ScriptValue ScriptCallback::call(bool& hadException) function in class:WebCore::ScriptCallback
/external/webkit/Source/WebCore/loader/
H A DPolicyCallback.cpp100 void PolicyCallback::call(bool shouldContinue) function in class:WebCore::PolicyCallback
109 void PolicyCallback::call(PolicyAction action) function in class:WebCore::PolicyCallback
/external/webkit/Tools/DumpRenderTree/chromium/
H A DDRTDevToolsClient.cpp110 void DRTDevToolsClient::call(const WebString& args) function in class:DRTDevToolsClient
/external/guava/guava-tests/test/com/google/common/collect/
H A DConcurrentHashMultisetBasherTest.java112 @Override public int[] call() throws Exception { method in class:ConcurrentHashMultisetBasherTest.MutateTask
/external/icu4c/test/perf/normperf/
H A Ddtfmtrtperf.h66 virtual void call(UErrorCode* status) function in class:DateTimeRoundTripFunction

Completed in 863 milliseconds

123456