HomeSort by relevance Sort by last modified time
    Searched refs:destinations (Results 1 - 25 of 73) sorted by null

1 2 3

  /frameworks/support/navigation/common/ktx/src/main/java/androidx/navigation/
NavGraphBuilder.kt 48 private val destinations = mutableListOf<NavDestination>()
54 destinations += navDestination.build()
68 destinations += destination
72 navGraph.addDestinations(destinations)
  /external/walt/ios/WALT/
MIDIEndpoint.m 39 NSMutableArray<MIDIDestination *> *destinations =
48 [destinations addObject:destination];
54 return destinations;
WALTClient.m 175 NSArray<MIDIDestination *> *destinations = [MIDIDestination allDestinations];
176 if (destinations.count) {
177 if (![_client connectToDestination:destinations.firstObject error:error]) {
  /frameworks/support/navigation/safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/
NavArgumentResolver.kt 24 val destinations = mutableMapOf<ResReference, Destination>()
28 destinations.putAll(nested)
30 val actionDestination = destinations[action.destination]
38 nested.keys.forEach { id -> destinations.remove(id) }
  /external/tensorflow/tensorflow/python/debug/lib/
source_remote.py 98 def _send_call_tracebacks(destinations,
113 destinations: gRPC destination addresses, a `str` or a `list` of `str`s,
115 `CallTraceback` proto payload will be sent to all the destinations.
130 if not isinstance(destinations, list):
131 destinations = [destinations]
133 destinations = [
136 for dest in destinations]
163 for destination in destinations:
171 def send_graph_tracebacks(destinations,
    [all...]
  /external/v8/tools/ignition/
bytecode_dispatches_report.py 45 # Display the top 5 sources and destinations of dispatches to/from LdaZero
98 for source, destinations in iteritems(dispatches_table):
99 total = float(sum(itervalues(destinations)))
100 if bytecode in destinations:
101 count = destinations[bytecode]
104 destinations = []
108 destinations.append((destination, count, count / bytecode_total))
112 heapq.nlargest(top_count, destinations, key=lambda x: x[1]))
123 print "\nTop destinations of dispatches from {}:".format(bytecode)
217 help="print top dispatch sources and destinations to the specified bytecode
    [all...]
  /external/gemmlowp/meta/generators/
neon_emitter.py 407 def EmitVLoadA(self, load_no, load_type, destinations, source):
409 '{%s}' % ', '.join(_ExpandQuads(destinations)), source)
414 destinations,
418 destinations = _ExpandQuads(destinations)
419 if len(destinations) * 64 < bits_to_load:
420 raise ArgumentError('To few destinations: %d to load %d bits.' %
421 (len(destinations), bits_to_load))
425 self.EmitVLoadA(1, 32, destinations[:4],
428 destinations = destinations[4:
    [all...]
neon_emitter_64.py 810 def EmitVLoadA(self, load_no, load_type, destinations, source):
813 [_LoadStoreSize(destination) for destination in destinations]) / 8
814 self.EmitVLoadAPostIncrement(load_no, load_type, destinations, source,
817 self.EmitVLoadAPostIncrement(load_no, load_type, destinations, source,
820 def EmitVLoadAPostIncrement(self, load_no, load_type, destinations, source,
823 if len(destinations) == 1 and destinations[0].lane is -1:
824 destination = '{%s}' % _AppendType(load_type, destinations[0])
831 destination_list = _RegisterList(load_type, destinations)
840 destinations,
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/log/
TerribleFailureEmailHandlerTest.java 155 Collection<String> destinations = new ArrayList<String>(); local
159 destinations.add(destB);
160 destinations.add(destA);
168 assertTrue(msg.getTo().equals(destinations));
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-nios2/
relax_call26_boundary.s 5 # (12 bytes each) to reach the call destinations in text2. Another stub
  /tools/test/connectivity/acts/tests/google/bt/car_bt/
BtCarMapMceTest.py 67 destinations = []
69 destinations.append("tel:{}".format(
71 self.log.info(destinations)
73 self.MSE.droid.bluetoothGetLocalAddress(), destinations,
  /external/autotest/client/site_tests/security_RootfsStatefulSymlinks/
security_RootfsStatefulSymlinks.py 72 "bad destinations" (e.g., stateful partition). Validate
  /external/python/cpython3/Tools/clinic/
clinic_test.py 52 self.destinations = {}
56 d = self.destinations.get
68 d = self.destinations.get(name)
74 if name in self.destinations:
76 self.destinations[name] = clinic.Destination(name, type, self, *args)
  /frameworks/support/navigation/common/src/test/java/androidx/navigation/
NavGraphTest.java 74 private NavGraph createGraphWithDestinations(NavDestination... destinations) {
76 graph.addDestinations(destinations);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
looprotate.go 84 // Move blocks to their destinations in a single pass.
regalloc.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
looprotate.go 84 // Move blocks to their destinations in a single pass.
regalloc.go     [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtilsTest.java 1828 CharSequence destinations[] = new CharSequence[] { "text" }; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmMmiCode.java 1514 CharSequence destinations[] = new CharSequence[3]; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneMmiCode.java 1346 CharSequence destinations[] = new CharSequence[3]; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
link.go 134 // this form makes clear that both registers are destinations.
243 // From, Reg are sources, and To, RegTo2 are destinations.
244 // RestArgs can hold additional sources and destinations.
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
link.go 134 // this form makes clear that both registers are destinations.
243 // From, Reg are sources, and To, RegTo2 are destinations.
244 // RestArgs can hold additional sources and destinations.
  /prebuilts/go/darwin-x86/src/net/
addrselect.go 109 // Rule 1: Avoid unusable destinations.
  /prebuilts/go/linux-x86/src/net/
addrselect.go 109 // Rule 1: Avoid unusable destinations.

Completed in 750 milliseconds

1 2 3