HomeSort by relevance Sort by last modified time
    Searched defs:bind (Results 276 - 300 of 851) sorted by null

<<11121314151617181920>>

  /external/tensorflow/tensorflow/contrib/lite/toco/
args.h 51 // default_value(), specified(), value(), parse(), bind().
72 // Bind the parse member function so tensorflow::Flags can call it.
73 std::function<bool(T)> bind() { function in class:toco::final
74 return std::bind(&Arg::parse, this, std::placeholders::_1);
91 // Bind the parse member function so tensorflow::Flags can call it.
108 std::function<bool(string)> bind() { function in class:toco::final
109 return std::bind(&Arg::parse, this, std::placeholders::_1);
126 // Bind the parse member function so tensorflow::Flags can call it.
175 std::function<bool(string)> bind() { function in class:toco::final
176 return std::bind(&Arg::parse, this, std::placeholders::_1)
    [all...]
  /external/turbine/java/com/google/turbine/binder/
Binder.java 65 public static BindingResult bind( method in class:Binder
79 ClassPathBinder.bind(classpath, bootclasspath, tliBuilder);
176 return HierarchyBinder.bind(sym, psenv.get(sym), henv);
189 builder.put(sym, TypeBinder.bind(henv, sym, shenv.get(sym)));
200 builder.put(sym, CanonicalTypeBinder.bind(sym, stenv.get(sym), tenv));
247 builder.put(sym, new ConstBinder(constenv, sym, baseEnv, env.get(sym)).bind());
287 builder.put(sym, DisambiguateTypeAnnotations.bind(stenv.get(sym), tenv));
ConstBinder.java 78 public SourceTypeBoundClass bind() { method in class:ConstBinder
DisambiguateTypeAnnotations.java 69 public static SourceTypeBoundClass bind( method in class:DisambiguateTypeAnnotations
HierarchyBinder.java 40 public static SourceHeaderBoundClass bind( method in class:HierarchyBinder
44 return new HierarchyBinder(origin, base, env).bind();
60 private SourceHeaderBoundClass bind() { method in class:HierarchyBinder
  /frameworks/base/core/java/android/net/
LocalSocket.java 158 public void bind(LocalSocketAddress bindpoint) throws IOException { method in class:LocalSocket
167 impl.bind(localAddress);
Network.java 189 if (localAddress != null) socket.bind(localAddress);
214 socket.bind(new InetSocketAddress(localAddress, localPort));
358 // exists, is available to bind to a network and is not closed.
370 // exists, is available to bind to a network and is not closed.
  /frameworks/base/core/java/android/os/
UpdateEngine.java 33 * <li>Call {@link #bind}, optionally providing callbacks.
110 public boolean bind(final UpdateEngineCallback callback, final Handler handler) { method in class:UpdateEngine
143 return mUpdateEngine.bind(mUpdateEngineCallback);
151 * Equivalent to {@code bind(callback, null)}.
154 public boolean bind(final UpdateEngineCallback callback) { method in class:UpdateEngine
155 return bind(callback, null);
  /frameworks/base/core/java/android/preference/
PreferenceScreen.java 165 public void bind(ListView listView) { method in class:PreferenceScreen
196 bind(mListView);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
HybridGroupManager.java 118 reusableView.bind(titleText, contentText);
  /frameworks/base/services/core/java/com/android/server/am/
NativeCrashListener.java 121 Os.bind(serverFd, sockAddr);
PersistentConnection.java 38 * - Call {@link #bind()} to create a connection.
54 * The back-off time will never be reset until {@link #unbind()} and {@link #bind()} are called
60 * class wants to restore the connection, then it should call {@link #unbind()} and {@link #bind}
88 * Whether {@link #bind()} has been called and {@link #unbind()} hasn't been yet; meaning this
89 * is the expected bind state from the caller's point of view.
174 * @return whether {@link #bind()} has been called and {@link #unbind()} hasn't.
176 * Note when the AM gives up on connection, this class detects it and un-bind automatically,
186 * @return whether re-bind is scheduled after the AM gives up on a connection.
215 public final void bind() { method in class:PersistentConnection
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DeviceAdminServiceController.java 175 conn.bind();
  /frameworks/base/services/net/java/android/net/ip/
ConnectivityPacketTracker.java 106 Os.bind(s, new PacketSocketAddress((short) ETH_P_ALL, mInterface.index));
IpNeighborMonitor.java 153 Os.bind(fd, (SocketAddress)(new NetlinkSocketAddress(0, OsConstants.RTMGRP_NEIGH)));
  /frameworks/base/services/tests/servicestests/src/com/android/server/am/
PersistentConnectionTest.java 126 // Call bind.
127 conn.bind();
166 // Caller bind again...
167 conn.bind();
295 // Call bind again... And now the backoff is reset to 5000.
296 conn.bind();
322 // Bind.
323 conn.bind();
  /frameworks/base/tests/net/java/android/net/
NetworkTest.java 91 mLocalClient.bind(new LocalSocketAddress("testClient"));
  /frameworks/base/tests/net/java/android/net/util/
PacketReaderTest.java 84 Os.bind(s, LOOPBACK6, 0);
  /frameworks/support/car/src/androidTest/java/androidx/car/widget/
DividerVisibilityManagerTest.java 244 holder.bind(mData.get(position));
261 public void bind(String text) { method in class:DividerVisibilityManagerTest.TestViewHolder
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DatagramSocketImplTest.java 67 protected void bind(int port, InetAddress addr) throws SocketException { method in class:MockDatagramSocketImpl
SocketImplTest.java 98 protected void bind(InetAddress address, int port) throws IOException { method in class:SocketImplTest.MockSocketImpl
SocketTest.java 152 * java.net.Socket#bind(java.net.SocketAddress)
162 // Address we cannot bind to
167 theSocket.bind(bogusAddress);
174 // Now create a socket that is not bound and then bind it
176 theSocket.bind(new InetSocketAddress(InetAddress.getLocalHost(), 0));
181 assertEquals("Local address not correct after bind",
190 server.bind(theAddress);
208 theSocket.bind(null);
209 assertNotNull("Bind with null did not work", theSocket
218 theSocket.bind(theAddress)
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketImplFactoryTest.java 134 protected void bind(int arg0, InetAddress arg1) throws SocketException { method in class:OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl
OldSocketTest.java 261 s.bind(new InetSocketAddress(InetAddress.getByName("0.0.0.0"), 0));
675 // now bind the socket and make sure we get the right answer
676 theSocket.bind(new InetSocketAddress(InetAddress.getLocalHost(), 0));
683 s.bind(new InetSocketAddress(InetAddress.getByName("0.0.0.0"), 0));
691 s.bind(new InetSocketAddress(InetAddress.getByName("0.0.0.0"), 0));
713 theSocket.bind(new InetSocketAddress(InetAddress.getLocalHost(), 0));
753 // now test when we bind explicitly
757 theSocket.bind(null);
819 // Address we cannot bind to
822 theSocket.bind(new InetSocketAddress(InetAddres
2075 protected void bind(InetAddress arg0, int arg1) throws IOException { method in class:OldSocketTest.MockSocketImpl
    [all...]
ServerSocketTest.java 74 ss.bind(new InetSocketAddress(Inet4Address.getLocalHost(), 0));

Completed in 506 milliseconds

<<11121314151617181920>>