Searched defs:impl (Results 1 - 25 of 546) sorted by relevance

1234567891011>>

/external/chromium_org/tools/json_schema_compiler/
H A Dmemoize.py9 def impl(*args, **optargs): function in function:memoize
14 return impl
/external/jmdns/src/javax/jmdns/impl/constants/
H A Dpackage-info.java1 package javax.jmdns.impl.constants;
/external/jmdns/src/javax/jmdns/impl/
H A Dpackage-info.java1 package javax.jmdns.impl;
/external/jmdns/src/javax/jmdns/impl/tasks/
H A Dpackage-info.java1 package javax.jmdns.impl.tasks;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8AlgorithmCustom.cpp45 v8::Handle<v8::Object> wrap(Algorithm* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
47 ASSERT(impl);
50 switch (impl->type()) {
52 return V8Algorithm::createWrapper(impl, creationContext, isolate);
54 return wrap(static_cast<AesCbcParams*>(impl), creationContext, isolate);
56 return wrap(static_cast<AesKeyGenParams*>(impl), creationContext, isolate);
58 return wrap(static_cast<HmacParams*>(impl), creationContext, isolate);
60 return wrap(static_cast<HmacKeyParams*>(impl), creationContext, isolate);
62 return wrap(static_cast<RsaSsaParams*>(impl), creationContext, isolate);
64 return wrap(static_cast<RsaKeyGenParams*>(impl), creationContex
[all...]
H A DV8AudioNodeCustom.cpp68 v8::Handle<v8::Object> wrap(AudioNode* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
70 ASSERT(impl);
71 switch (impl->nodeType()) {
73 return wrap(static_cast<AudioDestinationNode*>(impl), creationContext, isolate);
75 return wrap(static_cast<OscillatorNode*>(impl), creationContext, isolate);
77 return wrap(static_cast<AudioBufferSourceNode*>(impl), creationContext, isolate);
79 return wrap(static_cast<MediaElementAudioSourceNode*>(impl), creationContext, isolate);
81 return wrap(static_cast<MediaStreamAudioDestinationNode*>(impl), creationContext, isolate);
83 return wrap(static_cast<MediaStreamAudioSourceNode*>(impl), creationContext, isolate);
85 return wrap(static_cast<ScriptProcessorNode*>(impl), creationContex
[all...]
H A DV8CSSRuleCustom.cpp49 v8::Handle<v8::Object> wrap(CSSRule* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
51 ASSERT(impl);
52 switch (impl->type()) {
57 return V8CSSRule::createWrapper(impl, creationContext, isolate);
59 return wrap(toCSSStyleRule(impl), creationContext, isolate);
61 return wrap(toCSSCharsetRule(impl), creationContext, isolate);
63 return wrap(toCSSImportRule(impl), creationContext, isolate);
65 return wrap(toCSSMediaRule(impl), creationContext, isolate);
67 return wrap(toCSSFontFaceRule(impl), creationContext, isolate);
69 return wrap(toCSSPageRule(impl), creationContex
[all...]
H A DV8CSSValueCustom.cpp45 v8::Handle<v8::Object> wrap(CSSValue* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
47 ASSERT(impl);
48 if (impl->isTransformValue())
49 return wrap(toCSSTransformValue(impl), creationContext, isolate);
50 if (impl->isMixFunctionValue())
51 return wrap(toCSSMixFunctionValue(impl), creationContext, isolate);
52 if (impl->isFilterValue())
53 return wrap(toCSSFilterValue(impl), creationContext, isolate);
54 if (impl->isValueList())
55 return wrap(toCSSValueList(impl), creationContex
[all...]
H A DV8CanvasRenderingContextCustom.cpp40 v8::Handle<v8::Object> wrap(CanvasRenderingContext* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
42 ASSERT(impl);
43 if (impl->is2d())
44 return wrap(toCanvasRenderingContext2D(impl), creationContext, isolate);
45 if (impl->is3d())
46 return wrap(toWebGLRenderingContext(impl), creationContext, isolate);
H A DV8EntryCustom.cpp42 v8::Handle<v8::Object> wrap(Entry* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
44 ASSERT(impl);
45 if (impl->isFile())
46 return wrap(toFileEntry(impl), creationContext, isolate);
47 return wrap(toDirectoryEntry(impl), creationContext, isolate);
H A DV8EntrySyncCustom.cpp42 v8::Handle<v8::Object> wrap(EntrySync* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
44 ASSERT(impl);
45 if (impl->isFile())
46 return wrap(toFileEntrySync(impl), creationContext, isolate);
47 return wrap(toDirectoryEntrySync(impl), creationContext, isolate);
H A DV8HTMLCollectionCustom.cpp43 v8::Handle<v8::Object> wrap(HTMLCollection* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
45 ASSERT(impl);
46 switch (impl->type()) {
48 return wrap(static_cast<HTMLFormControlsCollection*>(impl), creationContext, isolate);
50 return wrap(static_cast<HTMLOptionsCollection*>(impl), creationContext, isolate);
52 return wrap(static_cast<HTMLAllCollection*>(impl), creationContext, isolate);
57 return V8HTMLCollection::createWrapper(impl, creationContext, isolate);
H A DV8HTMLElementCustom.cpp38 v8::Handle<v8::Object> wrap(HTMLElement* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
40 ASSERT(impl);
41 return createV8HTMLWrapper(impl, creationContext, isolate);
H A DV8PerformanceEntryCustom.cpp45 v8::Handle<v8::Object> wrap(PerformanceEntry* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
47 ASSERT(impl);
48 if (impl->isResource())
49 return wrap(static_cast<PerformanceResourceTiming*>(impl), creationContext, isolate);
51 if (impl->isMark())
52 return wrap(static_cast<PerformanceMark*>(impl), creationContext, isolate);
54 if (impl->isMeasure())
55 return wrap(static_cast<PerformanceMeasure*>(impl), creationContext, isolate);
57 return V8PerformanceEntry::createWrapper(impl, creationContext, isolate);
H A DV8SVGElementCustom.cpp38 v8::Handle<v8::Object> wrap(SVGElement* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
40 ASSERT(impl);
41 return createV8SVGWrapper(impl, creationContext, isolate);
H A DV8SVGPathSegCustom.cpp58 v8::Handle<v8::Object> wrap(SVGPathSeg* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
60 ASSERT(impl);
61 switch (impl->pathSegType()) {
63 return wrap(static_cast<SVGPathSegClosePath*>(impl), creationContext, isolate);
65 return wrap(static_cast<SVGPathSegMovetoAbs*>(impl), creationContext, isolate);
67 return wrap(static_cast<SVGPathSegMovetoRel*>(impl), creationContext, isolate);
69 return wrap(static_cast<SVGPathSegLinetoAbs*>(impl), creationContext, isolate);
71 return wrap(static_cast<SVGPathSegLinetoRel*>(impl), creationContext, isolate);
73 return wrap(static_cast<SVGPathSegCurvetoCubicAbs*>(impl), creationContext, isolate);
75 return wrap(static_cast<SVGPathSegCurvetoCubicRel*>(impl), creationContex
[all...]
H A DV8StyleSheetCustom.cpp40 v8::Handle<v8::Object> wrap(StyleSheet* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
42 ASSERT(impl);
43 if (impl->isCSSStyleSheet())
44 return wrap(toCSSStyleSheet(impl), creationContext, isolate);
45 return V8StyleSheet::createWrapper(impl, creationContext, isolate);
H A DV8TextCustom.cpp40 v8::Handle<v8::Object> wrap(Text* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) argument
42 ASSERT(impl);
43 if (impl->nodeType() == Node::CDATA_SECTION_NODE)
44 return wrap(toCDATASection(impl), creationContext, isolate);
45 return V8Text::createWrapper(impl, creationContext, isolate);
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
H A Dpackage-info.java1 package javax.jmdns.impl.tasks.resolver;
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A Dpackage-info.java1 package javax.jmdns.impl.tasks.state;
/external/apache-harmony/support/src/test/resources/tests/resources/ServiceLoader/
H A Dhyts_services.jar ... resources.ServiceLoader.ServiceMoreThanOne tests/ tests/resources/ tests/resources/impl/ tests/resources/impl/ImplementationOfAbstractService.class ImplementationOfAbstractService.java package ...
H A Dhyts_services2.jar ... resources.ServiceLoader.ServiceIn2File tests/ tests/resources/ tests/resources/impl/ tests/resources/impl/ImplementationOfServiceIn2File2.class ImplementationOfServiceIn2File2.java package ...
/external/chromium_org/components/browser_context_keyed_service/
H A Drefcounted_browser_context_keyed_service.cc7 namespace impl { namespace
20 } // namespace impl
H A Drefcounted_browser_context_keyed_service.h15 namespace impl { namespace
22 } // namespace impl
40 impl::RefcountedBrowserContextKeyedServiceTraits> {
65 friend struct impl::RefcountedBrowserContextKeyedServiceTraits;
68 impl::RefcountedBrowserContextKeyedServiceTraits>;
/external/chromium_org/content/common/
H A Dsocket_stream_handle_data.cc21 WebSocketStreamHandleImpl* impl = local
23 impl->SetUserData(handle, new SocketStreamHandleData(render_view_id));
31 WebSocketStreamHandleImpl* impl =
33 return static_cast<SocketStreamHandleData*>(impl->GetUserData(handle));

Completed in 391 milliseconds

1234567891011>>