/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/third_party/WebKit/Source/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/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/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);
|
sync_data.cc | 21 Wrapper* wrapper) { 22 *wrapper = new sync_pb::SyncEntity(); 26 Wrapper* wrapper) { 27 delete *wrapper; 31 const Wrapper& wrapper) { 32 return *wrapper; 36 Wrapper* wrapper) [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/Analysis/Inputs/ |
system-header-simulator-for-malloc.h | 18 @interface Wrapper : NSData 22 @implementation Wrapper
|
/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/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 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/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/third_party/WebKit/Source/core/svg/properties/ |
SVGAnimatedPropertyMacros.h | 103 &OwnerType::lookupOrCreate##UpperProperty##Wrapper)); \ 108 if (TearOffType* wrapper = SVGAnimatedProperty::lookupWrapper<UseOwnerType, TearOffType>(this, LowerProperty##PropertyInfo())) { \ 109 if (wrapper->isAnimating()) \ 110 return wrapper->currentAnimatedValue(); \ 128 return static_pointer_cast<TearOffType>(lookupOrCreate##UpperProperty##Wrapper(this)); \ 139 PassRefPtr<SVGAnimatedProperty> OwnerType::lookupOrCreate##UpperProperty##Wrapper(SVGElement* maskedOwnerType) \ 171 static PassRefPtr<SVGAnimatedProperty> lookupOrCreate##UpperProperty##Wrapper(SVGElement* maskedOwnerType); \ 184 if (TearOffType* wrapper = SVGAnimatedProperty::lookupWrapper<UseOwnerType, TearOffType>(this, LowerProperty##PropertyInfo())) \ 185 wrapper->detachListWrappers(newListSize); \
|
/external/chromium_org/mojo/public/bindings/lib/ |
array_internal.h | 23 typedef Array<T> Wrapper; 41 typedef Array<typename P::Wrapper> Wrapper; 80 typedef Array<bool> Wrapper; 100 typedef typename Traits::Wrapper Wrapper;
|
bindings_internal.h | 77 inline const typename Data::Wrapper Wrap(const Data* data) { 78 return WrapperHelper<typename Data::Wrapper>::Wrap(data);
|
/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/chrome/browser/devtools/ |
devtools_adb_bridge.h | 55 class Wrapper : public BrowserContextKeyedService { 57 Wrapper(); 58 virtual ~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'.
|