Searched refs:impl (Results 101 - 125 of 825) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLLinkElementCustom.cpp39 if (StyleSheet* sheet = static_cast<HTMLLinkElement*>(impl())->sheet())
H A DJSHTMLStyleElementCustom.cpp39 if (StyleSheet* sheet = static_cast<HTMLStyleElement*>(impl())->sheet())
H A DJSJavaScriptAudioNodeCustom.cpp40 static_cast<JavaScriptAudioNode*>(impl())->markJSEventListeners(markStack);
H A DJSProcessingInstructionCustom.cpp39 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(impl())->sheet())
H A DJSSVGElementInstanceCustom.cpp39 markStack.addOpaqueRoot(root(impl()->correspondingElement()));
H A DJSWebKitCSSKeyframeRuleCustom.cpp39 if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(impl())->style())
H A DJSWebKitCSSKeyframesRuleCustom.cpp39 if (CSSRuleList* rules = static_cast<WebKitCSSKeyframesRule*>(impl())->cssRules())
H A DJSHTMLOutputElementCustom.cpp40 HTMLOutputElement* output = static_cast<HTMLOutputElement*>(impl());
47 HTMLOutputElement* output = static_cast<HTMLOutputElement*>(impl());
H A DJSJavaScriptCallFrameCustom.cpp42 JSValue result = impl()->evaluate(exec->argument(0).toString(exec), exception);
52 return impl()->thisObject() ? JSValue(impl()->thisObject()) : jsNull();
57 switch (impl()->type()) {
70 if (!impl()->scopeChain())
73 ScopeChainNode* scopeChain = impl()->scopeChain();
91 if (!impl()->scopeChain())
98 ScopeChainNode* scopeChain = impl()->scopeChain();
H A DJSNamedNodeMapCustom.cpp47 Element* element = jsNamedNodeMap->impl()->element();
57 uncacheWrapper(world, jsNamedNodeMap->impl(), jsNamedNodeMap);
71 bool JSNamedNodeMap::canGetItemsForName(ExecState*, NamedNodeMap* impl, const Identifier& propertyName) argument
73 return impl->getNamedItem(identifierToString(propertyName));
79 return toJS(exec, thisObj->impl()->getNamedItem(identifierToString(propertyName)));
90 Element* element = impl()->element();
96 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, NamedNodeMap* impl) argument
98 return wrap<JSNamedNodeMap>(exec, globalObject, impl);
H A DJSDOMApplicationCacheCustom.cpp49 Frame* frame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame();
55 bool result = impl()->hasItem(url, ec);
62 Frame* frame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame();
68 impl()->add(url, ec);
75 Frame* frame = asJSDOMWindow(exec->dynamicGlobalObject())->impl()->frame();
81 impl()->remove(url, ec);
H A DJSXSLTProcessorCustom.cpp54 impl()->importStylesheet(node->impl());
66 WebCore::Node* node = static_cast<JSNode*>(asObject(nodeVal))->impl();
67 Document* doc = static_cast<Document*>(static_cast<JSDocument*>(asObject(docVal))->impl());
68 return toJS(exec, impl()->transformToFragment(node, doc).get());
79 RefPtr<Document> resultDocument = impl()->transformToDocument(node->impl());
95 impl()->setParameter(namespaceURI, localName, value);
105 String value = impl()->getParameter(namespaceURI, localName);
115 impl()
[all...]
H A DJSXMLHttpRequestCustom.cpp84 const KURL& url = impl()->scriptExecutionContext()->completeURL(ustringToString(exec->argument(1).toString(exec)));
96 impl()->open(method, url, async, user, password, ec);
98 impl()->open(method, url, async, user, ec);
100 impl()->open(method, url, async, ec);
102 impl()->open(method, url, ec);
110 InspectorInstrumentation::willSendXMLHttpRequest(impl()->scriptExecutionContext(), impl()->url());
114 impl()->send(ec);
118 impl()->send(ec);
120 impl()
[all...]
H A DJSNodeListCustom.cpp49 if (!jsNodeList->impl()->isDynamicNodeList())
51 return markStack.containsOpaqueRoot(root(static_cast<DynamicNodeList*>(jsNodeList->impl())->rootNode()));
58 uncacheWrapper(world, jsNodeList->impl(), jsNodeList);
72 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, NodeList* impl) argument
74 return wrap<JSNodeList>(exec, globalObject, impl);
84 return JSValue::encode(toJS(exec, static_cast<JSNodeList*>(exec->callee())->impl()->item(index)));
93 bool JSNodeList::canGetItemsForName(ExecState*, NodeList* impl, const Identifier& propertyName) argument
95 return impl->itemWithName(identifierToAtomicString(propertyName));
101 return toJS(exec, thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
H A DJSHTMLInputElementCustom.cpp38 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
47 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
56 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
65 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
74 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl());
/external/webkit/Source/WebCore/platform/network/
H A DProtectionSpaceHash.h38 protectionSpace.host().impl() ? protectionSpace.host().impl()->hash() : 0,
42 protectionSpace.realm().impl() ? protectionSpace.realm().impl()->hash() : 0
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A DCanceler.java5 package javax.jmdns.impl.tasks.state;
11 import javax.jmdns.impl.DNSOutgoing;
12 import javax.jmdns.impl.DNSRecord;
13 import javax.jmdns.impl.JmDNSImpl;
14 import javax.jmdns.impl.ServiceInfoImpl;
15 import javax.jmdns.impl.constants.DNSConstants;
16 import javax.jmdns.impl.constants.DNSRecordClass;
17 import javax.jmdns.impl.constants.DNSState;
34 * @see javax.jmdns.impl.tasks.DNSTask#getName()
52 * @see javax.jmdns.impl
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
H A DV8TestObj.h56 v8::Handle<v8::Object> V8TestObj::wrap(TestObj* impl) argument
58 v8::Handle<v8::Object> wrapper = getDOMObjectMap().get(impl);
61 return V8TestObj::wrapSlow(impl);
64 inline v8::Handle<v8::Value> toV8(TestObj* impl) argument
66 if (!impl)
68 return V8TestObj::wrap(impl);
70 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestObj > impl) argument
72 return toV8(impl.get());
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CanvasRenderingContext2DCustom.cpp79 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info.Holder()); local
80 return toV8Object(impl->strokeStyle());
85 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info.Holder()); local
86 impl->setStrokeStyle(toCanvasStyle(value));
91 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info.Holder()); local
92 return toV8Object(impl->fillStyle());
97 CanvasRenderingContext2D* impl = V8CanvasRenderingContext2D::toNative(info.Holder()); local
98 impl->setFillStyle(toCanvasStyle(value));
/external/webkit/Source/WebCore/dom/
H A DTreeScope.cpp82 return m_elementsById.getElementById(elementId.impl(), this);
87 m_elementsById.add(elementId.impl(), element);
92 m_elementsById.remove(elementId.impl(), element);
106 m_elementsByAccessKey.set(accessKey.impl(), element);
110 return m_elementsByAccessKey.get(key.impl());
121 AtomicStringImpl* name = imageMap->getName().impl();
129 AtomicStringImpl* name = imageMap->getName().impl();
140 String name = (hashPos == notFound ? url : url.substring(hashPos + 1)).impl();
142 return static_cast<HTMLMapElement*>(m_imageMapsByName.getElementByLowercasedMapName(AtomicString(name.lower()).impl(), this));
143 return static_cast<HTMLMapElement*>(m_imageMapsByName.getElementByMapName(AtomicString(name).impl(), thi
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DDatagramSocketImplTest.java35 MockDatagramSocketImpl impl = new MockDatagramSocketImpl();
36 assertNull(impl.getFileDescriptor());
41 MockDatagramSocketImpl impl = new MockDatagramSocketImpl();
44 impl.test_connect(localhost, 0);
45 impl.test_connect(localhost, -1);
46 impl.test_connect(null, -1);
48 impl.test_disconnect();
/external/stlport/src/
H A Dlocale.cpp132 locale::locale( _Locale_impl* impl ) :
133 _M_impl( _get_Locale_impl( impl ) )
147 _Locale_impl* impl = 0; local
149 impl = new _Locale_impl(locale::id::_S_max, name);
165 hint = impl->insert_ctype_facets(ctype_name, ctype_buf, hint);
166 hint = impl->insert_numeric_facets(numeric_name, numeric_buf, hint);
167 hint = impl->insert_time_facets(time_name, time_buf, hint);
168 hint = impl->insert_collate_facets(collate_name, collate_buf, hint);
169 hint = impl->insert_monetary_facets(monetary_name, monetary_buf, hint);
170 impl
254 _Locale_impl* impl = 0; local
297 _Locale_impl* impl = new _Locale_impl(*L1._M_impl); local
[all...]
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DAtomicString.h50 ATOMICSTRING_CONVERSION AtomicString(const String& s) : m_string(add(s.impl())) { }
61 AtomicStringImpl* impl() const { return static_cast<AtomicStringImpl *>(m_string.impl()); } function in class:WTF::AtomicString
86 AtomicString upper() const { return AtomicString(impl()->upper()); }
99 AtomicString(CFStringRef s) : m_string(add(String(s).impl())) { }
103 AtomicString(NSString* s) : m_string(add(String(s).impl())) { }
107 AtomicString(const QString& s) : m_string(add(String(s).impl())) { }
133 inline bool operator==(const AtomicString& a, const AtomicString& b) { return a.impl() == b.impl(); }
136 inline bool operator==(const AtomicString& a, const String& b) { return equal(a.impl(),
[all...]
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
H A DDNSResolverTask.java2 package javax.jmdns.impl.tasks.resolver;
9 import javax.jmdns.impl.DNSOutgoing;
10 import javax.jmdns.impl.JmDNSImpl;
11 import javax.jmdns.impl.constants.DNSConstants;
12 import javax.jmdns.impl.tasks.DNSTask;
45 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
/external/srec/srec/Semproc/src/
H A DSemanticGraphImpl.c41 SR_SemanticGraphImpl* impl; local
48 impl = NEW(SR_SemanticGraphImpl, MTAG);
49 if (impl == NULL)
54 /* do not assume NEW initialize impl as zero, do it here */
55 memset(impl, 0, sizeof(SR_SemanticGraphImpl));
57 impl->Interface.destroy = &SR_SemanticGraph_Destroy;
58 impl->Interface.unload = &SR_SemanticGraph_Unload;
59 impl->Interface.load = &SR_SemanticGraph_Load;
60 impl->Interface.save = &SR_SemanticGraph_Save;
61 impl
76 SR_SemanticGraphImpl* impl = (SR_SemanticGraphImpl*) self; local
94 SR_SemanticGraphImpl* impl = (SR_SemanticGraphImpl*) self; local
167 sr_semanticgraph_loadV2(SR_SemanticGraphImpl* impl, wordmap* ilabels, PFile* fp) argument
620 SR_SemanticGraphImpl* impl = (SR_SemanticGraphImpl*) self; local
636 sr_semanticgraph_get_type(SR_SemanticGraphImpl* impl) argument
679 sr_semanticgraph_saveV2(SR_SemanticGraphImpl* impl, const LCHAR* g2g) argument
1023 struct SR_SemanticGraphImpl_t *impl = (struct SR_SemanticGraphImpl_t*) self; local
1183 struct SR_SemanticGraphImpl_t *impl = (struct SR_SemanticGraphImpl_t*) self; local
1225 serializeArcTokenInfoV2(SR_SemanticGraphImpl *impl, PFile* fp) argument
1273 deserializeArcTokenInfoV2(SR_SemanticGraphImpl *impl, PFile* fp) argument
[all...]

Completed in 267 milliseconds

1234567891011>>