HomeSort by relevance Sort by last modified time
    Searched refs:Callback (Results 701 - 725 of 1790) sorted by null

<<21222324252627282930>>

  /external/clang/lib/Frontend/
DependencyFile.cpp 245 DFGImpl *Callback = new DFGImpl(&PP, Opts);
246 PP.addPPCallbacks(std::unique_ptr<PPCallbacks>(Callback));
248 llvm::make_unique<DFGMMCallback>(*Callback));
249 return new DependencyFileGenerator(Callback);
  /external/javasqlite/src/main/java/SQLite/
Database.java 164 * Execute an SQL statement and invoke callback methods
172 * @param cb the object implementing the callback methods
175 public void exec(String sql, SQLite.Callback cb) throws SQLite.Exception {
181 private native void _exec(String sql, SQLite.Callback cb)
185 * Execute an SQL statement and invoke callback methods
203 * @param cb the object implementing the callback methods
207 public void exec(String sql, SQLite.Callback cb,
214 private native void _exec(String sql, SQLite.Callback cb, String args[])
255 * Establish a busy callback method which gets called when
258 * @param bh the object implementing the busy callback metho
    [all...]
  /external/libbrillo/brillo/
process.h 15 #include <base/callback.h>
102 typedef base::Callback<bool(void)> PreExecCallback;
104 // Set the pre-exec callback. This is called after all setup is complete but
105 // before we exec() the process. The callback may return false to cause Start
  /external/libchrome/base/metrics/
statistics_recorder.h 22 #include "base/callback.h"
149 typedef base::Callback<void(HistogramBase::Sample)> OnSampleCallback;
151 // SetCallback sets the callback to notify when a new sample is recorded on
154 // safe. The return value is whether or not the callback was successfully set.
156 const OnSampleCallback& callback);
158 // ClearCallback clears any callback set on the histogram referred to by
162 // FindCallback retrieves the callback for the histogram referred to by
163 // |histogram_name|, or a null callback if no callback exists for this
195 // created, we can set the callback properly
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/
associated_interface_ptr.h 11 #include "base/callback.h"
93 // result will be returned as the input of |callback|. The version number of
95 void QueryVersion(const base::Callback<void(uint32_t)>& callback) {
96 internal_state_.QueryVersion(callback);
interface_ptr.h 100 // result will be returned as the input of |callback|. The version number of
102 void QueryVersion(const base::Callback<void(uint32_t)>& callback) {
103 internal_state_.QueryVersion(callback);
  /external/llvm/include/llvm/IR/
LLVMContext.h 135 /// Defines the type of a yield callback.
193 /// \brief Registers a yield callback with the given context.
195 /// The yield callback function may be called by LLVM to transfer control back
199 /// the client is not guaranteed to ever receive this callback. It is at the
207 /// yield callback are allowed to be used. Any other API calls into the
208 /// context are not supported until the yield callback function returns
210 void setYieldCallback(YieldCallbackTy Callback, void *OpaqueHandle);
212 /// \brief Calls the yield callback (if applicable).
  /external/lzma/CPP/7zip/Archive/
LzmaHandler.cpp 406 CMyComPtr<IArchiveOpenCallback> Callback;
412 void Init(IArchiveOpenCallback *callback) { Callback = callback; }
417 if (Callback)
421 return Callback->SetCompleted(&files, &value);
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.h 88 IUpdateCallbackUI *Callback;
  /external/webrtc/webrtc/common_audio/
lapped_transform.cc 61 Callback* callback)
67 block_processor_(callback),
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
nonlinear_beamformer.h 36 public LappedTransform::Callback {
68 // happens. Implements LappedTransform::Callback.
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.h 81 class TransformCallback : public LappedTransform::Callback {
  /external/webrtc/webrtc/modules/desktop_capture/
mouse_cursor_monitor_unittest.cc 24 public MouseCursorMonitor::Callback {
30 // MouseCursorMonitor::Callback interface
  /frameworks/base/core/java/android/hardware/display/
DisplayManagerGlobal.java 386 VirtualDisplay.Callback callback, Handler handler, String uniqueId) {
395 VirtualDisplayCallback callbackWrapper = new VirtualDisplayCallback(callback, handler);
494 public VirtualDisplayCallback(VirtualDisplay.Callback callback, Handler handler) {
495 if (callback != null) {
496 mDelegate = new VirtualDisplayCallbackDelegate(callback, handler);
527 private final VirtualDisplay.Callback mCallback;
529 public VirtualDisplayCallbackDelegate(VirtualDisplay.Callback callback,
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
AbstractInputMethodService.java 48 implements KeyEvent.Callback {
65 public void createSession(SessionCallback callback) {
66 callback.sessionCreated(onCreateInputMethodSessionInterface());
138 public void dispatchKeyEvent(int seq, KeyEvent event, EventCallback callback) {
141 if (callback != null) {
142 callback.finishedEvent(seq, handled);
151 public void dispatchTrackballEvent(int seq, MotionEvent event, EventCallback callback) {
153 if (callback != null) {
154 callback.finishedEvent(seq, handled);
163 public void dispatchGenericMotionEvent(int seq, MotionEvent event, EventCallback callback) {
    [all...]
  /frameworks/base/core/java/android/preference/
SeekBarVolumizer.java 47 public class SeekBarVolumizer implements OnSeekBarChangeListener, Handler.Callback {
50 public interface Callback {
58 private final Callback mCallback;
90 public SeekBarVolumizer(Context context, int streamType, Uri defaultUri, Callback callback) {
102 mCallback = callback;
  /frameworks/base/core/java/android/view/
InputQueue.java 92 FinishedInputEventCallback callback) {
93 ActiveInputEvent event = obtainActiveInputEvent(token, callback);
114 FinishedInputEventCallback callback) {
120 e.mCallback = callback;
143 public static interface Callback {
  /frameworks/base/core/java/android/widget/
PopupMenu.java 101 mMenu.setCallback(new MenuBuilder.Callback() {
275 * Callback interface used to notify the application that the menu has closed.
  /frameworks/base/graphics/java/android/graphics/drawable/
DrawableWrapper.java 47 public abstract class DrawableWrapper extends Drawable implements Drawable.Callback {
202 final Callback callback = getCallback(); local
203 if (callback != null) {
204 callback.invalidateDrawable(this);
210 final Callback callback = getCallback(); local
211 if (callback != null) {
212 callback.scheduleDrawable(this, what, when);
218 final Callback callback = getCallback() local
    [all...]
  /frameworks/base/location/java/android/location/
GnssMeasurementsEvent.java 34 * Events are delivered to registered instances of {@link Callback}.
46 public static abstract class Callback {
  /frameworks/base/media/java/android/media/session/
MediaSessionManager.java 417 * Set a {@link Callback}.
419 * <p>System can only have a single callback, and the callback can only be set by
422 * @param callback A {@link Callback}. {@code null} to reset.
423 * @param handler The handler on which the callback should be invoked, or {@code null}
424 * if the callback should be invoked on the calling thread's looper.
427 public void setCallback(@Nullable Callback callback, @Nullable Handler handler) {
430 if (callback == null)
    [all...]
  /frameworks/base/media/java/android/media/soundtrigger/
SoundTriggerManager.java 112 * @param callback Instance of the {@link SoundTriggerDetector#Callback} object for the
114 * @param handler The Handler to use for the callback operations. A null value will use the
121 @NonNull SoundTriggerDetector.Callback callback, @Nullable Handler handler) {
131 soundModelId, callback, handler);
  /frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusedLocationProvider.java 40 public class FusedLocationProvider extends LocationProviderBase implements FusionEngine.Callback {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DndTile.java 253 private final ZenModeController.Callback mZenCallback = new ZenModeController.Callback() {
391 private final ZenModePanel.Callback mZenModePanelCallback = new ZenModePanel.Callback() {
NightDisplayTile.java 34 implements NightDisplayController.Callback {

Completed in 853 milliseconds

<<21222324252627282930>>