HomeSort by relevance Sort by last modified time
    Searched refs:Decorator (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/android/hardware/camera2/utils/
Decorator.java 7 * This is an implementation of the 'decorator' design pattern using Java's proxy mechanism.
9 * @see android.hardware.camera2.utils.Decorator#newInstance
13 public class Decorator<T> implements InvocationHandler {
53 * Create a decorator wrapping the specified object's method calls.
56 * @param listener the decorator handler for intercepted method calls
65 new Decorator<T>(obj, listener));
68 private Decorator(T obj, DecoratorListener listener) {
CameraBinderDecorator.java 56 private static class CameraBinderDecoratorListener implements Decorator.DecoratorListener {
153 return Decorator.<T> newInstance(obj, new CameraBinderDecoratorListener());
  /external/compiler-rt/lib/msan/
msan_report.cc 38 class Decorator: private __sanitizer::AnsiColorDecorator {
40 Decorator() : __sanitizer::AnsiColorDecorator(PrintsToTtyCached()) { }
54 Decorator d;
96 Decorator d;
117 Decorator d;
  /external/compiler-rt/lib/asan/
asan_report.cc 46 // ---------------------- Decorator ------------------------------ {{{1
56 class Decorator: private __sanitizer::AnsiColorDecorator {
58 Decorator() : __sanitizer::AnsiColorDecorator(PrintsToTtyCached()) { }
103 Decorator d;
110 Decorator d;
206 Decorator d;
288 Decorator d;
340 Decorator d;
374 Decorator d;
524 Decorator d
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraUtilsDecoratorTest.java 21 import android.hardware.camera2.utils.Decorator.DecoratorListener;
38 mIface = Decorator.newInstance(new DummyImpl(), mDummyListener);

Completed in 5392 milliseconds