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

1 2 3 4 5 6 7 8 91011

  /external/swiftshader/src/Reactor/
Routine.hpp 31 void unbind();
Routine.cpp 33 void Routine::unbind() function in class:sw::Routine
  /frameworks/base/libs/hwui/renderstate/
PixelBufferState.h 28 bool unbind();
PixelBufferState.cpp 32 bool PixelBufferState::unbind() { function in class:android::uirenderer::PixelBufferState
  /external/swiftshader/src/D3D8/
Unknown.hpp 36 virtual void unbind();
Unknown.cpp 77 void Unknown::unbind() function in class:D3D8::Unknown
  /external/swiftshader/src/D3D9/
Unknown.hpp 36 virtual void unbind();
Unknown.cpp 75 void Unknown::unbind() function in class:D3D9::Unknown
Direct3DStateBlock9.cpp 347 this->vertexDeclaration->unbind();
366 this->indexBuffer->unbind();
423 streamSource[stream].vertexBuffer->unbind();
451 this->texture[sampler]->unbind();
501 this->pixelShader->unbind();
520 this->vertexShader->unbind();
651 if(this->indexBuffer) this->indexBuffer->unbind();
682 if(this->pixelShader) this->pixelShader->unbind();
731 if(streamSource[stream].vertexBuffer) streamSource[stream].vertexBuffer->unbind();
755 if(this->texture[sampler]) this->texture[sampler]->unbind();
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.hpp 51 void unbind();
94 virtual void unbind(exec_context &ctx) = 0;
150 virtual void unbind(exec_context &ctx);
162 virtual void unbind(exec_context &ctx);
175 virtual void unbind(exec_context &ctx);
186 virtual void unbind(exec_context &ctx);
207 virtual void unbind(exec_context &ctx);
218 virtual void unbind(exec_context &ctx);
229 virtual void unbind(exec_context &ctx);
sampler.hpp 50 void unbind(command_queue &q, void *st);
  /system/update_engine/binder_bindings/android/os/
IUpdateEngine.aidl 31 boolean unbind(IUpdateEngineCallback callback);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/binding/
BindableData.java 24 * Called by Binding during unbind to allow data to proactively unregister callbacks
45 * Unbind this data from the ui host - checks that the data is currently bound to specified id
47 public void unbind(final String bindingId) { method in class:BindableData
DetachableBinding.java 24 * temporarily unbind the data and remember it so that it can be rebound when the UI is re-attached
46 unbind(); method
Binding.java 85 public void unbind() { method in class:Binding
88 throw new IllegalStateException("not bound when unbind");
90 mData.unbind(mBindingId);
  /cts/tests/app/src/android/app/cts/android/app/cts/tools/
ServiceConnectionHandler.java 159 public void unbind() { method in class:ServiceConnectionHandler
160 unbind(mDefaultWaitTime);
163 public void unbind(long timeout) { method in class:ServiceConnectionHandler
188 unbind(timeout);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAppWidgetInfo.java 95 void unbind() { method in class:LauncherAppWidgetInfo
96 super.unbind();
FolderInfo.java 101 void unbind() { method in class:FolderInfo
102 super.unbind();
  /external/v8/src/inspector/
injected-script-native.h 26 void unbind(int id);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SnapHeader.java 55 public abstract void unbind(); method in class:SnapHeader
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CarrierServiceBindHelper.java 175 // Unbind after a delay in case this is a temporary blip in carrier privileges.
176 unbind(false /* immediate */);
182 // If we are binding to a different package, unbind immediately from the current one.
184 unbind(true /* immediate */);
205 unbind(true /* immediate */);
210 // Unbind immediately if the carrier service component has changed.
211 unbind(true /* immediate */);
245 unbind(true /* immediate */);
252 * delay. This should be true unless the reason for the unbind is that no
256 void unbind(boolean immediate) method in class:CarrierServiceBindHelper.AppBinding
    [all...]
  /frameworks/base/libs/hwui/
PixelBuffer.cpp 99 mCaches.pixelBufferState().unbind();
115 mCaches.pixelBufferState().unbind();
141 mCaches.pixelBufferState().unbind();
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
VCardContactItemData.java 144 public void unbind(final String bindingId) { method in class:VCardContactItemData
145 super.unbind(bindingId);
146 mBinding.unbind();
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
BindingTest.java 80 binding.unbind();
97 binding.unbind();
122 binding.unbind();
  /external/swiftshader/src/Renderer/
LRUCache.hpp 83 data[i]->unbind();
136 this->data[top]->unbind();

Completed in 247 milliseconds

1 2 3 4 5 6 7 8 91011