Searched defs:impl (Results 226 - 250 of 615) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/impl/cookie/
H A DRFC2109Spec.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2109Spec.java $
32 package org.apache.http.impl.cookie;
H A DRFC2965Spec.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2965Spec.java $
31 package org.apache.http.impl.cookie;
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionOutputBuffer.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/impl/io/AbstractSessionOutputBuffer.java $
32 package org.apache.http.impl.io;
H A DChunkedInputStream.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/impl/io/ChunkedInputStream.java $
32 package org.apache.http.impl.io;
H A DChunkedOutputStream.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/impl/io/ChunkedOutputStream.java $
32 package org.apache.http.impl.io;
/external/chromium_org/cc/layers/
H A Dui_resource_layer_impl_unittest.cc155 LayerTestCommon::LayerImplTest impl; local
162 impl.host_impl()->CreateUIResource(uid, bitmap);
165 impl.AddChildToRoot<UIResourceLayerImpl>();
171 impl.CalcDrawProps(viewport_size);
176 impl.AppendQuadsWithOcclusion(ui_resource_layer_impl, occluded);
178 LayerTestCommon::VerifyQuadsExactlyCoverRect(impl.quad_list(),
180 EXPECT_EQ(1u, impl.quad_list().size());
186 impl.AppendQuadsWithOcclusion(ui_resource_layer_impl, occluded);
188 LayerTestCommon::VerifyQuadsExactlyCoverRect(impl.quad_list(), gfx::Rect());
189 EXPECT_EQ(impl
[all...]
/external/chromium_org/content/browser/webui/
H A Durl_data_manager.cc119 WebUIDataSourceImpl* impl = static_cast<WebUIDataSourceImpl*>(source); local
120 GetFromBrowserContext(browser_context)->AddDataSource(impl);
/external/chromium_org/content/renderer/media/
H A Drtc_peer_connection_handler.h38 explicit LocalRTCStatsResponse(const blink::WebRTCStatsResponse& impl) argument
39 : impl_(impl) {
61 explicit LocalRTCStatsRequest(blink::WebRTCStatsRequest impl);
H A Dvideo_capture_impl_manager.cc49 VideoCaptureImpl* impl = it->second.second; local
53 base::Unretained(impl)));
57 base::Unretained(impl)));
66 VideoCaptureImpl* impl = NULL; local
69 impl = CreateVideoCaptureImplForTesting(id, filter_.get());
70 if (!impl)
71 impl = new VideoCaptureImpl(id, filter_.get());
72 devices_[id] = std::make_pair(1, impl);
76 base::Unretained(impl)));
92 VideoCaptureImpl* impl local
116 VideoCaptureImpl* impl = it->second.second; local
129 VideoCaptureImpl* impl = it->second.second; local
148 VideoCaptureImpl* impl = it->second.second; local
160 VideoCaptureImpl* impl = it->second.second; local
182 VideoCaptureImpl* impl = it->second.second; local
[all...]
/external/chromium_org/mojo/android/system/src/org/chromium/mojo/system/impl/
H A DHandleBase.java5 package org.chromium.mojo.system.impl;
/external/chromium_org/mojo/examples/sample_app/
H A Dgles2_client_impl.cc111 explicit DrawRunnable(GLES2ClientImpl* impl) : impl(impl) {} argument
114 void Run() const { impl->Draw(); }
116 GLES2ClientImpl* impl; member in struct:examples::DrawRunnable
/external/chromium_org/mojo/public/cpp/application/lib/
H A Dapplication_impl.cc16 ShellPtrWatcher(ApplicationImpl* impl) argument
17 : impl_(impl) {}
/external/chromium_org/net/dns/
H A Dmapped_host_resolver.cc14 MappedHostResolver::MappedHostResolver(scoped_ptr<HostResolver> impl) argument
15 : impl_(impl.Pass()) {
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8DOMWrapper.h151 inline v8::Handle<v8::Object> V8DOMWrapper::associateObjectWithWrapperNonTemplate(ScriptWrappable* impl, const WrapperTypeInfo* wrapperTypeInfo, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate) argument
153 wrapperTypeInfo->refObject(impl->toScriptWrappableBase());
156 setNativeInfo(wrapper, wrapperTypeInfo, impl->toScriptWrappableBase());
158 setNativeInfoWithPersistentHandle(wrapper, wrapperTypeInfo, impl->toScriptWrappableBase(), wrapperTypeInfo->createPersistentHandle(impl));
161 setNativeInfo(wrapper, wrapperTypeInfo, impl->toScriptWrappableBase());
163 setNativeInfoWithPersistentHandle(wrapper, wrapperTypeInfo, impl->toScriptWrappableBase(), wrapperTypeInfo->createPersistentHandle(impl));
166 DOMDataStore::setWrapperNonTemplate(impl, wrapper, isolate, wrapperTypeInfo);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8ArrayBufferCustom.cpp82 v8::Handle<v8::Object> V8ArrayBuffer::createWrapper(PassRefPtr<ArrayBuffer> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
84 ASSERT(impl.get());
85 ASSERT(!DOMDataStore::containsWrapper<V8ArrayBuffer>(impl.get(), isolate));
87 v8::Handle<v8::Object> wrapper = v8::ArrayBuffer::New(isolate, impl->data(), impl->byteLength());
88 impl->setDeallocationObserver(V8ArrayBufferDeallocationObserver::instanceTemplate());
90 V8DOMWrapper::associateObjectWithWrapper<V8ArrayBuffer>(impl, &wrapperTypeInfo, wrapper, isolate);
118 v8::Handle<v8::Value> toV8NoInline(ArrayBuffer* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
120 return toV8(impl, creationContext, isolate);
H A DV8HTMLCanvasElementCustom.cpp54 HTMLCanvasElement* impl = V8HTMLCanvasElement::toImpl(holder); local
95 CanvasRenderingContext* result = impl->getContext(contextId, attributes.get());
102 if (InspectorInstrumentation::canvasAgentEnabled(&impl->document())) {
105 ScriptValue wrapped = InspectorInstrumentation::wrapCanvas2DRenderingContextForInstrumentation(&impl->document(), context);
116 if (InspectorInstrumentation::canvasAgentEnabled(&impl->document())) {
119 ScriptValue wrapped = InspectorInstrumentation::wrapWebGLRenderingContextForInstrumentation(&impl->document(), glContext);
H A DV8HTMLPlugInElementCustom.cpp52 HTMLPlugInElement* impl = ElementType::toImpl(info.Holder()); local
53 RefPtr<SharedPersistent<v8::Object> > wrapper = impl->pluginWrapper();
86 HTMLPlugInElement* impl = ElementType::toImpl(info.Holder()); local
87 RefPtr<SharedPersistent<v8::Object> > wrapper = impl->pluginWrapper();
182 HTMLPlugInElement* impl = ElementType::toImpl(info.Holder()); local
183 RefPtr<SharedPersistent<v8::Object> > wrapper = impl->pluginWrapper();
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/custom/
H A DV8CryptoKeyCustom.cpp60 CryptoKey* impl = V8CryptoKey::toImpl(info.Holder()); local
63 impl->key().algorithm().writeToDictionary(&builder);
H A DV8DeviceMotionEventCustom.cpp105 DeviceMotionEvent* impl = V8DeviceMotionEvent::toImpl(info.Holder()); local
116 impl->initDeviceMotionEvent(type, bubbles, cancelable, deviceMotionData);
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dinterface.h151 static inline ScriptWrappableBase* toScriptWrappableBase({{cpp_class}}* impl)
153 return impl->toScriptWrappableBase();
183 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
185 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
189 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
191 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
195 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{cpp_class}}* impl, Wrappable*) argument
197 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
201 inline v8::Handle<v8::Object> wrap({{cpp_class}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
203 return impl
225 v8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
238 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, {{cpp_class}}* impl) argument
252 v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{cpp_class}}* impl, Wrappable* wrappable) argument
271 v8SetReturnValue(const CallbackInfo& callbackInfo, {{pass_cpp_type}} impl) argument
277 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, {{pass_cpp_type}} impl) argument
283 v8SetReturnValueFast(const CallbackInfo& callbackInfo, {{pass_cpp_type}} impl, Wrappable* wrappable) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8SVGTestInterface.h34 static inline ScriptWrappableBase* toScriptWrappableBase(SVGTestInterface* impl) argument
36 return impl->toScriptWrappableBase();
49 inline v8::Handle<v8::Object> wrap(SVGTestInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
51 return impl->wrap(creationContext, isolate);
54 inline v8::Handle<v8::Value> toV8(SVGTestInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
56 if (UNLIKELY(!impl))
58 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8SVGTestInterface>(impl, isolate);
62 return impl->wrap(creationContext, isolate);
66 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, SVGTestInterface* impl) argument
68 if (UNLIKELY(!impl)) {
79 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, SVGTestInterface* impl) argument
93 v8SetReturnValueFast(const CallbackInfo& callbackInfo, SVGTestInterface* impl, Wrappable* wrappable) argument
105 toV8(PassRefPtr<SVGTestInterface> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
111 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<SVGTestInterface> impl) argument
117 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<SVGTestInterface> impl) argument
123 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<SVGTestInterface> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestDictionary.cpp24 TestDictionary* impl = TestDictionary::create(); local
33 impl->setBooleanMember(booleanMember);
40 impl->setDoubleOrNullMember(doubleOrNullMember);
47 impl->setElementOrNullMember(elementOrNullMember);
59 impl->setEnumMember(enumMember);
66 impl->setLongMember(longMember);
77 impl->setObjectMember(objectMember);
88 impl->setObjectOrNullMember(objectOrNullMember);
95 impl->setStringArrayMember(stringArrayMember);
102 impl
166 toV8(TestDictionary* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
[all...]
H A DV8TestException.h34 static inline ScriptWrappableBase* toScriptWrappableBase(TestException* impl) argument
36 return impl->toScriptWrappableBase();
49 inline v8::Handle<v8::Object> wrap(TestException* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
51 return impl->wrap(creationContext, isolate);
54 inline v8::Handle<v8::Value> toV8(TestException* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
56 if (UNLIKELY(!impl))
58 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestException>(impl, isolate);
62 return impl->wrap(creationContext, isolate);
66 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestException* impl) argument
68 if (UNLIKELY(!impl)) {
79 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestException* impl) argument
93 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestException* impl, Wrappable* wrappable) argument
105 toV8(PassRefPtr<TestException> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
111 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestException> impl) argument
117 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestException> impl) argument
123 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestException> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterface2.h36 static inline ScriptWrappableBase* toScriptWrappableBase(TestInterface2* impl) argument
38 return impl->toScriptWrappableBase();
51 inline v8::Handle<v8::Object> wrap(TestInterface2* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
53 return impl->wrap(creationContext, isolate);
56 inline v8::Handle<v8::Value> toV8(TestInterface2* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
58 if (UNLIKELY(!impl))
60 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestInterface2>(impl, isolate);
64 return impl->wrap(creationContext, isolate);
68 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterface2* impl) argument
70 if (UNLIKELY(!impl)) {
81 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterface2* impl) argument
95 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface2* impl, Wrappable* wrappable) argument
107 toV8(PassRefPtr<TestInterface2> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
113 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface2> impl) argument
119 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface2> impl) argument
125 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface2> impl, Wrappable* wrappable) argument
[all...]
H A DV8TestInterface3.h43 static inline ScriptWrappableBase* toScriptWrappableBase(TestInterface3* impl) argument
45 return impl->toScriptWrappableBase();
58 inline v8::Handle<v8::Object> wrap(TestInterface3* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
60 return impl->wrap(creationContext, isolate);
63 inline v8::Handle<v8::Value> toV8(TestInterface3* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
65 if (UNLIKELY(!impl))
67 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestInterface3>(impl, isolate);
71 return impl->wrap(creationContext, isolate);
75 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterface3* impl) argument
77 if (UNLIKELY(!impl)) {
88 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterface3* impl) argument
102 v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface3* impl, Wrappable* wrappable) argument
114 toV8(PassRefPtr<TestInterface3> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
120 v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface3> impl) argument
126 v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface3> impl) argument
132 v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<TestInterface3> impl, Wrappable* wrappable) argument
[all...]

Completed in 596 milliseconds

1234567891011>>