Searched refs:Wrapper (Results 1 - 25 of 76) sorted by relevance

1234

/external/clang/test/Analysis/
H A Dinitializer.cpp98 class Wrapper { class in namespace:DefaultConstructorWithCleanups
102 Wrapper();
105 Wrapper::Wrapper() /* initializers synthesized */ {} function in class:DefaultConstructorWithCleanups::Wrapper
108 Wrapper w;
114 struct Wrapper { struct in namespace:DefaultMemberInitializers
117 Wrapper() {} function in struct:DefaultMemberInitializers::Wrapper
118 Wrapper(int x) : value(x) {} function in struct:DefaultMemberInitializers::Wrapper
119 Wrapper(bool) {} function in struct:DefaultMemberInitializers::Wrapper
123 Wrapper w
[all...]
H A Dcall-invalidation.cpp38 struct Wrapper { struct
42 void useStruct(Wrapper &w);
43 void useConstStruct(const Wrapper &w);
47 Wrapper w;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DWrapper.java3 public interface Wrapper interface
/external/clang/test/Analysis/inlining/
H A Dpath-notes.cpp93 class Wrapper { class in namespace:defaulted
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
226 struct Wrapper { struct in struct:Owner
[all...]
/external/chromium_org/sync/api/attachments/
H A Dattachment_id.h50 typedef sync_pb::AttachmentIdProto* Wrapper; typedef in struct:syncer::AttachmentId::ImmutableAttachmentIdProtoTraits
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);
H A Dattachment_id.cc14 Wrapper* wrapper) {
19 Wrapper* wrapper) {
24 AttachmentId::ImmutableAttachmentIdProtoTraits::Unwrap(const Wrapper& wrapper) {
30 Wrapper* wrapper) {
/external/chromium_org/third_party/WebKit/Source/platform/
H A DRefCountedSupplement.h43 class Wrapper FINAL : public Supplement<T> {
45 explicit Wrapper(PassRefPtr<ThisType> wrapped) : m_wrapped(wrapped) { } function in class:blink::RefCountedSupplement::FINAL
46 virtual ~Wrapper() { }
59 host.provideSupplement(key, adoptPtr(new Wrapper(supplement)));
68 return static_cast<Wrapper*>(found)->wrapped();
/external/clang/test/SemaCXX/
H A Dwarn-infinite-recursion.cpp132 struct Wrapper { struct
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/chromium_org/v8/test/mjsunit/
H A Ddouble-equals.js49 function Wrapper(value) { class
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(nul
[all...]
/external/chromium_org/sync/internal_api/public/util/
H A Dimmutable.h84 // 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) {
185 // Wrapper* wrapper) {
196 typedef T Wrapper; typedef in struct:syncer::DefaultImmutableTraits
[all...]
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-for-malloc.h18 @interface Wrapper : NSData
22 @implementation Wrapper
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp40 OProfileWrapper& Wrapper; member in class:__anon25852::OProfileJITEventListener
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
[all...]
/external/chromium_org/sync/api/
H A Dsync_data.h114 typedef sync_pb::SyncEntity* Wrapper; typedef in struct:syncer::SyncData::ImmutableSyncEntityTraits
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/
H A DEquivalence.java146 * {@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);
176 public static final class Wrapper<T> implements Serializable { class in class:Equivalence
180 private Wrapper(Equivalence<? super T> equivalence, @Nullable T reference) { method in class:Equivalence.Wrapper
198 } else if (obj instanceof Wrapper) {
199 Wrapper<?> that = (Wrapper<?>) obj;
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp43 std::unique_ptr<IntelJITEventsWrapper> Wrapper; member in class:__anon25840::IntelJITEventListener
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
94 FunctionDescToIntelJITFormat( IntelJITEventsWrapper& Wrapper, const char* FnName, uintptr_t FnStart, size_t FnSize) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowApplication.java79 private List<Wrapper> registeredReceivers = new ArrayList<Wrapper>();
325 List<Wrapper> copy = new ArrayList<Wrapper>();
327 for (Wrapper wrapper : copy) {
357 registeredReceivers.add(new Wrapper(receiver, filter, context));
380 Iterator<Wrapper> iterator = registeredReceivers.iterator();
382 Wrapper wrapper = iterator.next();
402 for (Wrapper registeredReceiver : registeredReceivers) {
414 for (Wrapper registeredReceive
518 public class Wrapper { class in class:ShadowApplication
524 public Wrapper(BroadcastReceiver broadcastReceiver, IntentFilter intentFilter, Context context) { method in class:ShadowApplication.Wrapper
[all...]
/external/clang/test/CodeGenCXX/
H A Ddevirtualize-virtual-function-calls.cpp94 struct Wrapper { struct in namespace:test4
97 extern Wrapper *p;
/external/chromium_org/build/android/pylib/
H A Dconstants.py188 def Wrapper(): function in function:_Memoize
194 return Wrapper
/external/chromium_org/third_party/libxslt/
H A Dcompile2 # 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/
H A Dcompile2 # 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/
H A Dcompile2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
/external/libogg/
H A Dcompile2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
/external/libusb/
H A Dcompile2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
/external/libusb-compat/
H A Dcompile2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
/external/libvorbis/
H A Dcompile2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.

Completed in 892 milliseconds

1234