Searched refs:impl (Results 1 - 25 of 825) sorted by relevance

1234567891011>>

/external/jmdns/src/javax/jmdns/impl/
H A Dpackage-info.java1 package javax.jmdns.impl;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CSSValueCustom.cpp45 v8::Handle<v8::Value> toV8(CSSValue* impl) argument
47 if (!impl)
49 if (impl->isWebKitCSSTransformValue())
50 return toV8(static_cast<WebKitCSSTransformValue*>(impl));
51 if (impl->isValueList())
52 return toV8(static_cast<CSSValueList*>(impl));
53 if (impl->isPrimitiveValue())
54 return toV8(static_cast<CSSPrimitiveValue*>(impl));
56 if (impl->isSVGPaint())
57 return toV8(static_cast<SVGPaint*>(impl));
[all...]
H A DV8CSSRuleCustom.cpp45 v8::Handle<v8::Value> toV8(CSSRule* impl) argument
47 if (!impl)
49 switch (impl->type()) {
51 return toV8(static_cast<CSSStyleRule*>(impl));
53 return toV8(static_cast<CSSCharsetRule*>(impl));
55 return toV8(static_cast<CSSImportRule*>(impl));
57 return toV8(static_cast<CSSMediaRule*>(impl));
59 return toV8(static_cast<CSSFontFaceRule*>(impl));
61 return toV8(static_cast<CSSPageRule*>(impl));
63 return toV8(static_cast<WebKitCSSKeyframeRule*>(impl));
[all...]
H A DV8EntryCustom.cpp47 v8::Handle<v8::Value> toV8(Entry* impl) argument
49 if (!impl)
52 if (impl->isFile())
53 return toV8(static_cast<FileEntry*>(impl));
55 ASSERT(impl->isDirectory());
56 return toV8(static_cast<DirectoryEntry*>(impl));
H A DV8EntrySyncCustom.cpp47 v8::Handle<v8::Value> toV8(EntrySync* impl) argument
49 if (!impl)
52 if (impl->isFile())
53 return toV8(static_cast<FileEntrySync*>(impl));
55 ASSERT(impl->isDirectory());
56 return toV8(static_cast<DirectoryEntrySync*>(impl));
H A DV8EventCustom.cpp104 v8::Handle<v8::Value> toV8(Event* impl) argument
106 if (!impl)
108 if (impl->isUIEvent()) {
109 if (impl->isKeyboardEvent())
110 return toV8(static_cast<KeyboardEvent*>(impl));
111 if (impl->isTextEvent())
112 return toV8(static_cast<TextEvent*>(impl));
113 if (impl->isMouseEvent())
114 return toV8(static_cast<MouseEvent*>(impl));
115 if (impl
[all...]
H A DV8SVGPathSegCustom.cpp60 v8::Handle<v8::Value> toV8(SVGPathSeg* impl) argument
62 if (!impl)
64 switch (impl->pathSegType()) {
66 return toV8(static_cast<SVGPathSegClosePath*>(impl));
68 return toV8(static_cast<SVGPathSegMovetoAbs*>(impl));
70 return toV8(static_cast<SVGPathSegMovetoRel*>(impl));
72 return toV8(static_cast<SVGPathSegLinetoAbs*>(impl));
74 return toV8(static_cast<SVGPathSegLinetoRel*>(impl));
76 return toV8(static_cast<SVGPathSegCurvetoCubicAbs*>(impl));
78 return toV8(static_cast<SVGPathSegCurvetoCubicRel*>(impl));
[all...]
H A DV8ElementCustom.cpp56 v8::Handle<v8::Value> toV8(Element* impl, bool forceNewObject) argument
58 if (!impl)
60 if (impl->isHTMLElement())
61 return toV8(toHTMLElement(impl), forceNewObject);
63 if (impl->isSVGElement())
64 return toV8(static_cast<SVGElement*>(impl), forceNewObject);
66 return V8Element::wrap(impl, forceNewObject);
H A DV8HTMLElementCustom.cpp38 v8::Handle<v8::Value> toV8(HTMLElement* impl, bool forceNewObject) argument
40 if (!impl)
42 return createV8HTMLWrapper(impl, forceNewObject);
H A DV8IDBAnyCustom.cpp46 v8::Handle<v8::Value> toV8(IDBAny* impl) argument
48 if (!impl)
51 switch (impl->type()) {
57 return toV8(impl->idbCursor());
59 return toV8(impl->idbCursorWithValue());
61 return toV8(impl->idbDatabase());
63 return toV8(impl->idbFactory());
65 return toV8(impl->idbIndex());
67 return toV8(impl->idbKey());
69 return toV8(impl
[all...]
H A DV8SVGElementCustom.cpp40 v8::Handle<v8::Value> toV8(SVGElement* impl, bool forceNewObject) argument
42 if (!impl)
44 return createV8SVGWrapper(impl, forceNewObject);
H A DV8CanvasPixelArrayCustom.cpp36 v8::Handle<v8::Value> toV8(CanvasPixelArray* impl) argument
38 if (!impl)
40 v8::Handle<v8::Object> wrapper = V8CanvasPixelArray::wrap(impl);
42 wrapper->SetIndexedPropertiesToPixelData(impl->data()->data(), impl->length());
44 v8::Integer::New(impl->length()),
H A DV8StyleSheetCustom.cpp40 v8::Handle<v8::Value> toV8(StyleSheet* impl) argument
42 if (!impl)
44 if (impl->isCSSStyleSheet())
45 return toV8(static_cast<CSSStyleSheet*>(impl));
46 v8::Handle<v8::Object> wrapper = V8StyleSheet::wrap(impl);
48 Node* ownerNode = impl->ownerNode();
/external/jmdns/src/javax/jmdns/impl/constants/
H A Dpackage-info.java1 package javax.jmdns.impl.constants;
/external/jmdns/src/javax/jmdns/impl/tasks/
H A Dpackage-info.java1 package javax.jmdns.impl.tasks;
/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/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMHTMLOptionsCollectionCustom.cpp28 if (!impl())
31 return impl()->length();
36 if (!impl())
40 impl()->setLength(length, ec);
H A DWebDOMDOMWindowCustom.cpp29 if (!impl())
33 impl()->addEventListener(type, toWebCore(listener), useCapture);
38 if (!impl())
42 impl()->removeEventListener(type, toWebCore(listener), useCapture);
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMEvents.mm46 Class kitClass(WebCore::Event* impl)
48 if (impl->isUIEvent()) {
49 if (impl->isKeyboardEvent())
51 if (impl->isTextEvent())
53 if (impl->isMouseEvent())
55 if (impl->isWheelEvent())
58 if (impl->isSVGZoomEvent())
63 if (impl->isMutationEvent())
65 if (impl->isOverflowEvent())
67 if (impl
[all...]
/external/srec/shared/src/
H A DIntArrayListImpl.c31 IntArrayListImpl* impl; local
35 impl = NEW(IntArrayListImpl, MTAG);
36 if (impl == NULL)
38 impl->Interface.add = &IntArrayList_Add;
39 impl->Interface.contains = &IntArrayList_Contains;
40 impl->Interface.destroy = &IntArrayList_Destroy;
41 impl->Interface.get = &IntArrayList_Get;
42 impl->Interface.getSize = &IntArrayList_GetSize;
43 impl->Interface.remove = &IntArrayList_Remove;
44 impl
62 IntArrayListImpl* impl; local
76 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
94 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
124 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
132 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
151 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
160 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
169 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
177 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
186 IntArrayListImpl* impl = (IntArrayListImpl*) self; local
[all...]
H A DLStringImpl.c30 LStringImpl* impl; local
32 impl = NEW(LStringImpl, MTAG);
33 if (impl == NULL)
35 impl->Interface.append = &LString_Append;
36 impl->Interface.toLCHAR = &LString_ToLCHAR;
37 impl->Interface.reset = &LString_Reset;
38 impl->Interface.destroy = &LString_Destroy;
39 impl->size = INITIAL_SIZE;
40 impl->value = MALLOC(sizeof(LCHAR) * INITIAL_SIZE, MTAG);
41 if (impl
55 LStringImpl* impl = (LStringImpl*) self; local
74 LStringImpl* impl = (LStringImpl*) self; local
82 LStringImpl* impl = (LStringImpl*) self; local
93 LStringImpl* impl = (LStringImpl*) self; local
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/CPP/
H A DWebDOMTestCallback.cpp45 : impl(object)
49 RefPtr<WebCore::TestCallback> impl; member in struct:WebDOMTestCallback::WebDOMTestCallbackPrivate
58 WebDOMTestCallback::WebDOMTestCallback(WebCore::TestCallback* impl) argument
60 , m_impl(new WebDOMTestCallbackPrivate(impl))
67 m_impl = copy.impl() ? new WebDOMTestCallbackPrivate(copy.impl()) : 0;
73 m_impl = copy.impl() ? new WebDOMTestCallbackPrivate(copy.impl()) : 0;
77 WebCore::TestCallback* WebDOMTestCallback::impl() const function in class:WebDOMTestCallback
79 return m_impl ? m_impl->impl
[all...]
H A DWebDOMTestObj.cpp41 : impl(object)
45 RefPtr<WebCore::TestObj> impl; member in struct:WebDOMTestObj::WebDOMTestObjPrivate
54 WebDOMTestObj::WebDOMTestObj(WebCore::TestObj* impl) argument
56 , m_impl(new WebDOMTestObjPrivate(impl))
63 m_impl = copy.impl() ? new WebDOMTestObjPrivate(copy.impl()) : 0;
69 m_impl = copy.impl() ? new WebDOMTestObjPrivate(copy.impl()) : 0;
73 WebCore::TestObj* WebDOMTestObj::impl() const function in class:WebDOMTestObj
75 return m_impl ? m_impl->impl
[all...]
/external/srec/portable/src/
H A DArrayListImpl.c31 ArrayListImpl* impl; local
36 impl = NEW(ArrayListImpl, MTAG);
38 if (impl == NULL)
41 impl->Interface.add = &ArrayList_Add;
42 impl->Interface.insertAt = &ArrayList_InsertAt;
43 impl->Interface.contains = &ArrayList_Contains;
44 impl->Interface.destroy = &ArrayList_Destroy;
45 impl->Interface.get = &ArrayList_Get;
46 impl->Interface.getSize = &ArrayList_GetSize;
47 impl
74 ArrayList_Insert_Internal(ArrayListImpl *impl, size_t index, void *element) argument
98 ArrayListImpl *impl = (ArrayListImpl *) self; local
105 ArrayListImpl *impl = (ArrayListImpl *) self; local
113 ArrayList_Remove_Internal(ArrayListImpl *impl, size_t i) argument
139 ArrayListImpl* impl = (ArrayListImpl*) self; local
154 ArrayListImpl* impl = (ArrayListImpl*) self; local
164 ArrayListImpl* impl = (ArrayListImpl*) self; local
173 ArrayListImpl* impl = (ArrayListImpl*) self; local
190 ArrayListImpl* impl = (ArrayListImpl*) self; local
200 ArrayListImpl* impl = (ArrayListImpl*) self; local
210 ArrayListImpl* impl = (ArrayListImpl*) self; local
236 ArrayListImpl* impl = (ArrayListImpl*) self; local
[all...]

Completed in 233 milliseconds

1234567891011>>