Searched defs:wrap (Results 1 - 25 of 80) sorted by relevance

1234

/external/clang/test/SemaTemplate/
H A Ddependent-class-member-operator.cpp7 void wrap() { function
H A Dinstantiate-exception-spec-cxx11.cpp78 struct wrap { struct in namespace:core_19754_example
80 void irrelevant(wrap &p) noexcept(is_movable<T>::value);
92 wrap<typename T::base> base;
97 wrap<typename T::base> base;
/external/llvm/include/llvm-c/Transforms/
H A DPassManagerBuilder.h95 inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) { function in namespace:llvm
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DWrapper.java14 public byte[] wrap(byte[] in, int inOff, int inLen); method in interface:Wrapper
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DRFC3394WrapEngine.java18 * and <a href="http://csrc.nist.gov/encryption/kms/key-wrap.pdf">http://csrc.nist.gov/encryption/kms/key-wrap.pdf</a>.
67 public byte[] wrap( method in class:RFC3394WrapEngine
81 throw new DataLengthException("wrap data must be a multiple of 8 bytes");
H A DDESedeWrapEngine.java20 * <A HREF="http://www.ietf.org/internet-drafts/draft-ietf-smime-key-wrap-01.txt">
21 * draft-ietf-smime-key-wrap-01.txt</A>.
26 * <li>if you are using this to wrap triple-des keys you need to set the
93 // Hm, we have no IV but we want to wrap ?!?
133 * Method wrap
140 public byte[] wrap(byte[] in, int inOff, int inLen) method in class:DESedeWrapEngine
305 * Some key wrap algorithms make use of the Key Checksum defined
/external/guava/guava/src/com/google/common/collect/
H A DWellBehavedMap.java29 * wrap the {@code EnumMap} in this class instead.
48 static <K, V> WellBehavedMap<K, V> wrap(Map<K, V> delegate) { method in class:WellBehavedMap
/external/llvm/include/llvm-c/
H A DObject.h109 inline LLVMObjectFileRef wrap(const ObjectFile *OF) { function in namespace:llvm::object
118 wrap(const section_iterator *SI) { function in namespace:llvm::object
128 wrap(const symbol_iterator *SI) { function in namespace:llvm::object
138 wrap(const relocation_iterator *SI) { function in namespace:llvm::object
H A DTarget.h237 inline LLVMTargetDataRef wrap(const TargetData *P) { function in namespace:llvm
245 inline LLVMTargetLibraryInfoRef wrap(const TargetLibraryInfo *P) { function in namespace:llvm
H A DTargetMachine.h132 inline LLVMTargetMachineRef wrap(const TargetMachine *P) { function in namespace:llvm
136 inline LLVMTargetRef wrap(const Target * P) { function in namespace:llvm
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
H A DV8TestInterface.h45 inline static v8::Handle<v8::Object> wrap(TestInterface*);
55 v8::Handle<v8::Object> V8TestInterface::wrap(TestInterface* impl) function in class:WebCore::V8TestInterface
67 return V8TestInterface::wrap(impl);
H A DV8TestMediaQueryListListener.h43 inline static v8::Handle<v8::Object> wrap(TestMediaQueryListListener*);
52 v8::Handle<v8::Object> V8TestMediaQueryListListener::wrap(TestMediaQueryListListener* impl) function in class:WebCore::V8TestMediaQueryListListener
64 return V8TestMediaQueryListListener::wrap(impl);
H A DV8TestObj.h43 inline static v8::Handle<v8::Object> wrap(TestObj*);
56 v8::Handle<v8::Object> V8TestObj::wrap(TestObj* impl) function in class:WebCore::V8TestObj
68 return V8TestObj::wrap(impl);
H A DV8TestSerializedScriptValueInterface.h45 inline static v8::Handle<v8::Object> wrap(TestSerializedScriptValueInterface*);
54 v8::Handle<v8::Object> V8TestSerializedScriptValueInterface::wrap(TestSerializedScriptValueInterface* impl) function in class:WebCore::V8TestSerializedScriptValueInterface
66 return V8TestSerializedScriptValueInterface::wrap(impl);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DJSWrapper.cpp33 JSValueRef JSWrapper::wrap(JSContextRef context, JSWrappable* object) function in class:WTR::JSWrapper
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp6-0x.cpp23 template<typename T = func_type_lvalue> struct wrap { struct
29 using func_type_lvalue = wrap<>::val;
30 using func_type_lvalue = wrap<func_type_lvalue>::val;
31 using func_type_rvalue = wrap<func_type_rvalue>::val;
33 using func_type_lvalue_ptr = wrap<>::ptr;
34 using func_type_lvalue_ptr = wrap<func_type_lvalue>::ptr;
35 using func_type_rvalue_ptr = wrap<func_type_rvalue>::ptr;
37 using func_type_lvalue_ref = wrap<>::ref;
38 using func_type_lvalue_ref = wrap<func_type_lvalue>::ref;
39 using func_type_rvalue_ref = wrap<func_type_rvalu
[all...]
/external/guava/guava/src/com/google/common/primitives/
H A DPrimitives.java103 * wrap(int.class) == Integer.class
104 * wrap(Integer.class) == Integer.class
105 * wrap(String.class) == String.class
108 public static <T> Class<T> wrap(Class<T> type) { method in class:Primitives
/external/guava/guava-tests/test/com/google/common/io/
H A DCheckCloseSupplier.java29 * abstract {@link #wrap} method.
31 * <p>The decorated object returned from {@link #wrap} should ideally override
49 return wrap(delegate.getInput(), newCallback());
62 return wrap(delegate.getOutput(), newCallback());
79 * Subclasses should wrap the given object and call
84 * @param object the object to wrap.
87 protected abstract T wrap(T object, Callback callback); method in class:CheckCloseSupplier
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DPerturbFilter.java76 float c00 = arr[this.wrap(y - py, workSize) * workSize + this.wrap(x - px, workSize)];
77 float c01 = arr[this.wrap(y - py, workSize) * workSize + this.wrap(x + px, workSize)];
78 float c10 = arr[this.wrap(y + py, workSize) * workSize + this.wrap(x - px, workSize)];
79 float c11 = arr[this.wrap(y + py, workSize) * workSize + this.wrap(x + px, workSize)];
86 return FloatBuffer.wrap(retval);
89 private int wrap(in method in class:PerturbFilter
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Ddebug.rb13 def self.wrap( adaptor, debug_listener = nil ) singleton method in class:ANTLR3.Debug.TreeAdaptor
113 def self.wrap( stream, debug_listener = nil ) singleton method in class:ANTLR3.Debug.TreeNodeStream
/external/emma/core/java12/com/vladium/emma/
H A DEMMAProperties.java104 public static IProperties wrap (final Properties properties) method in class:EMMAProperties
108 return IProperties.Factory.wrap (properties, ReportProperties.REPORT_PROPERTY_MAPPER);
138 final IProperties systemRedirects = wrap (Property.getSystemPropertyRedirects (EMMAProperties.SYSTEM_PROPERTY_REDIRECTS));
139 final IProperties appDefaults = wrap (Property.getProperties (appName + "_default.properties", loader));
147 systemFile = wrap (Property.getLazyPropertiesFromFile (file));
149 final IProperties system = wrap (Property.getSystemProperties (appName));
150 final IProperties userOverrides = wrap (Property.getProperties (appName + ".properties", loader));
/external/emma/core/java12/com/vladium/util/
H A DIProperties.java85 public static IProperties wrap (final Properties properties, final IMapper mapper) method in class:IProperties.Factory
/external/guava/guava/src/com/google/common/base/
H A DEquivalence.java147 * {@code wrap(this, a).equals(wrap(this, b))} if and only if {@code this.equivalent(a, b)}.
151 public final <S extends T> Wrapper<S> wrap(@Nullable S reference) { method in class:Equivalence
163 * equiv.wrap("a").equals(equiv.wrap("b")) // true
164 * equiv.wrap("a").equals(equiv.wrap("hello")) // false
170 * equiv.wrap(obj).equals(obj) // always false
226 return equivalence + ".wrap(" + reference + ")";
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddebug.rb167 @input = Debug::TokenStream.wrap( @input, @debug_listener )
295 def self.wrap( stream, debug_listener = nil ) singleton method in class:ANTLR3.Debug.TokenStream
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
H A DSasl3Test.java360 public byte[] wrap(byte[] outgoing, int offset, int len) method in class:Sasl3Test.mySaslClientFactory.mySaslClient

Completed in 3026 milliseconds

1234