HomeSort by relevance Sort by last modified time
    Searched defs:wrap (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/SemaTemplate/
dependent-class-member-operator.cpp 7 void wrap() { function
  /external/libvpx/libvpx/tools/
wrap-commit-msg.py 36 def wrap(text): function
53 output += wrap(text)
56 output += wrap(text)
  /external/llvm/include/llvm-c/Transforms/
PassManagerBuilder.h 95 inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) { function in namespace:llvm
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Wrapper.java 14 public byte[] wrap(byte[] in, int inOff, int inLen); method in interface:Wrapper
  /external/llvm/include/llvm-c/
Object.h 109 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
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestInterface.h 45 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);
V8TestMediaQueryListListener.h 43 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);
V8TestObj.h 43 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);
V8TestSerializedScriptValueInterface.h 45 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/
JSWrapper.cpp 33 JSValueRef JSWrapper::wrap(JSContextRef context, JSWrappable* object) function in class:WTR::JSWrapper
  /frameworks/base/core/java/android/text/style/
CharacterStyle.java 32 * regions, you can use this method to wrap it with a new object that
36 public static CharacterStyle wrap(CharacterStyle cs) { method in class:CharacterStyle
46 * that were generated by {@link #wrap}, returns the underlying
  /frameworks/base/opengl/java/android/opengl/
GLDebugHelper.java 34 * Wrap an existing GL interface in a new GL interface that adds support for
79 public static GL wrap(GL gl, int configFlags, Writer log) { method in class:GLDebugHelper
92 * Wrap an existing EGL interface in a new EGL interface that adds
100 public static EGL wrap(EGL egl, int configFlags, Writer log) { method in class:GLDebugHelper
  /external/guava/guava/src/com/google/common/collect/
WellBehavedMap.java 29 * 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/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EnumBiMap.java 70 super(WellBehavedMap.wrap(new EnumMap<K, V>(keyType)),
71 WellBehavedMap.wrap(new EnumMap<V, K>(valueType)));
EnumHashBiMap.java 68 super(WellBehavedMap.wrap(
EnumMultiset.java 58 super(WellBehavedMap.wrap(new EnumMap<E, Count>(type)));
  /external/smack/src/org/apache/harmony/javax/security/sasl/
SaslClient.java 36 byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException; method in interface:SaslClient
SaslServer.java 36 byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException; method in interface:SaslServer
  /frameworks/support/v4/java/android/support/v4/app/
NoSaveStateFrameLayout.java 31 static ViewGroup wrap(View child) { method in class:NoSaveStateFrameLayout
  /libcore/luni/src/test/java/libcore/java/nio/channels/
ChannelsTest.java 54 sinkChannel.write(ByteBuffer.wrap(content));
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
WrappedCharBufferTest1.java 25 buf = CharBuffer.wrap(new char[BUFFER_LENGTH]);
43 CharBuffer.wrap(array, -1, 0);
49 CharBuffer.wrap(array, BUFFER_LENGTH + 1, 0);
55 CharBuffer.wrap(array, 0, -1);
61 CharBuffer.wrap(array, 0, BUFFER_LENGTH + 1);
67 CharBuffer.wrap(array, Integer.MAX_VALUE, 1);
73 CharBuffer.wrap(array, 1, Integer.MAX_VALUE);
79 CharBuffer.wrap((char[])null, -1, 0);
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6-0x.cpp 23 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_rvalue>::ref
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
CheckCloseSupplier.java 29 * 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
  /frameworks/rs/driver/linkloader/android/
librsloader.cpp 31 static inline RSExecRef wrap(ELFObject<32> *object) { function
66 return wrap(object.take());
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestTrustManager.java 39 public static TrustManager[] wrap(TrustManager[] trustManagers) { method in class:TestTrustManager
42 result[i] = wrap(result[i]);
47 public static TrustManager wrap(TrustManager trustManager) { method in class:TestTrustManager

Completed in 273 milliseconds

1 2 3 4 5 6 7 8 910