Home
last modified time | relevance | path

Searched refs:Wrapper (Results 1 – 25 of 97) sorted by relevance

1234

/external/clang/test/Analysis/
Dinitializer.cpp98 class Wrapper { class
102 Wrapper();
105 Wrapper::Wrapper() /* initializers synthesized */ {} in Wrapper() function in DefaultConstructorWithCleanups::Wrapper
108 Wrapper w; in test()
114 struct Wrapper { struct
117 Wrapper() {} in Wrapper() function
118 Wrapper(int x) : value(x) {} in Wrapper() function
119 Wrapper(bool) {} in Wrapper() function
123 Wrapper w1; in test()
126 Wrapper w2(50); in test()
[all …]
Dcall-invalidation.cpp38 struct Wrapper { struct
42 void useStruct(Wrapper &w); argument
43 void useConstStruct(const Wrapper &w);
47 Wrapper w; in testPointerStruct()
/external/clang/test/Analysis/inlining/
Dpath-notes.cpp93 class Wrapper { class
112 Wrapper w; in testDefaultConstruction()
117 void testCopyConstruction(const Wrapper &input) { in testCopyConstruction()
120 Wrapper w{input}; in testCopyConstruction()
132 void testCopyAssignment(const Wrapper &input) { in testCopyAssignment()
133 Wrapper w; in testCopyAssignment()
150 Wrapper w; in testDestruction()
226 struct Wrapper { struct
229 Wrapper *arr;
242 Owner::Wrapper *arr; // expected-note {{'arr' declared without an initial value}} in testGetDerefExprOnMemberExprWithADot() argument
/external/v8/test/mjsunit/
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(null));
/external/chromium_org/v8/test/mjsunit/
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(null));
/external/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileJITEventListener.cpp38 OProfileWrapper& Wrapper; member in __anon443a4f3a0111::OProfileJITEventListener
44 : Wrapper(LibraryWrapper) { in OProfileJITEventListener()
58 if (!Wrapper.op_open_agent()) { in initialize()
67 if (Wrapper.isAgentAvailable()) { in ~OProfileJITEventListener()
68 if (Wrapper.op_close_agent() == -1) { in ~OProfileJITEventListener()
96 if (Wrapper.op_write_native_code(F.getName().data(), in NotifyFunctionEmitted()
142 if (Wrapper.op_write_debug_line_info(FnStart, LineInfo.size(), in NotifyFunctionEmitted()
155 if (Wrapper.op_unload_native_code(reinterpret_cast<uint64_t>(FnStart)) == -1) { in NotifyFreeingMachineCode()
/external/chromium_org/third_party/WebKit/Source/platform/
DRefCountedSupplement.h43 class Wrapper : public Supplement<T> {
45 explicit Wrapper(PassRefPtr<ThisType> wrapped) : m_wrapped(wrapped) { } in Wrapper() function
46 virtual ~Wrapper() { m_wrapped->hostDestroyed(); } in ~Wrapper()
58 host->provideSupplement(key, adoptPtr(new Wrapper(supplement))); in provideTo()
67 return static_cast<Wrapper*>(found)->wrapped(); in from()
/external/clang/test/SemaObjCXX/
Dpointer-to-objc-pointer-conv.mm29 class Wrapper {
39 Wrapper &operator*();
40 Wrapper &operator[](int);
41 Wrapper& operator->*(int);
48 Wrapper w;
/external/chromium_org/sync/internal_api/public/util/
Dimmutable.h107 typename Traits::Wrapper wrapper_;
196 typedef T Wrapper; typedef
198 static void InitializeWrapper(Wrapper* wrapper) {} in InitializeWrapper()
200 static void DestroyWrapper(Wrapper* wrapper) {} in DestroyWrapper()
202 static const T& Unwrap(const Wrapper& wrapper) { return wrapper; } in Unwrap()
204 static T* UnwrapMutable(Wrapper* wrapper) { return wrapper; } in UnwrapMutable()
/external/guava/guava/src/com/google/common/base/
DEquivalence.java151 public final <S extends T> Wrapper<S> wrap(@Nullable S reference) { in wrap()
152 return new Wrapper<S>(this, reference); in wrap()
176 public static final class Wrapper<T> implements Serializable { class in Equivalence
180 private Wrapper(Equivalence<? super T> equivalence, @Nullable T reference) { in Wrapper() method in Equivalence.Wrapper
198 } else if (obj instanceof Wrapper) { in equals()
199 Wrapper<?> that = (Wrapper<?>) obj; in equals()
/external/chromium_org/sync/api/
Dsync_data.h96 typedef sync_pb::SyncEntity* Wrapper; typedef
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);
Dsync_data.cc21 Wrapper* wrapper) { in InitializeWrapper()
26 Wrapper* wrapper) { in DestroyWrapper()
31 const Wrapper& wrapper) { in Unwrap()
36 Wrapper* wrapper) { in UnwrapMutable()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowApplication.java79 private List<Wrapper> registeredReceivers = new ArrayList<Wrapper>();
325 List<Wrapper> copy = new ArrayList<Wrapper>(); in sendBroadcast()
327 for (Wrapper wrapper : copy) { in sendBroadcast()
357 registeredReceivers.add(new Wrapper(receiver, filter, context)); in registerReceiverWithContext()
380 Iterator<Wrapper> iterator = registeredReceivers.iterator(); in unregisterReceiver()
382 Wrapper wrapper = iterator.next(); in unregisterReceiver()
402 for (Wrapper registeredReceiver : registeredReceivers) { in assertNoBroadcastListenersRegistered()
414 for (Wrapper registeredReceiver : registeredReceivers) { in assertNoBroadcastListenersOfActionRegistered()
431 for (Wrapper wrapper : registeredReceivers) { in hasReceiverForIntent()
441 for (Wrapper wrapper : registeredReceivers) { in getReceiversForIntent()
[all …]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
DIntelJITEventListener.cpp43 OwningPtr<IntelJITEventsWrapper> Wrapper; member in __anondc3b3e270111::IntelJITEventListener
54 Wrapper.reset(libraryWrapper); in IntelJITEventListener()
95 IntelJITEventsWrapper& Wrapper, in FunctionDescToIntelJITFormat() argument
102 Result.method_id = Wrapper.iJIT_GetNewMethodID(); in FunctionDescToIntelJITFormat()
120 iJIT_Method_Load FunctionMessage = FunctionDescToIntelJITFormat(*Wrapper, in NotifyFunctionEmitted()
177 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED, in NotifyFunctionEmitted()
185 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START, &I->second); in NotifyFreeingMachineCode()
219 iJIT_Method_Load FunctionMessage = FunctionDescToIntelJITFormat(*Wrapper, in NotifyObjectEmitted()
248 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED, in NotifyObjectEmitted()
278 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START, in NotifyFreeingObject()
/external/chromium_org/mojo/public/bindings/lib/
Darray_internal.h23 typedef Array<T> Wrapper; typedef
41 typedef Array<typename P::Wrapper> Wrapper;
80 typedef Array<bool> Wrapper;
100 typedef typename Traits::Wrapper Wrapper;
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
DSVGAnimatedPropertyMacros.h103 &OwnerType::lookupOrCreate##UpperProperty##Wrapper)); \
128 return static_pointer_cast<TearOffType>(lookupOrCreate##UpperProperty##Wrapper(this)); \
139 PassRefPtr<SVGAnimatedProperty> OwnerType::lookupOrCreate##UpperProperty##Wrapper(SVGElement* maske…
171 …static PassRefPtr<SVGAnimatedProperty> lookupOrCreate##UpperProperty##Wrapper(SVGElement* maskedOw…
/external/clang/test/Analysis/Inputs/
Dsystem-header-simulator-for-malloc.h18 @interface Wrapper : NSData
22 @implementation Wrapper
/external/clang/test/CodeGenCXX/
Ddevirtualize-virtual-function-calls.cpp94 struct Wrapper { struct
97 extern Wrapper *p;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
DBaseWrapCipher.java34 import org.bouncycastle.crypto.Wrapper;
63 protected Wrapper wrapEngine = null;
73 Wrapper wrapEngine) in BaseWrapCipher()
79 Wrapper wrapEngine, in BaseWrapCipher()
/external/mesa3d/include/CL/
Dcl.hpp1090 class Wrapper class
1099 Wrapper() : object_(NULL) { } in Wrapper() function in cl::detail::Wrapper
1101 ~Wrapper() in ~Wrapper()
1106 Wrapper(const Wrapper<cl_type>& rhs) in Wrapper() function in cl::detail::Wrapper
1112 Wrapper<cl_type>& operator = (const Wrapper<cl_type>& rhs) in operator =()
1183 class Device : public detail::Wrapper<cl_device_id>
1188 Device() : detail::Wrapper<cl_type>() { } in Device()
1190 Device(const Device& device) : detail::Wrapper<cl_type>(device) { } in Device()
1195 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
1258 class Platform : public detail::Wrapper<cl_platform_id>
[all …]
/external/chromium_org/third_party/mesa/src/include/CL/
Dcl.hpp1090 class Wrapper class
1099 Wrapper() : object_(NULL) { } in Wrapper() function in cl::detail::Wrapper
1101 ~Wrapper() in ~Wrapper()
1106 Wrapper(const Wrapper<cl_type>& rhs) in Wrapper() function in cl::detail::Wrapper
1112 Wrapper<cl_type>& operator = (const Wrapper<cl_type>& rhs) in operator =()
1183 class Device : public detail::Wrapper<cl_device_id>
1188 Device() : detail::Wrapper<cl_type>() { } in Device()
1190 Device(const Device& device) : detail::Wrapper<cl_type>(device) { } in Device()
1195 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
1258 class Platform : public detail::Wrapper<cl_platform_id>
[all …]
/external/mesa3d/src/gallium/docs/source/
Ddistro.rst18 Wrapper driver. The identity driver is a simple skeleton that passes through
58 Wrapper driver. Trace dumps an XML record of the calls made to the
64 Wrapper driver. :ref:`rbug` driver used with stand alone rbug-gui.
71 Wrapper driver. Sanity checker for the internal gallium state. Normally
/external/chromium_org/third_party/mesa/src/src/gallium/docs/source/
Ddistro.rst18 Wrapper driver. The identity driver is a simple skeleton that passes through
58 Wrapper driver. Trace dumps an XML record of the calls made to the
64 Wrapper driver. :ref:`rbug` driver used with stand alone rbug-gui.
71 Wrapper driver. Sanity checker for the internal gallium state. Normally
/external/chromium_org/third_party/swig/
DREADME.chromium1 Name: Simplified Wrapper and Interface Generator (SWIG)
9 Simplified Wrapper and Interface Generator (SWIG) is an interface compiler
/external/chromium_org/chrome/browser/devtools/
Ddevtools_adb_bridge.h55 class Wrapper : public BrowserContextKeyedService {
57 Wrapper();
58 virtual ~Wrapper();

1234