Searched refs:bind (Results 1 - 25 of 88) sorted by relevance

1234

/frameworks/data-binding/integration-tests/MultiModuleTestApp/app/src/androidTest/java/com/android/databinding/multimoduletestapp/
H A DGeneratedLayoutTest.java32 ViewDataBinding bind = DataBindingUtil.bind(view);
34 bind.getClass().getSimpleName());
42 ViewDataBinding bind = DataBindingUtil.bind(view);
44 bind.getClass().getSimpleName());
52 ViewDataBinding bind = DataBindingUtil.bind(view);
54 bind.getClass().getSimpleName());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/database/
H A DCursorMapper.java28 * should bind column indexes to column names in this method. This method is
38 protected abstract Object bind(Cursor cursor); method in class:CursorMapper
48 return bind(mCursor);
/frameworks/base/libs/hwui/renderstate/
H A DPixelBufferState.cpp25 bool PixelBufferState::bind(GLuint buffer) { function in class:android::uirenderer::PixelBufferState
H A DPixelBufferState.h27 bool bind(GLuint buffer);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteProgram.java68 throw new IllegalArgumentException("Too many bind arguments. "
127 * @param index The 1-based index to the parameter to bind null to
130 bind(index, null);
137 * @param index The 1-based index to the parameter to bind
138 * @param value The value to bind
141 bind(index, value);
148 * @param index The 1-based index to the parameter to bind
149 * @param value The value to bind
152 bind(index, value);
159 * @param index The 1-based index to the parameter to bind
210 private void bind(int index, Object value) { method in class:SQLiteProgram
[all...]
/frameworks/base/core/java/android/os/
H A DUpdateEngine.java90 public boolean bind(final UpdateEngineCallback callback, final Handler handler) { method in class:UpdateEngine
122 return mUpdateEngine.bind(updateEngineCallback);
129 public boolean bind(final UpdateEngineCallback callback) { method in class:UpdateEngine
130 return bind(callback, null);
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DDataBindingUtil.java120 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(componen
[all...]
H A DViewStubProxy.java39 mViewDataBinding = DataBindingUtil.bind(mContainingBinding.mBindingComponent,
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DSectionBreakDocumentsAdapterWrapper.java84 ((EmptyDocumentHolder)holder).bind(mEnv.getDisplayState());
93 ((EmptyDocumentHolder)holder).bind(mEnv.getDisplayState());
237 public void bind(State state) { method in class:SectionBreakDocumentsAdapterWrapper.EmptyDocumentHolder
238 bind(null, null, state);
242 public void bind(Cursor cursor, String modelId, State state) { method in class:SectionBreakDocumentsAdapterWrapper.EmptyDocumentHolder
/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java48 impl.bind(localAddress);
H A DLocalSocket.java144 public void bind(LocalSocketAddress bindpoint) throws IOException { method in class:LocalSocket
153 impl.bind(localAddress);
/frameworks/base/libs/hwui/
H A DPixelBuffer.cpp107 mCaches.pixelBufferState().bind(mBuffer);
118 mCaches.pixelBufferState().bind(mBuffer);
134 mCaches.pixelBufferState().bind(mBuffer);
150 // If the buffer is not mapped, unmap() will not bind it
151 mCaches.pixelBufferState().bind(mBuffer);
H A DRenderBuffer.h64 void bind() const { function in struct:android::uirenderer::RenderBuffer
/frameworks/base/services/core/java/com/android/server/location/
H A DGeocoderProxy.java46 if (proxy.bind()) {
62 private boolean bind () { method in class:GeocoderProxy
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DHybridNotificationView.java112 public void bind(CharSequence title) { method in class:HybridNotificationView
113 bind(title, null);
116 public void bind(CharSequence title, CharSequence text) { method in class:HybridNotificationView
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DDataBindingUtilTest.java43 BasicBindingBinding innerBinding = DataBindingUtil.bind(inflated);
71 BasicBindingBinding binding = DataBindingUtil.bind(view);
73 assertEquals(binding, DataBindingUtil.<BasicBindingBinding>bind(view));
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DUserDetailView.java79 v.bind(name, getDrawable(mContext, item), item.resolveId());
81 v.bind(name, item.picture, item.info.id);
H A DUserDetailItemView.java91 public void bind(String name, Bitmap picture, int userId) { method in class:UserDetailItemView
96 public void bind(String name, Drawable picture, int userId) { method in class:UserDetailItemView
/frameworks/base/services/net/java/android/net/netlink/
H A DNetlinkSocket.java67 public void bind(NetlinkSocketAddress localAddr) throws ErrnoException, SocketException { method in class:NetlinkSocket
68 Os.bind(mDescriptor, (SocketAddress)localAddr);
/frameworks/base/tools/aapt2/xml/
H A DXmlActionExecutor.cpp32 mActions.emplace_back(std::bind(wrapperOne, std::move(f),
38 mActions.emplace_back(std::bind(wrapperTwo, std::move(f),
/frameworks/opt/net/voip/src/jni/rtp/
H A DRtpStream.cpp50 if (socket == -1 || bind(socket, (sockaddr *)&ss, sizeof(ss)) != 0 ||
77 if (bind(socket, (sockaddr *)&ss, sizeof(ss)) == 0) {
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLocation.java28 import javax.xml.bind.annotation.XmlAccessType;
29 import javax.xml.bind.annotation.XmlAccessorType;
30 import javax.xml.bind.annotation.XmlAttribute;
31 import javax.xml.bind.annotation.XmlElement;
/frameworks/native/opengl/libagl/
H A DBufferObjectManager.h62 gl::buffer_t const* bind(GLuint buffer);
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp295 void bind() { function in class:android::ArrayHelper
341 positions.bind();
342 sphere.bind();
504 mvp.bind();
505 spheres.bind();
506 results.bind();
554 ws.bind();
555 positions.bind();
556 indices.bind();
604 resultMat.bind();
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceScreen.java142 public void bind(ListView listView) { method in class:PreferenceScreen
169 bind(mListView);

Completed in 567 milliseconds

1234