Searched defs:unwrap (Results 1 - 25 of 32) sorted by relevance

12

/external/llvm/include/llvm-c/Transforms/
H A DPassManagerBuilder.h91 inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) { function in namespace:llvm
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/
H A DWrapper.java16 public byte[] unwrap(byte[] in, int inOff, int inLen) method in interface:Wrapper
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
H A DRFC3394WrapEngine.java118 public byte[] unwrap( method in class:RFC3394WrapEngine
133 throw new InvalidCipherTextException("unwrap data must be a multiple of 8 bytes");
H A DDESedeWrapEngine.java200 * Method unwrap
208 public byte[] unwrap(byte[] in, int inOff, int inLen) method in class:DESedeWrapEngine
/external/llvm/include/llvm-c/
H A DObject.h105 inline ObjectFile *unwrap(LLVMObjectFileRef OF) { function in namespace:llvm::object
113 inline section_iterator *unwrap(LLVMSectionIteratorRef SI) { function in namespace:llvm::object
123 inline symbol_iterator *unwrap(LLVMSymbolIteratorRef SI) { function in namespace:llvm::object
133 inline relocation_iterator *unwrap(LLVMRelocationIteratorRef SI) { function in namespace:llvm::object
H A DTarget.h233 inline TargetData *unwrap(LLVMTargetDataRef P) { function in namespace:llvm
241 inline TargetLibraryInfo *unwrap(LLVMTargetLibraryInfoRef P) { function in namespace:llvm
H A DTargetMachine.h126 inline TargetMachine *unwrap(LLVMTargetMachineRef P) { function in namespace:llvm
129 inline Target *unwrap(LLVMTargetRef P) { function in namespace:llvm
/external/webkit/Source/WebCore/storage/
H A DSQLCallbackWrapper.h80 PassRefPtr<T> unwrap() function in class:WebCore::SQLCallbackWrapper
88 // Useful for optimizations only, please test the return value of unwrap to be sure.
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DJSWrapper.cpp48 JSWrappable* JSWrapper::unwrap(JSContextRef context, JSValueRef value) function in class:WTR::JSWrapper
/external/guava/guava/src/com/google/common/primitives/
H A DPrimitives.java121 * unwrap(Integer.class) == int.class
122 * unwrap(int.class) == int.class
123 * unwrap(String.class) == String.class
126 public static <T> Class<T> unwrap(Class<T> type) { method in class:Primitives
/external/webkit/Source/WebCore/bindings/v8/
H A DWrapperTypeInfo.h56 static WrapperTypeInfo* unwrap(v8::Handle<v8::Value> typeInfoWrapper) function in struct:WebCore::WrapperTypeInfo
/external/webkit/Source/WebKit/chromium/public/
H A DWebDOMEvent.h119 template<typename T> T* unwrap() function in class:WebKit::WebDOMEvent
H A DWebNode.h133 template<typename T> T* unwrap() function in class:WebKit::WebNode
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSetMetaData.java215 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException { method in class:JDBCResultSetMetaData
H A DJDBCStatement.java317 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException { method in class:JDBCStatement
H A DJDBCConnection.java511 public <T> T unwrap(java.lang.Class<T> iface) throws SQLException { method in class:JDBCConnection
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
H A DSasl3Test.java186 saslC.unwrap(null, 1, 1);
269 saslC.unwrap(null, 1, 1);
355 public byte[] unwrap(byte[] incoming, int offset, int len) method in class:Sasl3Test.mySaslClientFactory.mySaslClient
H A DSasl4Test.java183 saslS.unwrap(null, 1, 1);
268 saslS.unwrap(null, 1, 1);
351 public byte[] unwrap(byte[] incoming, int offset, int len) method in class:Sasl4Test.mySaslServerFactory.mySaslServer
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/
H A DMySSLContextSpi.java161 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:MySSLContextSpi.tmpSSLEngine
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDelegatedData.java54 protected static Data unwrap(Data data) { method in class:DelegatedData
217 destination = unwrap(destination);
223 symLink = unwrap(symLink);
234 from = unwrap(from);
240 from = unwrap(from);
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Connection1.java192 public <T> T unwrap(Class<T> iface) throws SQLException { method in class:TestHelper_Connection1
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
H A DSSLEngineTest.java215 * Test for <code>unwrap(ByteBuffer src, ByteBuffer dst)</code> method
232 e.unwrap(bbN, bb);
233 e.unwrap(bb, bbN);
238 e.unwrap(bb, roBb);
242 * Test for <code>unwrap(ByteBuffer src, ByteBuffer[] dsts)</code> method
263 e.unwrap(bb, bbNA);
268 e.unwrap(bb, bbA);
269 e.unwrap(bbN, bbA);
277 e.unwrap(bb, bbA);
282 * Test for <code>unwrap(ByteBuffersr
484 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:mySSLEngine
520 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer dst) method in class:mySSLEngine1
529 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts) method in class:mySSLEngine1
[all...]
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
H A DMySSLContextSpi.java169 public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, method in class:MySSLContextSpi.tmpSSLEngine
/external/doclava/src/com/google/doclava/
H A DDoclava.java1154 args[0] = unwrap(args[0]);
1189 private static Object unwrap(Object proxy) { method in class:Doclava.HideHandler
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java770 public <T> T unwrap(Class<T> iface) throws SQLException { method in class:Impl_RowSet

Completed in 603 milliseconds

12