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

1 2 3 4 5 6

  /external/clang/test/Analysis/
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...]
call-invalidation.cpp 38 struct Wrapper {
42 void useStruct(Wrapper &w);
43 void useConstStruct(const Wrapper &w);
47 Wrapper w;
  /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
ParameterMetaData.java 24 public interface ParameterMetaData extends Wrapper {
ResultSetMetaData.java 23 public interface ResultSetMetaData extends Wrapper {
  /libcore/luni/src/main/java/javax/sql/
DataSource.java 22 import java.sql.Wrapper;
53 public interface DataSource extends CommonDataSource, Wrapper {
  /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);
attachment_id.cc 14 Wrapper* wrapper) {
15 *wrapper = new sync_pb::AttachmentIdProto();
19 Wrapper* wrapper) {
20 delete *wrapper;
24 AttachmentId::ImmutableAttachmentIdProtoTraits::Unwrap(const Wrapper& wrapper) {
25 return *wrapper;
30 Wrapper* wrapper)
    [all...]
  /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() { }
61 host.provideSupplement(key, adoptPtr(new Wrapper(supplement)));
70 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/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/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/clang/test/Analysis/Inputs/
system-header-simulator-for-malloc.h 18 @interface Wrapper : NSData
22 @implementation Wrapper
  /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/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/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/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/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...]
  /external/clang/test/CodeGenCXX/
devirtualize-virtual-function-calls.cpp 94 struct Wrapper {
97 extern Wrapper *p;
  /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/build/android/pylib/
constants.py 181 def Wrapper():
187 return Wrapper
  /external/chromium_org/third_party/libxslt/
compile 2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
  /external/chromium_org/third_party/tcmalloc/vendor/
compile 2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
  /external/cmockery/cmockery_0_1_2/
compile 2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.

Completed in 435 milliseconds

1 2 3 4 5 6