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

1 2 3 4 5 6 78 91011>>

  /external/python/cpython2/Lib/idlelib/
MultiCall.py 61 # methods: bind and unbind, which get a function and a parsed sequence, as
77 def bind(self, triplet, func): member in class:_SimpleBinder
89 self.handlerid = self.widget.bind(self.widgetinst,
200 self.handlerids.append((seq, self.widget.bind(self.widgetinst,
203 def bind(self, triplet, func): member in class:_ComplexBinder
213 self.handlerids.append((seq, self.widget.bind(self.widgetinst,
323 def bind(self, sequence=None, func=None, add=None): member in class:MultiCallCreator.MultiCall
324 #print "bind(%s, %s, %s) called." % (sequence, func, add)
335 self.__binders[triplet[1]].bind(triplet, func)
338 return widget.bind(self, sequence, func, add
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
mock_tk.py 296 def bind(sequence=None, func=None, add=None): member in class:Text
297 "Bind to this widget at event sequence a call to function func."
  /external/python/cpython3/Lib/idlelib/idle_test/
mock_tk.py 296 def bind(sequence=None, func=None, add=None): member in class:Text
297 "Bind to this widget at event sequence a call to function func."
  /external/python/cpython3/Lib/idlelib/
multicall.py 66 # methods: bind and unbind, which get a function and a parsed sequence, as
82 def bind(self, triplet, func): member in class:_SimpleBinder
94 self.handlerid = self.widget.bind(self.widgetinst,
210 self.handlerids.append((seq, self.widget.bind(self.widgetinst,
213 def bind(self, triplet, func): member in class:_ComplexBinder
223 self.handlerids.append((seq, self.widget.bind(self.widgetinst,
334 def bind(self, sequence=None, func=None, add=None): member in class:MultiCallCreator.MultiCall
335 #print("bind(%s, %s, %s)" % (sequence, func, add),
347 self.__binders[triplet[1]].bind(triplet, func)
350 return widget.bind(self, sequence, func, add
    [all...]
  /external/python/cpython3/Lib/test/
mock_socket.py 74 def bind(self, address): member in class:MockSocket
  /external/turbine/java/com/google/turbine/binder/
CanonicalTypeBinder.java 40 static SourceTypeBoundClass bind( method in class:CanonicalTypeBinder
  /external/v8/src/
splay-tree.h 143 inline void bind(Node* node) { node_ = node; } function in class:v8::internal::SplayTree::BASE_EMBEDDED
  /external/xmlrpcpp/src/
XmlRpcSocket.cpp 109 // Bind to a specified port
111 XmlRpcSocket::bind(int fd, int port) function in class:XmlRpcSocket
118 return (::bind(fd, (struct sockaddr *)&saddr, sizeof(saddr)) == 0);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteProgram.java 68 throw new IllegalArgumentException("Too many bind arguments. "
124 * Bind a NULL value to this statement. The value remains bound until
127 * @param index The 1-based index to the parameter to bind null to
130 bind(index, null); method
134 * Bind a long value to this statement. The value remains bound until
137 * @param index The 1-based index to the parameter to bind
138 * @param value The value to bind
141 bind(index, value); method
145 * Bind a double value to this statement. The value remains bound until
148 * @param index The 1-based index to the parameter to bind
152 bind(index, value); method
166 bind(index, value); method
180 bind(index, value); method
210 private void bind(int index, Object value) { method in class:SQLiteProgram
    [all...]
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/
EnableZenModeDialogTest.java 95 // as a result of doing nothing above, must bind manually:
100 mController.bind(mCountdownCondition,
104 mController.bind(mAlarmCondition,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DataUsageDetailView.java 65 public void bind(DataUsageController.DataUsageInfo info) { method in class:DataUsageDetailView
UserDetailItemView.java 93 public void bind(String name, Bitmap picture, int userId) { method in class:UserDetailItemView
98 public void bind(String name, Drawable picture, int userId) { method in class:UserDetailItemView
UserDetailView.java 84 v.bind(name, getDrawable(mContext, item), item.resolveId());
86 v.bind(name, item.picture, item.info.id);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
HybridNotificationView.java 108 public void bind(CharSequence title) { method in class:HybridNotificationView
109 bind(title, null); method
112 public void bind(CharSequence title, CharSequence text) { method in class:HybridNotificationView
  /frameworks/base/services/core/java/com/android/server/location/
LocationProviderProxy.java 65 if (proxy.bind()) {
82 private boolean bind () { method in class:LocationProviderProxy
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
TextureSource.java 58 public void bind() { method in class:TextureSource
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
DataBindingUtil.java 120 return bind(bindingComponent, view, layoutId);
129 * Prefer using the generated Binding's <code>bind</code> method to ensure type-safe inflation
139 public static <T extends ViewDataBinding> T bind(View root) { method in class:DataBindingUtil
140 return bind(root, sDefaultComponent);
147 * Prefer using the generated Binding's <code>bind</code> method to ensure type-safe inflation
158 public static <T extends ViewDataBinding> T bind(View root, method in class:DataBindingUtil
178 static <T extends ViewDataBinding> T bind(DataBindingComponent bindingComponent, View[] roots, method in class:DataBindingUtil
183 static <T extends ViewDataBinding> T bind(DataBindingComponent bindingComponent, View root, method in class:DataBindingUtil
299 return bind(component, childView, layoutId);
305 return bind(component, children, layoutId)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
ServerSocketTest.java 404 * java.net.ServerSocket#bind(java.net.SocketAddress)
411 // create servers socket, bind it and then validate basic state
415 theSocket.bind(theAddress);
442 // validate we can specify null for the address in the bind and all
445 theSocket.bind(null);
453 theSocket.bind(theAddress);
455 theSocket2.bind(localAddress);
462 // validate we get io address when we try to bind to address we
463 // cannot bind to
466 theSocket.bind(new InetSocketAddress(InetAddres
625 .bind(new InetSocketAddress(InetAddress.getLocalHost(), 0)); method
936 protected void bind(InetAddress arg0, int arg1) throws IOException { method in class:ServerSocketTest.MockSocketImpl
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldAndroidDatagramTest.java 170 s.bind(new InetSocketAddress(8888));
180 s.bind(new InetSocketAddress(8888));
OldSocketImplFactoryTest.java 129 protected void bind(InetAddress arg0, int arg1) throws IOException { method in class:OldSocketImplFactoryTest.MockSocketImpl
  /libcore/luni/src/test/java/libcore/javax/net/
ServerSocketFactoryTest.java 36 serverSocket.bind(new InetSocketAddress(0));
  /libcore/ojluni/src/main/java/java/net/
DatagramSocketImpl.java 84 protected abstract void bind(int lport, InetAddress laddr) throws SocketException; method in class:DatagramSocketImpl
SocketImpl.java 122 protected abstract void bind(InetAddress host, int port) throws IOException; method in class:SocketImpl
  /packages/apps/Car/Launcher/src/com/android/car/carlauncher/
AppGridAdapter.java 100 ((RecentAppsRowViewHolder) holder).bind( method
106 ((AppItemViewHolder) holder).bind(app, mIsDistractionOptimizationRequired); method
  /packages/apps/Dialer/java/com/android/dialer/searchfragment/directories/
DirectoryContactViewHolder.java 69 public void bind(SearchCursor cursor, String query) { method in class:DirectoryContactViewHolder

Completed in 3560 milliseconds

1 2 3 4 5 6 78 91011>>