Searched defs:Wrapper (Results 1 - 25 of 57) sorted by relevance

123

/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
H A DBlackfinISelLowering.h28 Wrapper // Address wrapper enumerator in enum:llvm::BFISD::__anon18756
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DWrapper.java3 public interface Wrapper interface
/external/eigen/test/
H A Dconstructor.cpp15 template<typename MatrixType> struct Wrapper struct
18 inline Wrapper(const MatrixType &x) : m_mat(x) {} function in struct:Wrapper
35 Wrapper<MatrixType> wrapper(m0);
/external/testng/src/main/java/org/testng/xml/dom/
H A DWrapper.java10 public class Wrapper { class
18 public Wrapper(Annotation a, Object bean) { method in class:Wrapper
/external/clang/test/CodeGenCXX/
H A Ddevirtualize-virtual-function-calls.cpp94 struct Wrapper { struct in namespace:test4
97 extern Wrapper *p;
/external/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.h53 // Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
55 Wrapper, enumerator in enum:llvm::LanaiISD::__anon13045
/external/snakeyaml/src/test/java/examples/staticstate/
H A DWrapper.java18 public class Wrapper { class
33 public Wrapper() { method in class:Wrapper
38 public Wrapper(JavaBeanWithStaticState bean) { method in class:Wrapper
/external/clang/test/Analysis/
H A Dcall-invalidation.cpp38 struct Wrapper { struct
42 void useStruct(Wrapper &w);
43 void useConstStruct(const Wrapper &w);
47 Wrapper w;
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 Dderived-to-base.cpp320 struct Wrapper { struct in namespace:LazyBindings::Nested
324 Wrapper(const FullyDerived &d) : d(d), zz(0) {} function in struct:LazyBindings::Nested::Wrapper
328 Wrapper w((FullyDerived()));
331 Wrapper w2(w);
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp38 std::unique_ptr<OProfileWrapper> Wrapper; member in class:__anon12691::OProfileJITEventListener
45 : Wrapper(std::move(LibraryWrapper)) {
58 if (!Wrapper->op_open_agent()) {
67 if (Wrapper->isAgentAvailable()) {
68 if (Wrapper->op_close_agent() == -1) {
81 if (!Wrapper->isAgentAvailable()) {
104 if (Wrapper->op_write_native_code(Name.data(), Addr, (void *)Addr, Size) ==
118 if (Wrapper->isAgentAvailable()) {
137 if (Wrapper->op_unload_native_code(Addr) == -1) {
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430ISelLowering.h43 /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
45 Wrapper, enumerator in enum:llvm::MSP430ISD::__anon18789
/external/clang/test/SemaCXX/
H A DMicrosoftSuper.cpp76 struct Wrapper { struct in struct:PointerToMember
84 Wrapper<&__super::foo>::bar();
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/guava/guava/src/com/google/common/base/
H A DEquivalence.java145 * {@link Wrapper#equals(Object) Object.equals()} such that
150 public final <S extends T> Wrapper<S> wrap(@Nullable S reference) {
151 return new Wrapper<S>(this, reference);
172 public static final class Wrapper<T> implements Serializable { class in class:Equivalence
176 private Wrapper(Equivalence<? super T> equivalence, @Nullable T reference) { method in class:Equivalence.Wrapper
195 if (obj instanceof Wrapper) {
196 Wrapper<?> that = (Wrapper<?>) obj; // note: not necessarily a Wrapper<T>
/external/guice/extensions/grapher/test/com/google/inject/grapher/
H A DAbstractInjectorGrapherTest.java84 private static final class Wrapper<T> { class in class:AbstractInjectorGrapherTest
145 final Wrapper<Provider<A2>> wrapper = new Wrapper<Provider<A2>>();
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.h102 Wrapper,
310 SDValue GOT = DAG.getNode(MipsISD::Wrapper, DL, Ty, getGlobalReg(DAG, Ty),
330 SDValue Tgt = DAG.getNode(MipsISD::Wrapper, DL, Ty, getGlobalReg(DAG, Ty),
347 SDValue Wrapper = DAG.getNode(MipsISD::Wrapper, DL, Ty, Hi, local
349 return DAG.getLoad(Ty, DL, Chain, Wrapper, PtrInfo, false, false, false,
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue11/
H A DYamlMapTest.java59 data.put("knownClass", new Wrapper("test", new Custom(456)));
68 assertEquals(Wrapper.class, m.get("knownClass").getClass());
71 public static class Wrapper { class in class:YamlMapTest
75 public Wrapper(String s, Custom bb) { method in class:YamlMapTest.Wrapper
80 public Wrapper() { method in class:YamlMapTest.Wrapper
/external/toolchain-utils/automation/common/
H A Dcommand.py36 class Wrapper(object): class in inherits:object
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp42 std::unique_ptr<IntelJITEventsWrapper> Wrapper; member in class:__anon12685::IntelJITEventListener
53 Wrapper.reset(libraryWrapper);
77 IntelJITEventsWrapper& Wrapper,
84 Result.method_id = Wrapper.iJIT_GetNewMethodID();
147 FunctionDescToIntelJITFormat(*Wrapper, Name->data(), Addr, Size);
179 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
215 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START,
76 FunctionDescToIntelJITFormat( IntelJITEventsWrapper& Wrapper, const char* FnName, uintptr_t FnStart, size_t FnSize) argument
/external/pdfium/third_party/base/numerics/
H A Dsafe_math.h239 IsGreater<T, R>::Test(state_.value(), Wrapper<U>::value(rhs))
241 : Wrapper<U>::value(rhs)),
242 state_.is_valid() && Wrapper<U>::is_valid(rhs));
254 IsLess<T, R>::Test(state_.value(), Wrapper<U>::value(rhs))
256 : Wrapper<U>::value(rhs)),
257 state_.is_valid() && Wrapper<U>::is_valid(rhs));
300 Wrapper<L>::is_valid(lhs) && Wrapper<R>::is_valid(rhs) &&
301 Math::Do(Wrapper<L>::value(lhs), Wrapper<
326 struct Wrapper { struct in class:pdfium::base::internal::CheckedNumeric
332 struct Wrapper<CheckedNumeric<Src>> { struct in class:pdfium::base::internal::CheckedNumeric
342 struct Wrapper<StrictNumeric<Src>> { struct in class:pdfium::base::internal::CheckedNumeric
[all...]
/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/robolectric/v1/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/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp605 SDValue Wrapper = N->getOperand(1); local
606 SDValue GlobalVal = Wrapper.getOperand(0);
5075 if (N.getOpcode() == NVPTXISD::Wrapper) {
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMISelLowering.h35 Wrapper, // Wrapper - A wrapper node for TargetConstantPool, enumerator in enum:llvm::ARMISD::NodeType

Completed in 1340 milliseconds

123