Searched defs:call (Results 151 - 175 of 252) sorted by relevance

1234567891011

/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasessionclient.cc108 Call *call = new Call(this); local
109 calls_[call->id()] = call;
110 SignalCallCreate(call);
111 return call;
128 // The creation of the call must happen after the session has
131 // call.
133 // If our accept would have no codecs, then we must reject this call.
141 // For some reason, we need a call even if we reject. So, either find a
142 // matching call o
150 Call* call = NULL; local
170 DestroyCall(Call *call) argument
191 Call *call = (*it).second; local
201 SetFocus(Call *call) argument
213 JoinCalls(Call *call_to_join, Call *call) argument
223 CreateSession(Call *call) argument
228 CreateSession(const std::string& id, Call* call) argument
236 SessionMap::const_iterator call; local
[all...]
H A Dmediasessionclient_unittest.cc1191 // gets deleted before we can call NextContent, so we need to
2716 void OnCallCreate(cricket::Call *call) { argument
2717 call_ = call;
2718 call->SignalMediaStreamsUpdate.connect(
2722 void OnCallDestroy(cricket::Call *call) { argument
2726 void OnMediaStreamsUpdate(cricket::Call *call, argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_lowering_nv50.cpp179 // Emulate PRERET: jump to the target and call to the origin from there
190 // bra BB:3 + n0 (directly to the call; move to beginning of BB and fixate)
193 // bra BB:3 + n1 (skip the call)
194 // call BB:0 + n2 (skip bra at beginning of BB:0)
207 Instruction *call = new_FlowInstruction(func, OP_PRERET, bbE); local
209 bbT->insertHead(call);
215 call->subOp = NV50_IR_SUBOP_EMU_PRERET + 2;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_lowering_nvc0.cpp59 FlowInstruction *call; local
72 call = bld.mkFlow(OP_CALL, NULL, CC_ALWAYS, NULL);
77 call->fixed = 1;
78 call->absolute = call->builtin = 1;
79 call->target.builtin = builtin;
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast_function.cpp181 * If a function call is generated, \c call_ir will point to it on exit.
197 * call takes place. Since we haven't emitted the call yet, we'll place
198 * the post-call conversions in a temporary exec_list, and emit them later.
223 * and then perform the conversion after the function call
275 /* If the function call is a constant expression, don't generate any
300 ir_call *call = new(ctx) ir_call(sig, deref, actual_parameters); local
301 instructions->push_tail(call);
401 _mesa_glsl_error(loc, state, "no matching function for call to `%s'", str);
536 /* Dereference a row of the matrix, then call thi
1494 ir_call *call = NULL; local
[all...]
/external/chromium_org/third_party/pymock/
H A Dmock.py23 'call',
636 method call:
707 # use ids here so as not to call __hash__ on the mocks
814 message = 'Expected call: %s\nActual call: %s'
827 different to the last call to the mock."""
831 raise AssertionError('Expected call: %s\nNot called' % (expected,))
877 '%r not all found in call list' % (tuple(not_found),)
886 the call is the most recent one."""
887 kall = call(*arg
2131 call = _Call(from_kall=False) variable
[all...]
/external/chromium_org/v8/src/compiler/
H A Dinstruction-selector.cc252 void InstructionSelector::InitializeCallBuffer(Node* call, CallBuffer* buffer, argument
256 DCHECK_EQ(call->op()->OutputCount(), buffer->descriptor->ReturnCount());
257 DCHECK_EQ(OperatorProperties::GetValueInputCount(call->op()),
261 // Collect the projections that represent multiple outputs from this call.
263 buffer->output_nodes.push_back(call);
266 call->CollectProjections(&buffer->output_nodes);
284 Node* callee = call->InputAt(0);
308 // If the call needs a frame state, we insert the state information as
318 call->InputAt(static_cast<int>(buffer->descriptor->InputCount()));
328 // arguments require an explicit push instruction before the call an
1094 VisitCall(Node* call, BasicBlock* continuation, BasicBlock* deoptimization) argument
[all...]
H A Dast-graph-builder.cc76 // Emit tracing call if requested to do so.
97 // Emit tracing call if requested to do so.
687 // TODO(dcarney): this runtime call should be a handful of
952 // Create nodes to define accessors, using only a single call to the runtime
965 Node* call = NewNode(op, literal, name, getter, setter, attr); local
966 PrepareFrameState(call, it->first->id());
1194 // Prepare the callee and the receiver to the function call. This depends on
1195 // the semantics of the underlying call type.
1234 // thereby obsoleting the need for a flag to the call operator.
1253 // Evaluate all arguments to the function call,
1285 const Operator* call = javascript()->Call(args->length() + 2, flags); local
1300 const Operator* call = javascript()->CallNew(args->length() + 1); local
1327 const Operator* call = javascript()->Call(args->length() + 2, flags); local
1350 const Operator* call = javascript()->Runtime(functionId, args->length()); local
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp232 const CallEvent &call, ExprEngine &eng,
235 Call(call), Eng(eng) { }
247 /// \brief Run checkers for visiting an abstract call event.
497 "Call must not be NULL when escaping on call");
522 /// \brief Run checkers for evaluating a call.
523 /// Only one checker will evaluate the call.
537 // Check if any of the EvalCall callbacks can evaluate the call.
552 && "There are more than one checkers evaluating the call");
562 // If none of the checkers evaluated the call, ask ExprEngine to handle it.
231 CheckCallContext(bool isPreVisit, const CheckersTy &checkers, const CallEvent &call, ExprEngine &eng, bool wasInlined) argument
/external/deqp/modules/gles3/functional/
H A Des3fTransformFeedbackTests.cpp173 std::ostream& operator<< (std::ostream& str, const DrawCall& call) argument
175 return str << "(" << call.numElements << ", " << (call.transformFeedbackEnabled ? "resumed" : "paused") << ")";
776 for (const DrawCall* call = first; call != end; ++call)
778 if (call->transformFeedbackEnabled)
779 primCount += getTransformFeedbackPrimitiveCount(primitiveType, call->numElements);
1073 for (const DrawCall* call = first; call !
[all...]
/external/dexmaker/src/test/java/com/google/dexmaker/stock/
H A DProxyBuilderTest.java605 assertEquals("fake result", declaresInterface.call());
607 ProxyBuilder.callSuper(declaresInterface, Callable.class.getMethod("call"));
624 assertEquals("fake result", asCallable.call());
636 ProxyBuilder.callSuper(simpleClass, Callable.class.getMethod("call"));
654 assertEquals("b", proxy.call());
656 proxy, ImplementsCallable.class.getMethod("call")));
661 * that support covariant return types. Calling 'Object call()' on the
662 * interface bridges to 'String call()', and so the super method appears to
681 assertEquals("a", proxy.call());
684 // the invocation handler is called, even though this is a callSuper() call!
690 public String call() throws Exception { method in class:ProxyBuilderTest.ImplementsCallable
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DJSR166TestCase.java753 * call to {@link System.nanoTime()}.
868 public final T call() { method in class:JSR166TestCase.CheckedCallable
882 public final T call() { method in class:JSR166TestCase.CheckedInterruptedCallable
901 public Object call() { return Boolean.TRUE; } method in class:JSR166TestCase.NoOpCallable
907 public String call() { return TEST_STRING; } method in class:JSR166TestCase.StringTask
963 public String call() { throw new NullPointerException(); } method in class:JSR166TestCase.NPETask
967 public Integer call() { return one; } method in class:JSR166TestCase.CallableOne
1115 public Object call() { method in class:JSR166TestCase.TrackedCallable
/external/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp101 virtual void call(UErrorCode* status){ function in class:CmdKeyGen
154 virtual void call(UErrorCode* status){ function in class:CmdIter
196 CmdIterAll(UErrorCode & status, UCollator * col, int32_t count, UChar * data, CALL call,int32_t,int32_t) argument
200 if (call == forward_null || call == backward_null) {
206 if (call == forward_null || call == forward_len){
214 virtual void call(UErrorCode* status){ function in class:CmdIterAll
376 virtual void call(UErrorCode* status){ function in struct:CmdQsort
408 virtual void call(UErrorCod function in class:CmdBinSearch
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_lowering_nv50.cpp179 // Emulate PRERET: jump to the target and call to the origin from there
190 // bra BB:3 + n0 (directly to the call; move to beginning of BB and fixate)
193 // bra BB:3 + n1 (skip the call)
194 // call BB:0 + n2 (skip bra at beginning of BB:0)
207 Instruction *call = new_FlowInstruction(func, OP_PRERET, bbE); local
209 bbT->insertHead(call);
215 call->subOp = NV50_IR_SUBOP_EMU_PRERET + 2;
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_lowering_nvc0.cpp59 FlowInstruction *call; local
72 call = bld.mkFlow(OP_CALL, NULL, CC_ALWAYS, NULL);
77 call->fixed = 1;
78 call->absolute = call->builtin = 1;
79 call->target.builtin = builtin;
/external/mesa3d/src/glsl/
H A Dast_function.cpp181 * If a function call is generated, \c call_ir will point to it on exit.
197 * call takes place. Since we haven't emitted the call yet, we'll place
198 * the post-call conversions in a temporary exec_list, and emit them later.
223 * and then perform the conversion after the function call
275 /* If the function call is a constant expression, don't generate any
300 ir_call *call = new(ctx) ir_call(sig, deref, actual_parameters); local
301 instructions->push_tail(call);
401 _mesa_glsl_error(loc, state, "no matching function for call to `%s'", str);
536 /* Dereference a row of the matrix, then call thi
1494 ir_call *call = NULL; local
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/glide/third_party/disklrucache/
H A Ddisklrucache-2.0.2.jar ... .disklrucache.DiskLruCache) public java.lang.Void call () throws java.lang.Exception public volatile synthetic java ...
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProvider.java58 // Defines the API methods that the Client can call by name.
166 * Records whether we've received a call to one of the public ContentProvider APIs.
688 public Bundle call(String method, String arg, Bundle extras) { method in class:ChromeBrowserProvider
731 * Checks whether Chrome is sufficiently initialized to handle a call to the
/external/chromium_org/gpu/command_buffer/
H A Dbuild_gles2_cmd_buffer.py14 from subprocess import call namespace
541 # Named type info object represents a named type that is used in OpenGL call
542 # arguments. Each named type defines a set of valid OpenGL call arguments. The
1275 # decoder_func: defines which function to call in the decoder to execute the
1314 # shadowed: True = the value is shadowed so no glGetXXX call will be made.
3053 # the call in the service side.
6145 """Returns a valid value for this argument in a GL call.
6855 """Gets the function to call to execute GL for this command."""
8504 call(["clang-format", "-i", "-style=chromium", filename])
/external/chromium_org/net/websockets/
H A Dwebsocket_channel_test.cc345 // A GoogleMock action which can be used to respond to call to ReadFrames with
454 // After constructing the object, call PrepareReadFrames() once for each
643 // 1. Calling the write callback may call Close(), after which the read callback
832 ChannelState DeleteIfDeleting(EventInterfaceCall call) { argument
833 if (deleting_ & call) {
2225 // we shouldn't call ReadFrames() immediately.
2226 // TODO(ricea): Actually we should call ReadFrames() with a small limit so we
2543 // call them explicitly later.
3407 // Copy the arguments to ReadFrames so that the test can call the callback
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DParseContext.cpp1065 const TFunction* TParseContext::findFunction(const TSourceLoc& line, TFunction* call, int shaderVersion, bool *builtIn) argument
1070 const TSymbol* symbol = symbolTable.find(call->getName(), shaderVersion, builtIn);
1072 symbol = symbolTable.find(call->getMangledName(), shaderVersion, builtIn);
1076 error(line, "no matching overloaded function found", call->getName().c_str());
1081 error(line, "function name expected", call->getName().c_str());
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dcallclient.cc28 #include "talk/examples/call/callclient.h"
32 #include "talk/examples/call/console.h"
33 #include "talk/examples/call/friendinvitesendtask.h"
34 #include "talk/examples/call/muc.h"
35 #include "talk/examples/call/mucinviterecvtask.h"
36 #include "talk/examples/call/mucinvitesendtask.h"
37 #include "talk/examples/call/presencepushtask.h"
109 " hangup Ends the call.\n"
110 " hold Puts the current call on hold\n"
112 " switch [call_id] Switch to the specified call\
441 OnCallDestroy(cricket::Call* call) argument
560 OnCallCreate(cricket::Call* call) argument
566 OnSessionState(cricket::Call* call, cricket::Session* session, cricket::Session::State state) argument
622 OnSpeakerChanged(cricket::Call* call, cricket::Session* session, const cricket::StreamParams& speaker) argument
944 TerminateAndRemoveSession(cricket::Call* call, const std::string& id) argument
1427 OnMediaStreamsUpdate(cricket::Call* call, cricket::Session* session, const cricket::MediaStreams& added, const cricket::MediaStreams& removed) argument
1444 RenderAllStreams(cricket::Call* call, cricket::Session* session, bool enable) argument
1454 RenderStreams( cricket::Call* call, cricket::Session* session, const std::vector<cricket::StreamParams>& video_streams, bool enable) argument
1466 RenderStream(cricket::Call* call, cricket::Session* session, const cricket::StreamParams& stream, bool enable) argument
1527 RemoveCallsStaticRenderedViews(cricket::Call* call) argument
1541 SendViewRequest(cricket::Call* call, cricket::Session* session) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoengine2.cc44 #include "webrtc/call.h"
682 webrtc::Call* call,
687 Construct(call, engine);
690 void WebRtcVideoChannel2::Construct(webrtc::Call* call, argument
694 call_.reset(call);
1305 webrtc::Call* call,
1311 : call_(call),
1707 webrtc::Call* call,
1710 : call_(call),
681 WebRtcVideoChannel2( webrtc::Call* call, WebRtcVideoEngine2* engine, WebRtcVideoEncoderFactory2* encoder_factory) argument
1304 WebRtcVideoSendStream( webrtc::Call* call, WebRtcVideoEncoderFactory2* encoder_factory, const VideoOptions& options, const Settable<VideoCodecSettings>& codec_settings, const StreamParams& sp, const std::vector<webrtc::RtpExtension>& rtp_extensions) argument
1706 WebRtcVideoReceiveStream( webrtc::Call* call, const webrtc::VideoReceiveStream::Config& config, const std::vector<VideoCodecSettings>& recv_codecs) argument
/external/chromium_org/v8/src/
H A Dfull-codegen.cc151 // For-of is breakable because of the next() call.
255 // Function calls both through IC and call stub are breakable.
434 void FullCodeGenerator::RecordJSReturnSite(Call* call) { argument
441 PrepareForBailoutForId(call->ReturnId(), TOS_REG);
445 DCHECK(!call->return_is_recorded_);
446 call->return_is_recorded_ = true;
1633 // call to an unconditional call to the replacement code.

Completed in 5805 milliseconds

1234567891011