HomeSort by relevance Sort by last modified time
    Searched refs:incoming (Results 26 - 50 of 133) sorted by null

12 3 4 5 6

  /external/chromium_org/cc/trees/
layer_sorter.cc 342 edge.to->incoming.push_back(&edge);
388 // Find all the nodes that don't have incoming edges.
390 if (!la->incoming.size())
414 RemoveEdgeFromList(outgoing_edge, &outgoing_edge->to->incoming);
417 if (!outgoing_edge->to->incoming.size())
426 // If there are still active edges but the list of nodes without incoming
428 // the node with the smallest overall incoming edge weight and use it. This
429 // will favor nodes that have zero-weight incoming edges i.e. layers that
434 if (nodes_[i].incoming.size() &&
441 // Remove all its incoming edges
    [all...]
layer_sorter.h 59 std::vector<GraphEdge*> incoming; member in struct:cc::GraphNode
  /external/chromium_org/chrome/browser/media/
webrtc_logging_handler_host.h 98 bool incoming);
173 bool incoming);
webrtc_rtp_dump_handler.h 42 // 'send' for outgoing dump or 'recv' for incoming dump. $TIMESTAMP is the
49 // Starts the specified type of dumping. Incoming/outgoing dumping can be
54 // Stops the specified type of dumping. Incoming/outgoing dumping can be
65 // It should only be called when both incoming and outgoing dumping has been
78 bool incoming);
112 // The absolute path to the directory containing the incoming/outgoing dumps.
119 // The states of the incoming and outgoing dump.
webrtc_rtp_dump_handler.cc 21 // released) RTP dumps. Incoming and outgoing in one WebRtcDumpHandler are
127 // created. So we assign both incoming and outgoing dump path even if only
195 DVLOG(2) << "Incoming RTP dumps released: " << incoming_dump_path_.value();
213 bool incoming) {
216 if ((incoming && incoming_state_ != STATE_STARTED) ||
217 (!incoming && outgoing_state_ != STATE_STARTED)) {
222 packet_header, header_length, packet_length, incoming);
249 // Either incoming or outgoing dump must be ongoing.
310 DVLOG(2) << "Deleted invalid incoming dump "
  /ndk/build/core/
definitions-graph.mk 266 # For topological sort, we need to count the number of incoming edges
270 # Count the number of incoming edges for each node during topological
279 # zero the incoming edge counter for module $1
280 -ndk-mod-topo-zero-incoming = \
283 # increment the incoming edge counter for module $1
284 -ndk-mod-topo-increment-incoming = \
287 # decrement the incoming edge counter for module $1
288 -ndk-mod-topo-decrement-incoming = \
291 # return non-empty if the module $1's incoming edge counter is > 0
292 -ndk-mod-topo-has-incoming = $(_ndk_mod_topo_incoming.$1
    [all...]
  /system/core/libpixelflinger/codeflinger/
texturing.cpp     [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
CPPTarget.java 100 * around the incoming literal.
117 * around the incoming literal.
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 110 return mResources.incoming;
154 * Drawable representing an incoming answered call.
156 public final Drawable incoming; field in class:CallTypeIconsView.Resources
164 * Drawable representing an incoming missed call.
193 incoming = r.getDrawable(R.drawable.ic_call_arrow);
194 incoming.setColorFilter(r.getColor(R.color.answered_call), PorterDuff.Mode.MULTIPLY);
  /external/chromium_org/chrome/browser/extensions/api/webrtc_logging_private/
webrtc_logging_private_api.cc 282 if (!params->incoming && !params->outgoing) {
283 StartRtpDumpCallback(false, "Either incoming or outgoing must be true.");
288 (params->incoming && params->outgoing)
290 : (params->incoming ? RTP_DUMP_INCOMING : RTP_DUMP_OUTGOING);
305 host->StartRtpDump(params->incoming,
339 if (!params->incoming && !params->outgoing) {
340 StopRtpDumpCallback(false, "Either incoming or outgoing must be true.");
345 (params->incoming && params->outgoing)
347 : (params->incoming ? RTP_DUMP_INCOMING : RTP_DUMP_OUTGOING);
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 30 public int incoming; // the number of incoming branches. field in class:BasicBlock
38 incoming = 0;
77 .append(length).append(", in=").append(incoming)
202 m.block.incoming++;
340 bb.incoming++;
349 // the incoming flow from dead code is not counted
350 // bb.incoming++;
386 handler.incoming--;
392 handler.incoming++
    [all...]
  /external/chromium_org/chrome/browser/resources/hangout_services/
thunk.js 121 var incoming = message['incoming'] || false;
124 sender.tab.id, origin, incoming, outgoing, doSendResponse);
127 var incoming = message['incoming'] || false;
130 sender.tab.id, origin, incoming, outgoing, doSendResponse);
226 // Stops incoming and outgoing separately, otherwise stopRtpDump will fail if
  /art/compiler/optimizing/
ssa_builder.cc 73 HInstruction* incoming = ValueOfLocal(block->GetLoopInformation()->GetPreHeader(), local); local
74 if (incoming != nullptr) {
  /external/chromium_org/v8/src/compiler/
linkage.h 150 // for incoming parameters and return value(s) as well as the outgoing calling
165 explicit Linkage(CompilationInfo* info, CallDescriptor* incoming)
166 : info_(info), incoming_(incoming) {}
169 // of incoming parameters and the outgoing return value(s).
194 // Get the location of an (incoming) parameter to this function.
199 // Get the machine type of an (incoming) parameter to this function.
  /build/tools/releasetools/
blockimgdiff.py 551 xf.incoming = xf.goes_after.copy()
560 if not u.incoming]
567 del u.incoming[xf]
568 if not u.incoming:
672 xf.incoming = xf.goes_after.copy()
693 for iu in u.incoming:
698 sources = [u for u in G if not u.incoming]
704 del iu.incoming[u]
715 d = sum(u.outgoing.values()) - sum(u.incoming.values())
724 del iu.incoming[u
    [all...]
  /external/chromium_org/third_party/webrtc/base/
httpserver.cc 272 AsyncSocket* incoming = listener_->Accept(NULL); local
273 if (incoming) {
274 StreamInterface* stream = new SocketStream(incoming);
  /external/llvm/lib/Transforms/Scalar/
LoopDeletion.cpp 93 Value *incoming = P->getIncomingValueForBlock(exitingBlocks[0]); local
95 // Make sure all exiting blocks produce the same incoming value for the exit
96 // block. If there are different incoming values for different exiting
100 if (incoming != P->getIncomingValueForBlock(exitingBlocks[i]))
104 if (Instruction *I = dyn_cast<Instruction>(incoming))
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ActivityState.java 171 Class<? extends ActivityState> incoming, StateTransitionAnimation.Transition hint) {
172 if (outgoing == SinglePhotoPage.class && incoming == AlbumPage.class) {
174 } else if (outgoing == AlbumPage.class && incoming == SinglePhotoPage.class) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_clip_util.c 344 struct brw_reg incoming = get_element_ud(c->reg.R0, 2); local
348 brw_SHR(p, c->reg.planemask, incoming, brw_imm_ud(26));
356 brw_AND(p, tmp, incoming, brw_imm_ud(0x3f<<14));
  /external/chromium_org/third_party/pexpect/
pexpect.py     [all...]
  /external/lldb/test/pexpect-2.4/
pexpect.py     [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip_util.c 344 struct brw_reg incoming = get_element_ud(c->reg.R0, 2); local
348 brw_SHR(p, c->reg.planemask, incoming, brw_imm_ud(26));
356 brw_AND(p, tmp, incoming, brw_imm_ud(0x3f<<14));
  /packages/apps/Email/provider_src/com/android/email/activity/setup/
AccountSettingsUtils.java 294 && "incoming".equals(xml.getName())
306 && "incoming-fallback".equals(xml.getName())
391 * Incoming: Prepend "imap" or "pop3" to domain, unless "pop", "pop3",
396 * @param incoming "pop3" or "imap" (or null)
400 public static String inferServerName(Context context, String server, String incoming,
413 if (incoming != null) {
414 // For incoming, we leave imap/pop/pop3/mail alone, or prepend incoming
430 return ((incoming != null) ? incoming : outgoing) + '.' + server.substring(keepFirstChar)
    [all...]
  /external/chromium_org/remoting/webapp/background/
background.js 38 * The background service is responsible for listening to incoming connection
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
TestConnectionManager.java 328 private Connection makeConnection(ConnectionRequest request, boolean incoming) {
329 RemoteConnection remote = incoming

Completed in 1448 milliseconds

12 3 4 5 6