HomeSort by relevance Sort by last modified time
    Searched defs:Wrapper (Results 1 - 25 of 61) sorted by null

1 2 3

  /libcore/luni/src/main/java/java/sql/
Wrapper.java 21 * This class is an actual usage of the wrapper pattern for JDBC classes.
27 public interface Wrapper {
31 * not a wrapper, a SQLException will be thrown.
42 * If the caller is a wrapper of the class or implements the given
  /external/chromium_org/third_party/WebKit/Source/core/platform/
RefCountedSupplement.h 43 class Wrapper : public Supplement<T> {
45 explicit Wrapper(PassRefPtr<ThisType> wrapped) : m_wrapped(wrapped) { }
46 virtual ~Wrapper() { m_wrapped->hostDestroyed(); }
58 host->provideSupplement(key, adoptPtr(new Wrapper(supplement)));
67 return static_cast<Wrapper*>(found)->wrapped();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Wrapper.java 3 public interface Wrapper
8 * Return the name of the algorithm the wrapper implements.
10 * @return the name of the algorithm the wrapper implements.
  /external/chromium_org/v8/test/mjsunit/
double-equals.js 49 function Wrapper(value) {
111 var x = new Wrapper(null);
134 testNotEqual(null, new Wrapper(null));
139 testNotEqual(undefined, new Wrapper(undefined));
170 testEqual(new Wrapper(true), true);
171 testEqual(new Wrapper(true), 1);
172 testEqual(new Wrapper(false), false);
173 testEqual(new Wrapper(false), 0);
206 testNotEqual(new Wrapper(null), new Wrapper(null))
    [all...]
  /external/v8/test/mjsunit/
double-equals.js 49 function Wrapper(value) {
111 var x = new Wrapper(null);
134 testNotEqual(null, new Wrapper(null));
139 testNotEqual(undefined, new Wrapper(undefined));
170 testEqual(new Wrapper(true), true);
171 testEqual(new Wrapper(true), 1);
172 testEqual(new Wrapper(false), false);
173 testEqual(new Wrapper(false), 0);
206 testNotEqual(new Wrapper(null), new Wrapper(null))
    [all...]
  /external/chromium_org/sync/api/
sync_data.h 96 typedef sync_pb::SyncEntity* Wrapper;
98 static void InitializeWrapper(Wrapper* wrapper);
100 static void DestroyWrapper(Wrapper* wrapper);
102 static const sync_pb::SyncEntity& Unwrap(const Wrapper& wrapper);
104 static sync_pb::SyncEntity* UnwrapMutable(Wrapper* wrapper);
  /external/clang/test/Analysis/
call-invalidation.cpp 38 struct Wrapper {
42 void useStruct(Wrapper &w);
43 void useConstStruct(const Wrapper &w);
47 Wrapper w;
initializer.cpp 98 class Wrapper {
102 Wrapper();
105 Wrapper::Wrapper() /* initializers synthesized */ {}
108 Wrapper w;
114 struct Wrapper {
117 Wrapper() {}
118 Wrapper(int x) : value(x) {}
119 Wrapper(bool) {}
123 Wrapper w1
    [all...]
derived-to-base.cpp 320 struct Wrapper {
324 Wrapper(const FullyDerived &d) : d(d), zz(0) {}
328 Wrapper w((FullyDerived()));
331 Wrapper w2(w);
  /external/clang/test/CodeGenCXX/
devirtualize-virtual-function-calls.cpp 94 struct Wrapper {
97 extern Wrapper *p;
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 38 OProfileWrapper& Wrapper;
44 : Wrapper(LibraryWrapper) {
58 if (!Wrapper.op_open_agent()) {
67 if (Wrapper.isAgentAvailable()) {
68 if (Wrapper.op_close_agent() == -1) {
96 if (Wrapper.op_write_native_code(F.getName().data(),
142 if (Wrapper.op_write_debug_line_info(FnStart, LineInfo.size(),
155 if (Wrapper.op_unload_native_code(reinterpret_cast<uint64_t>(FnStart)) == -1) {
  /external/chromium_org/sync/internal_api/public/util/
immutable.h 84 // primitive types and the case where Traits::Wrapper == T.
107 typename Traits::Wrapper wrapper_;
126 // headers). (This is why the Traits::Wrapper type exists; normally,
127 // Traits::Wrapper is just T itself, but that needs to be changed for
161 // typedef SomeOtherType* Wrapper;
163 // static void InitializeWrapper(Wrapper* wrapper);
165 // static void DestroyWrapper(Wrapper* wrapper);
180 // Wrapper* wrapper)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 145 * Returns a wrapper of {@code reference} that implements
146 * {@link Wrapper#equals(Object) Object.equals()} such that
151 public final <S extends T> Wrapper<S> wrap(@Nullable S reference) {
152 return new Wrapper<S>(this, reference);
167 * <p>Note in particular that an equivalence wrapper is never equal to the object it wraps.
176 public static final class Wrapper<T> implements Serializable {
180 private Wrapper(Equivalence<? super T> equivalence, @Nullable T reference) {
198 } else if (obj instanceof Wrapper) {
199 Wrapper<?> that = (Wrapper<?>) obj
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 43 /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
45 Wrapper,
  /external/clang/test/Analysis/inlining/
path-notes.cpp 93 class Wrapper {
112 Wrapper w;
113 // expected-note@-1 {{Calling implicit default constructor for 'Wrapper'}}
117 void testCopyConstruction(const Wrapper &input) {
120 Wrapper w{input};
121 // expected-note@-1 {{Calling implicit copy constructor for 'Wrapper'}}
132 void testCopyAssignment(const Wrapper &input) {
133 Wrapper w;
137 // expected-note@-1 {{Calling implicit copy assignment operator for 'Wrapper'}}
150 Wrapper w
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 43 OwningPtr<IntelJITEventsWrapper> Wrapper;
54 Wrapper.reset(libraryWrapper);
95 IntelJITEventsWrapper& Wrapper,
102 Result.method_id = Wrapper.iJIT_GetNewMethodID();
120 iJIT_Method_Load FunctionMessage = FunctionDescToIntelJITFormat(*Wrapper,
177 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
185 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START, &I->second);
219 iJIT_Method_Load FunctionMessage = FunctionDescToIntelJITFormat(*Wrapper,
248 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
278 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.h 28 Wrapper,
  /external/chromium_org/chrome/browser/devtools/
devtools_adb_bridge.cc 464 DevToolsAdbBridge::Wrapper::Wrapper(Profile* profile)
468 DevToolsAdbBridge::Wrapper::~Wrapper() {
471 DevToolsAdbBridge* DevToolsAdbBridge::Wrapper::Get() {
483 DevToolsAdbBridge::Wrapper* wrapper = local
484 static_cast<DevToolsAdbBridge::Wrapper*>(GetInstance()->
486 return wrapper ? wrapper->Get() : NULL
    [all...]
devtools_adb_bridge.h 53 class Wrapper : public BrowserContextKeyedService {
55 explicit Wrapper(Profile* profile);
56 virtual ~Wrapper();
  /external/chromium_org/third_party/leveldatabase/src/db/
c.cc 503 struct Wrapper : public leveldb_filterpolicy_t {
505 ~Wrapper() { delete rep_; }
515 Wrapper* wrapper = new Wrapper; local
516 wrapper->rep_ = NewBloomFilterPolicy(bits_per_key);
517 wrapper->state_ = NULL;
518 wrapper->destructor_ = &Wrapper::DoNothing;
519 return wrapper;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 96 Wrapper,
  /frameworks/base/core/tests/coretests/src/android/text/
TextUtilsTest.java 271 CharSequence s2 = new Wrapper(s1);
394 * CharSequence wrapper for testing the cases where text is copied into
397 private static class Wrapper implements CharSequence {
400 public Wrapper(CharSequence s) {
418 return new Wrapper(mString.subSequence(start, end));
  /external/chromium/net/socket/
socket_test_util.cc 1003 this, &ConnectCallback::Wrapper)),
1010 void Wrapper(int rv) {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.h 36 Wrapper, // Wrapper - A wrapper node for TargetConstantPool,
38 WrapperDYN, // WrapperDYN - A wrapper node for TargetGlobalAddress in
40 WrapperPIC, // WrapperPIC - A wrapper node for TargetGlobalAddress in
42 WrapperJT, // WrapperJT - A wrapper node for TargetJumpTable
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowApplication.java 79 private List<Wrapper> registeredReceivers = new ArrayList<Wrapper>();
325 List<Wrapper> copy = new ArrayList<Wrapper>();
327 for (Wrapper wrapper : copy) {
328 if (wrapper.intentFilter.matchAction(intent.getAction())) {
329 wrapper.broadcastReceiver.onReceive(realApplication, intent);
357 registeredReceivers.add(new Wrapper(receiver, filter, context));
380 Iterator<Wrapper> iterator = registeredReceivers.iterator()
382 Wrapper wrapper = iterator.next(); local
    [all...]

Completed in 675 milliseconds

1 2 3