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

1 2 3 4 5 6 7 8 910

  /libcore/ojluni/src/main/java/javax/sql/
DataSource.java 30 import java.sql.Wrapper;
74 public interface DataSource extends CommonDataSource,Wrapper {
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
conditional.py 19 from .difference import Wrapper
22 class ConditionalExprWrapper(Wrapper):
context.py 21 from .difference import SymbolWrapper, Wrapper
25 class ContextWrapper(Wrapper):
  /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;
  /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/snakeyaml/src/test/java/examples/staticstate/
StaticFieldsWrapperTest.java 27 * Example: using wrapper object for static fields
32 * use wrapper with global tag
41 String output = yaml.dump(new Wrapper(bean));
44 "!!examples.staticstate.Wrapper {age: -47, color: Violet, name: Bahrack, type: Type3}\n",
47 Wrapper wrapper = (Wrapper) yaml.load(output); local
48 JavaBeanWithStaticState bean2 = wrapper.createBean();
54 * use wrapper with local tag
63 repr.addClassTag(Wrapper.class, new Tag("!mybean"))
73 Wrapper wrapper = (Wrapper) yaml.load(output); local
94 Wrapper wrapper = loader.loadAs(output, Wrapper.class); local
    [all...]
Wrapper.java 18 public class Wrapper {
33 public Wrapper() {
38 public Wrapper(JavaBeanWithStaticState bean) {
  /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/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 38 std::unique_ptr<OProfileWrapper> Wrapper;
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) {
  /frameworks/compile/slang/
slang_bitcode_gen.cpp 90 // Create the bitcode wrapper.
91 bcinfo::AndroidBitcodeWrapper Wrapper;
93 &Wrapper, Bitcode.str().length(), TargetAPI,
99 Out.write(reinterpret_cast<char*>(&Wrapper), ActualWrapperLen);
  /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/dagger2/compiler/src/main/java/dagger/internal/codegen/
MethodSignature.java 15 abstract ImmutableList<Equivalence.Wrapper<TypeMirror>> parameterTypes();
16 abstract ImmutableList<Equivalence.Wrapper<TypeMirror>> thrownTypes();
20 ImmutableList.Builder<Equivalence.Wrapper<TypeMirror>> parameters = ImmutableList.builder();
21 ImmutableList.Builder<Equivalence.Wrapper<TypeMirror>> thrownTypes = ImmutableList.builder();
  /libcore/ojluni/src/main/java/java/sql/
Wrapper.java 32 * The wrapper pattern is employed by many JDBC driver implementations to provide extensions beyond
42 public interface Wrapper {
49 * or a proxy for the receiver. If the receiver is a wrapper
54 * wrapper and does not implement the interface, then an <code>SQLException</code> is thrown.
64 * Returns true if this either implements the interface argument or is directly or indirectly a wrapper
66 * else if this is a wrapper then return the result of recursively calling <code>isWrapperFor</code> on the wrapped
67 * object. If this does not implement the interface and is not a wrapper, return false.
74 * @throws java.sql.SQLException if an error occurs while determining whether this is a wrapper
ParameterMetaData.java 43 public interface ParameterMetaData extends Wrapper {
  /external/testng/src/main/java/org/testng/xml/dom/
Reflect.java 12 public static List<Pair<Method, Wrapper>> findMethodsWithAnnotation(
14 List<Pair<Method, Wrapper>> result = Lists.newArrayList();
18 result.add(Pair.of(m, new Wrapper(a, bean)));
24 public static Pair<Method, Wrapper> findSetterForTag(
31 List<Pair<Method, Wrapper>> methods
34 for (Pair<Method, Wrapper> pair : methods) {
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-malloc.h 18 @interface Wrapper : NSData
22 @implementation Wrapper
  /external/v8/test/mjsunit/es6/
debug-liveedit-new-target-3.js 21 function Wrapper() {
45 Replace(Wrapper, "true", "false");
50 Replace(Wrapper, "false", "true");
55 Wrapper();
62 Wrapper();
69 Wrapper();
  /external/guava/guava/src/com/google/common/base/
Equivalence.java 144 * Returns a wrapper of {@code reference} that implements
145 * {@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);
165 * <p>Note in particular that an equivalence wrapper is never equal to the object it wraps.
172 public static final class Wrapper<T> implements Serializable {
176 private Wrapper(Equivalence<? super T> equivalence, @Nullable T reference) {
195 if (obj instanceof Wrapper) {
196 Wrapper<?> that = (Wrapper<?>) obj; // note: not necessarily a Wrapper<T
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ItemBridgeAdapterShadowOverlayWrapper.java 21 * A wrapper class working with {@link ItemBridgeAdapter} to wrap item view in a
25 public class ItemBridgeAdapterShadowOverlayWrapper extends ItemBridgeAdapter.Wrapper {
36 ShadowOverlayContainer wrapper = mHelper.createShadowOverlayContainer(context); local
37 return wrapper;
40 public void wrap(View wrapper, View wrapped) {
41 ((ShadowOverlayContainer) wrapper).wrap(wrapped);
  /external/clang/test/Misc/
diag-template-diffing.cpp     [all...]
  /external/robolectric/v1/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/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue11/
YamlMapTest.java 59 data.put("knownClass", new Wrapper("test", new Custom(456)));
68 assertEquals(Wrapper.class, m.get("knownClass").getClass());
71 public static class Wrapper {
75 public Wrapper(String s, Custom bb) {
80 public Wrapper() {
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 42 std::unique_ptr<IntelJITEventsWrapper> Wrapper;
53 Wrapper.reset(libraryWrapper);
77 IntelJITEventsWrapper& Wrapper,
84 Result.method_id = Wrapper.iJIT_GetNewMethodID();
134 FunctionDescToIntelJITFormat(*Wrapper, Name->data(), Addr, Size);
166 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
202 Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START,

Completed in 1271 milliseconds

1 2 3 4 5 6 7 8 910