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

1 2 3

  /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 {
Statement.java 37 public interface Statement extends Wrapper, AutoCloseable {
Connection.java 43 public interface Connection extends Wrapper, AutoCloseable {
    [all...]
  /libcore/luni/src/main/java/javax/sql/
DataSource.java 22 import java.sql.Wrapper;
53 public interface DataSource extends CommonDataSource, Wrapper {
  /external/bouncycastle/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/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 40 IntelJITEventsWrapper& Wrapper;
46 : Wrapper(libraryWrapper) {
72 IntelJITEventsWrapper& Wrapper,
79 Result.method_id = Wrapper.iJIT_GetNewMethodID();
97 iJIT_Method_Load FunctionMessage = FunctionDescToIntelJITFormat(Wrapper,
154 Wrapper.iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
162 Wrapper.iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START, &I->second);
  /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/grub/
compile 2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
  /external/libffi/
compile 2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
  /external/libusb/
compile 2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
  /external/libusb-compat/
compile 2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
  /ndk/sources/host-tools/make-3.81/config/
compile 2 # Wrapper for compilers which do not understand `-c -o'.
41 Wrapper for compilers which do not understand `-c -o'.
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
via-parser.rb 14 @input.insert_before($start,"public class Wrapper {\n")
75 public class Wrapper {
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 7 import org.bouncycastle.crypto.Wrapper;
14 * an implementation of the AES Key Wrapper from the NIST Key Wrap
21 implements Wrapper
DESedeWrapEngine.java 8 import org.bouncycastle.crypto.Wrapper;
30 implements Wrapper
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
WrapCipherSpi.java 40 import org.bouncycastle.crypto.Wrapper;
70 protected Wrapper wrapEngine = null;
80 Wrapper wrapEngine)
86 Wrapper wrapEngine,
  /external/bison/build-aux/
ylwrap 2 # ylwrap - wrapper for lex/yacc invocations.
48 Wrapper for lex/yacc invocations, renaming files as desired.
  /external/elfutils/config/
ylwrap 2 # ylwrap - wrapper for lex/yacc invocations.
48 Wrapper for lex/yacc invocations, renaming files as desired.
  /external/webkit/Source/WebCore/dom/
make_names.pl 364 # Mapped tag name uses a special wrapper to keep their prefix and namespaceURI while using the mapped localname.
869 ## Wrapper Factory routines
875 # A tag reuses the default wrapper if its JSInterfaceName matches the default namespace Element.
886 # Avoid defining the same wrapper method twice.
902 static JSNode* create${JSInterfaceName}Wrapper(ExecState* exec, JSDOMGlobalObject* globalObject, PassRefPtr<$parameters{namespace}Element> element)
914 static JSNode* create${JSInterfaceName}Wrapper(ExecState* exec, JSDOMGlobalObject* globalObject, PassRefPtr<$parameters{namespace}Element> element)
925 static v8::Handle<v8::Value> create${JSInterfaceName}Wrapper($parameters{namespace}Element* element)
937 static v8::Handle<v8::Value> create${JSInterfaceName}Wrapper($parameters{namespace}Element* element)
1029 JSNode* createJS$parameters{namespace}Wrapper(ExecState* exec, JSDOMGlobalObject* globalObject, PassRefPtr<$parameters{namespace}Element> element)
1038 v8::Handle<v8::Value> createV8$parameters{namespace}Wrapper($parameters{namespace}Element* element, bool forceNewObject
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.h 43 /// Wrapper - A wrapper node for TargetConstantPool, TargetExternalSymbol,
45 Wrapper,
  /external/llvm/lib/Target/Mips/
MipsISelLowering.h 75 Wrapper,

Completed in 1031 milliseconds

1 2 3