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

1 2 3 4

  /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/platform/
RefCountedSupplement.h 43 class Wrapper FINAL : public Supplement<T> {
45 explicit Wrapper(PassRefPtr<ThisType> wrapped) : m_wrapped(wrapped) { }
46 virtual ~Wrapper() { }
59 host.provideSupplement(key, adoptPtr(new Wrapper(supplement)));
68 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/sync/api/attachments/
attachment_id.h 50 typedef sync_pb::AttachmentIdProto* Wrapper;
51 static void InitializeWrapper(Wrapper* wrapper);
52 static void DestroyWrapper(Wrapper* wrapper);
53 static const sync_pb::AttachmentIdProto& Unwrap(const Wrapper& wrapper);
54 static sync_pb::AttachmentIdProto* UnwrapMutable(Wrapper* wrapper);
  /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/chromium_org/sync/api/
sync_data.h 114 typedef sync_pb::SyncEntity* Wrapper;
116 static void InitializeWrapper(Wrapper* wrapper);
118 static void DestroyWrapper(Wrapper* wrapper);
120 static const sync_pb::SyncEntity& Unwrap(const Wrapper& wrapper);
122 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/Target/MSP430/
MSP430ISelLowering.h 43 /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
45 Wrapper,
  /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/clang/test/SemaCXX/
warn-infinite-recursion.cpp 132 struct Wrapper {
134 // Similar to the above, Wrapper<0>::run() will discard the if statement.
137 return Wrapper<x/2>::run();
147 return Wrapper<x>::run() +
148 Wrapper<x>::run2(); // expected-note{{instantiation}}
  /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/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 40 OProfileWrapper& Wrapper;
46 : Wrapper(LibraryWrapper) {
64 if (!Wrapper.op_open_agent()) {
73 if (Wrapper.isAgentAvailable()) {
74 if (Wrapper.op_close_agent() == -1) {
102 if (Wrapper.op_write_native_code(F.getName().data(),
148 if (Wrapper.op_write_debug_line_info(FnStart, LineInfo.size(),
161 if (Wrapper.op_unload_native_code(reinterpret_cast<uint64_t>(FnStart)) == -1) {
169 if (!Wrapper.isAgentAvailable()) {
186 if (Wrapper.op_write_native_code(Name.data(), Addr, (void*)Addr, Size
    [all...]
  /external/chromium_org/build/android/pylib/
constants.py 188 def Wrapper():
194 return 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 std::unique_ptr<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);
218 iJIT_Method_Load FunctionMessage = FunctionDescToIntelJITFormat(*Wrapper,
247 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
277 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START
    [all...]
  /external/chromium_org/chrome/browser/devtools/device/
devtools_android_bridge.cc 236 DevToolsAndroidBridge::Wrapper::Wrapper(content::BrowserContext* context) {
240 DevToolsAndroidBridge::Wrapper::~Wrapper() {
243 DevToolsAndroidBridge* DevToolsAndroidBridge::Wrapper::Get() {
255 DevToolsAndroidBridge::Wrapper* wrapper = local
256 static_cast<DevToolsAndroidBridge::Wrapper*>(GetInstance()->
258 return wrapper ? wrapper->Get() : NULL
    [all...]
devtools_android_bridge.h 47 class Wrapper : public KeyedService {
49 explicit Wrapper(content::BrowserContext* context);
50 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...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ItemBridgeAdapter.java 51 * The wrapper must be immediate parent of the wrapped view.
53 public static abstract class Wrapper {
55 public abstract void wrap(View wrapper, View wrapped);
59 private Wrapper mWrapper;
183 public void setWrapper(Wrapper wrapper) {
184 mWrapper = wrapper;
187 public Wrapper getWrapper() {
  /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/llvm/lib/Target/ARM/
ARMISelLowering.h 34 Wrapper, // Wrapper - A wrapper node for TargetConstantPool,
36 WrapperPIC, // WrapperPIC - A wrapper node for TargetGlobalAddress in
38 WrapperJT, // WrapperJT - A wrapper node for TargetJumpTable
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 97 Wrapper,
266 // (add (load (wrapper $gp, %got(sym)), %lo(sym))
272 SDValue GOT = DAG.getNode(MipsISD::Wrapper, DL, Ty, getGlobalReg(DAG, Ty),
286 // (load (wrapper $gp, %got(sym)))
292 SDValue Tgt = DAG.getNode(MipsISD::Wrapper, DL, Ty, getGlobalReg(DAG, Ty),
300 // (load (wrapper (add %hi(sym), $gp), %lo(sym)))
310 SDValue Wrapper = DAG.getNode(MipsISD::Wrapper, DL, Ty, Hi,
312 return DAG.getLoad(Ty, DL, Chain, Wrapper, PtrInfo, false, false, false,

Completed in 504 milliseconds

1 2 3 4