HomeSort by relevance Sort by last modified time
    Searched refs:impl (Results 1 - 25 of 1236) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jmdns/src/javax/jmdns/impl/
package-info.java 1 package javax.jmdns.impl;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CSSValueCustom.cpp 45 v8::Handle<v8::Value> toV8(CSSValue* impl)
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...]
V8EntryCustom.cpp 47 v8::Handle<v8::Value> toV8(Entry* impl)
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));
V8EntrySyncCustom.cpp 47 v8::Handle<v8::Value> toV8(EntrySync* impl)
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));
V8EventCustom.cpp 104 v8::Handle<v8::Value> toV8(Event* impl)
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->isWheelEvent()
    [all...]
V8ElementCustom.cpp 56 v8::Handle<v8::Value> toV8(Element* impl, bool forceNewObject)
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);
V8CSSRuleCustom.cpp 45 v8::Handle<v8::Value> toV8(CSSRule* impl)
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...]
V8HTMLElementCustom.cpp 38 v8::Handle<v8::Value> toV8(HTMLElement* impl, bool forceNewObject)
40 if (!impl)
42 return createV8HTMLWrapper(impl, forceNewObject);
V8IDBAnyCustom.cpp 46 v8::Handle<v8::Value> toV8(IDBAny* impl)
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->idbObjectStore())
    [all...]
V8SVGElementCustom.cpp 40 v8::Handle<v8::Value> toV8(SVGElement* impl, bool forceNewObject)
42 if (!impl)
44 return createV8SVGWrapper(impl, forceNewObject);
V8CanvasPixelArrayCustom.cpp 36 v8::Handle<v8::Value> toV8(CanvasPixelArray* impl)
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()),
V8StyleSheetCustom.cpp 40 v8::Handle<v8::Value> toV8(StyleSheet* impl)
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();
V8SVGPathSegCustom.cpp 60 v8::Handle<v8::Value> toV8(SVGPathSeg* impl)
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...]
  /external/jmdns/src/javax/jmdns/impl/constants/
package-info.java 1 package javax.jmdns.impl.constants;
  /external/jmdns/src/javax/jmdns/impl/tasks/
package-info.java 1 package javax.jmdns.impl.tasks;
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
package-info.java 1 package javax.jmdns.impl.tasks.resolver;
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
package-info.java 1 package javax.jmdns.impl.tasks.state;
  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMHTMLOptionsCollectionCustom.cpp 28 if (!impl())
31 return impl()->length();
36 if (!impl())
40 impl()->setLength(length, ec);
  /external/webkit/Source/WebCore/bindings/objc/
DOMEvents.mm 46 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->isMessageEvent()
    [all...]
  /external/srec/shared/src/
IntArrayListImpl.c 31 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->Interface.removeAll = &IntArrayList_RemoveAll
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...]
LStringImpl.c 30 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->value == NULL
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/
WebDOMTestCallback.cpp 45 : impl(object)
49 RefPtr<WebCore::TestCallback> impl; member in struct:WebDOMTestCallback::WebDOMTestCallbackPrivate
58 WebDOMTestCallback::WebDOMTestCallback(WebCore::TestCallback* impl)
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.get() : 0
    [all...]
WebDOMTestObj.cpp 41 : impl(object)
45 RefPtr<WebCore::TestObj> impl; member in struct:WebDOMTestObj::WebDOMTestObjPrivate
54 WebDOMTestObj::WebDOMTestObj(WebCore::TestObj* impl)
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.get() : 0
    [all...]
  /external/srec/portable/src/
ArrayListImpl.c 31 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->Interface.remove = &ArrayList_Remove
98 ArrayListImpl *impl = (ArrayListImpl *) self; local
105 ArrayListImpl *impl = (ArrayListImpl *) self; local
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...]
  /frameworks/base/core/java/android/net/
LocalServerSocket.java 31 private final LocalSocketImpl impl; field in class:LocalServerSocket
47 impl = new LocalSocketImpl();
49 impl.create(true);
52 impl.bind(localAddress);
54 impl.listen(LISTEN_BACKLOG);
68 impl = new LocalSocketImpl(fd);
69 impl.listen(LISTEN_BACKLOG);
70 localAddress = impl.getSockAddress();
94 impl.accept (acceptedImpl);
105 return impl.getFileDescriptor()
    [all...]

Completed in 844 milliseconds

1 2 3 4 5 6 7 8 91011>>