/external/guava/android/guava/src/com/google/common/graph/ |
D | ImmutableNetwork.java | 51 private ImmutableNetwork(Network<N, E> network) { in ImmutableNetwork() 57 public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf() 69 public static <N, E> ImmutableNetwork<N, E> copyOf(ImmutableNetwork<N, E> network) { in copyOf() 78 private static <N, E> Map<N, NetworkConnections<N, E>> getNodeConnections(Network<N, E> network) { in getNodeConnections() 89 private static <N, E> Map<E, N> getEdgeToReferenceNode(Network<N, E> network) { in getEdgeToReferenceNode() 100 private static <N, E> NetworkConnections<N, E> connectionsOf(Network<N, E> network, N node) { in connectionsOf() 117 private static <N, E> Function<E, N> sourceNodeFn(final Network<N, E> network) { in sourceNodeFn()
|
/external/guava/guava/src/com/google/common/graph/ |
D | ImmutableNetwork.java | 51 private ImmutableNetwork(Network<N, E> network) { in ImmutableNetwork() 57 public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { in copyOf() 69 public static <N, E> ImmutableNetwork<N, E> copyOf(ImmutableNetwork<N, E> network) { in copyOf() 78 private static <N, E> Map<N, NetworkConnections<N, E>> getNodeConnections(Network<N, E> network) { in getNodeConnections() 89 private static <N, E> Map<E, N> getEdgeToReferenceNode(Network<N, E> network) { in getEdgeToReferenceNode() 100 private static <N, E> NetworkConnections<N, E> connectionsOf(Network<N, E> network, N node) { in connectionsOf() 117 private static <N, E> Function<E, N> sourceNodeFn(final Network<N, E> network) { in sourceNodeFn()
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowNetworkTest.java | 25 Network network = ShadowNetwork.newInstance(netId); in getNetId_shouldReturnConstructorNetId() local 33 Network network = ShadowNetwork.newInstance(0); in bindSocketDatagramSocket_shouldNotCrash() local 39 Network network = ShadowNetwork.newInstance(0); in bindSocketSocket_shouldNotCrash() local 46 Network network = ShadowNetwork.newInstance(0); in bindSocketFileDescriptor_shouldNotCrash() local
|
/external/guava/guava-tests/test/com/google/common/graph/ |
D | ImmutableNetworkTest.java | 58 Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); in edgesConnecting_directed() local 71 Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); in edgesConnecting_undirected() local 118 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_addNode() local 127 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_putEdgeFromNodes() local 137 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_putEdgeFromEndpointPair() local
|
D | ElementOrderTest.java | 92 MutableNetwork<Integer, String> network = in edgeOrder_none() local 101 MutableNetwork<Integer, String> network = in edgeOrder_insertion() local 114 MutableNetwork<Integer, String> network = NetworkBuilder.directed().build(); in edgeOrder_default() local 125 MutableNetwork<Integer, String> network = in edgeOrder_natural() local 137 MutableNetwork<Integer, String> network = in edgeOrder_sorted() local 154 MutableNetwork<Integer, String> network = in nodeOrderUnorderedandEdgesSorted() local 223 private static void addEdges(MutableNetwork<Integer, String> network) { in addEdges()
|
D | DefaultNetworkImplementationsTest.java | 46 private MutableNetwork<Integer, String> network; field in DefaultNetworkImplementationsTest 168 private final Network<N, E> network; field in DefaultNetworkImplementationsTest.NetworkForTest 170 NetworkForTest(Network<N, E> network) { in NetworkForTest() 174 static <N, E> NetworkForTest<N, E> from(Network<N, E> network) { in from()
|
/external/guava/android/guava-tests/test/com/google/common/graph/ |
D | ImmutableNetworkTest.java | 58 Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); in edgesConnecting_directed() local 71 Network<String, String> network = ImmutableNetwork.copyOf(mutableNetwork); in edgesConnecting_undirected() local 118 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_addNode() local 127 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_putEdgeFromNodes() local 137 ImmutableNetwork<String, Integer> network = in immutableNetworkBuilder_putEdgeFromEndpointPair() local
|
D | ElementOrderTest.java | 92 MutableNetwork<Integer, String> network = in edgeOrder_none() local 101 MutableNetwork<Integer, String> network = in edgeOrder_insertion() local 114 MutableNetwork<Integer, String> network = NetworkBuilder.directed().build(); in edgeOrder_default() local 125 MutableNetwork<Integer, String> network = in edgeOrder_natural() local 137 MutableNetwork<Integer, String> network = in edgeOrder_sorted() local 154 MutableNetwork<Integer, String> network = in nodeOrderUnorderedandEdgesSorted() local 223 private static void addEdges(MutableNetwork<Integer, String> network) { in addEdges()
|
D | DefaultNetworkImplementationsTest.java | 46 private MutableNetwork<Integer, String> network; field in DefaultNetworkImplementationsTest 168 private final Network<N, E> network; field in DefaultNetworkImplementationsTest.NetworkForTest 170 NetworkForTest(Network<N, E> network) { in NetworkForTest() 174 static <N, E> NetworkForTest<N, E> from(Network<N, E> network) { in from()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowConnectivityManager.java | 151 protected NetworkInfo getNetworkInfo(Network network) { in getNetworkInfo() 197 protected boolean bindProcessToNetwork(Network network) { in bindProcessToNetwork() 260 public void addNetwork(Network network, NetworkInfo networkInfo) { in addNetwork() 271 public void removeNetwork(Network network) { in removeNetwork() 336 protected void reportNetworkConnectivity(Network network, boolean hasConnectivity) { in reportNetworkConnectivity() 348 protected NetworkCapabilities getNetworkCapabilities(Network network) { in getNetworkCapabilities() 359 public void setNetworkCapabilities(Network network, NetworkCapabilities networkCapabilities) { in setNetworkCapabilities() 375 protected LinkProperties getLinkProperties(Network network) { in getLinkProperties() 385 public void setLinkProperties(Network network, LinkProperties linkProperties) { in setLinkProperties()
|
/external/volley/src/test/java/com/android/volley/toolbox/ |
D | JsonRequestCharsetTest.java | 56 NetworkResponse network = new NetworkResponse(data); in defaultCharsetJsonObject() local 70 NetworkResponse network = new NetworkResponse(data); in defaultCharsetJsonArray() local 85 NetworkResponse network = new NetworkResponse(data, headers); in specifiedCharsetJsonObject() local 100 NetworkResponse network = new NetworkResponse(data, headers); in specifiedCharsetJsonArray() local
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | ConnectivityManagerFacade.java | 204 public void onPreCheck(Network network) { in onPreCheck() 216 public void onAvailable(Network network) { in onAvailable() 228 public void onLosing(Network network, int maxMsToLive) { in onLosing() 241 public void onLost(Network network) { in onLost() 265 public void onCapabilitiesChanged(Network network, in onCapabilitiesChanged() 280 public void onBlockedStatusChanged(Network network, boolean blocked) { in onBlockedStatusChanged() 293 public void onNetworkSuspended(Network network) { in onNetworkSuspended() 305 public void onLinkPropertiesChanged(Network network, in onLinkPropertiesChanged() 319 public void onNetworkResumed(Network network) { in onNetworkResumed() 1006 Network network = sNetworkHashMap.get(networkId.longValue()); in connectivityGetMultipathPreferenceForNetwork() local [all …]
|
/external/webrtc/sdk/android/api/org/webrtc/ |
D | NetworkMonitorAutoDetect.java | 168 public void onAvailable(Network network) { in onAvailable() 174 public void onCapabilitiesChanged(Network network, NetworkCapabilities networkCapabilities) { in onCapabilitiesChanged() 182 public void onLinkPropertiesChanged(Network network, LinkProperties linkProperties) { in onLinkPropertiesChanged() 190 public void onLosing(Network network, int maxMsToLive) { in onLosing() 198 public void onLost(Network network) { in onLost() 203 private void onNetworkChanged(Network network) { in onNetworkChanged() 246 NetworkState getNetworkState(@Nullable Network network) { in getNetworkState() 397 private @Nullable NetworkInformation networkToInfo(@Nullable Network network) { in networkToInfo() 445 boolean hasInternetCapability(Network network) { in hasInternetCapability() 877 private static long networkToNetId(Network network) { in networkToNetId()
|
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/scheduler/ |
D | RequirementsWatcher.java | 167 public void onAvailable(Network network) { in onAvailable() 172 public void onLost(Network network) { in onLost() 177 public void onCapabilitiesChanged(Network network, NetworkCapabilities networkCapabilities) { in onCapabilitiesChanged()
|
/external/boringssl/src/ssl/test/runner/ |
D | tls.go | 75 func Listen(network, laddr string, config *Config) (net.Listener, error) { argument 99 func DialWithDialer(dialer *net.Dialer, network, addr string, config *Config) (*Conn, error) { argument 170 func Dial(network, addr string, config *Config) (*Conn, error) { argument
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
D | Volley.java | 41 BasicNetwork network; in newRequestQueue() local 88 private static RequestQueue newRequestQueue(Context context, Network network) { in newRequestQueue()
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | wpas-dbus-new-signals.py | 105 def networkAdded(network, properties): argument 108 def networkRemoved(network): argument 111 def networkSelected(network): argument
|
/external/autotest/client/cros/networking/chrome_testing/ |
D | chrome_networking_test_api.py | 63 def disable_network_device(self, network): argument 83 def enable_network_device(self, network): argument
|
D | test_utils.py | 17 def get_ui_property(network, property_name, expansion_level=1): argument 87 def simple_network_sanity_check( argument
|
/external/ipsec-tools/src/racoon/ |
D | isakmp_unity.c | 210 struct unity_network *network = (struct unity_network *)(attr + 1); local 269 struct unity_network * network; local 303 int splitnet_list_add(list, network, count) in splitnet_list_add() argument
|
/external/volley/src/main/java/com/android/volley/ |
D | RequestQueue.java | 138 Cache cache, Network network, int threadPoolSize, ResponseDelivery delivery) { in RequestQueue() 152 public RequestQueue(Cache cache, Network network, int threadPoolSize) { in RequestQueue() 166 public RequestQueue(Cache cache, Network network) { in RequestQueue()
|
/external/skqp/src/compute/hs/gen/ |
D | networks.h | 28 struct hsg_op const * network; member
|
/external/mesa3d/src/gallium/targets/haiku-softpipe/ |
D | meson.build | 37 cpp.find_library('network'), dep_unwind, idep_mesautil, idep_nir, build
|
/external/ltp/testcases/lib/ |
D | tst_net_vars.c | 110 struct in_addr network; in calc_network() local 118 static int is_in_subnet_ipv4(const struct in_addr *network, in is_in_subnet_ipv4() 125 static int is_in_subnet_ipv6(const struct in6_addr *network, in is_in_subnet_ipv6() 210 struct in_addr mask, network; in get_ipv4_net16_unused() local 264 struct in6_addr mask, network; in get_ipv6_net32_unused() local
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/ |
D | trt_shape_optimization_profiles.cc | 138 const nvinfer1::INetworkDefinition* network) { in AddProfiles() 180 const nvinfer1::INetworkDefinition* network) { in ConfigureBuilder() 188 const nvinfer1::INetworkDefinition* network) { in SetShapeTensorMask()
|