HomeSort by relevance Sort by last modified time
    Searched defs:wrap (Results 51 - 75 of 340) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8Int8ArrayCustom.h 66 inline v8::Handle<v8::Object> wrap(Int8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
68 return V8TypedArray<Int8Array>::wrap(impl, creationContext, isolate);
V8NodeCustom.cpp 124 v8::Handle<v8::Object> wrap(Node* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
129 // For performance reasons, this is inlined from V8Element::wrap and must remain in sync.
131 return wrap(toHTMLElement(impl), creationContext, isolate);
133 return wrap(toSVGElement(impl), creationContext, isolate);
136 return wrap(toAttr(impl), creationContext, isolate);
138 return wrap(toText(impl), creationContext, isolate);
140 return wrap(toCDATASection(impl), creationContext, isolate);
142 return wrap(toProcessingInstruction(impl), creationContext, isolate);
144 return wrap(toComment(impl), creationContext, isolate);
146 return wrap(toDocument(impl), creationContext, isolate)
    [all...]
V8Uint16ArrayCustom.h 66 inline v8::Handle<v8::Object> wrap(Uint16Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
68 return V8TypedArray<Uint16Array>::wrap(impl, creationContext, isolate);
V8Uint32ArrayCustom.h 66 inline v8::Handle<v8::Object> wrap(Uint32Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
68 return V8TypedArray<Uint32Array>::wrap(impl, creationContext, isolate);
V8Uint8ArrayCustom.h 66 inline v8::Handle<v8::Object> wrap(Uint8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
68 return V8TypedArray<Uint8Array>::wrap(impl, creationContext, isolate);
V8Uint8ClampedArrayCustom.h 66 inline v8::Handle<v8::Object> wrap(Uint8ClampedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
68 return V8TypedArray<Uint8ClampedArray>::wrap(impl, creationContext, isolate);
V8ArrayBufferCustom.h 74 friend v8::Handle<v8::Object> wrap(ArrayBuffer*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
85 inline v8::Handle<v8::Object> wrap(ArrayBuffer* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
99 return wrap(impl, creationContext, isolate);
111 v8::Handle<v8::Object> wrapper = wrap(impl, info.Holder(), info.GetIsolate());
125 v8::Handle<v8::Value> wrapper = wrap(impl, info.Holder(), info.GetIsolate());
138 v8::Handle<v8::Object> wrapper = wrap(impl, info.Holder(), info.GetIsolate());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_format.h 26 unsigned wrap; member in struct:nv30_texfmt
  /external/chromium_org/tools/
diagnose-me.py 17 def wrap(func): function in function:Check
20 return wrap
  /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/llvm/include/llvm/IR/
LLVMContext.h 123 inline LLVMContextRef *wrap(const LLVMContext **Tys) { function in namespace:llvm
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_format.h 26 unsigned wrap; member in struct:nv30_texfmt
  /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/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestEventTarget.h 71 friend v8::Handle<v8::Object> wrap(TestEventTarget*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
81 inline v8::Handle<v8::Object> wrap(TestEventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
95 return wrap(impl, creationContext, isolate);
107 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
121 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
134 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
V8TestInterfaceEventTarget.h 71 friend v8::Handle<v8::Object> wrap(TestInterfaceEventTarget*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
81 inline v8::Handle<v8::Object> wrap(TestInterfaceEventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
95 return wrap(impl, creationContext, isolate);
107 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
121 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
134 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
V8TestInterfaceNamedConstructor.h 75 friend v8::Handle<v8::Object> wrap(TestInterfaceNamedConstructor*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
85 inline v8::Handle<v8::Object> wrap(TestInterfaceNamedConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
99 return wrap(impl, creationContext, isolate);
111 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
125 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
138 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
V8TestNamedConstructor.h 75 friend v8::Handle<v8::Object> wrap(TestNamedConstructor*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
85 inline v8::Handle<v8::Object> wrap(TestNamedConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
99 return wrap(impl, creationContext, isolate);
111 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
125 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
138 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate());
  /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

Completed in 339 milliseconds

1 23 4 5 6 7 8 91011>>