Searched refs:element (Results 301 - 325 of 1784) sorted by relevance

<<11121314151617181920>>

/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRewriteRuleSubtreeStream.h40 element:(id)anElement;
46 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
50 - (id) dup:(id)element;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCanvasValue.cpp64 void CSSCanvasValue::canvasDestroyed(HTMLCanvasElement* element) argument
66 ASSERT_UNUSED(element, element == m_element);
72 if (HTMLCanvasElement* elt = element(&renderer->document()))
77 HTMLCanvasElement* CSSCanvasValue::element(Document* document) function in class:WebCore::CSSCanvasValue
91 HTMLCanvasElement* elt = element(&renderer->document());
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElementRareData.h57 static SVGElementRareData* rareDataFromMap(const SVGElement* element) argument
59 return rareDataMap().get(element);
90 RenderStyle* overrideComputedStyle(Element* element, RenderStyle* parentStyle) argument
92 ASSERT(element);
97 m_overrideComputedStyle = element->document().ensureStyleResolver().styleForElement(element, parentStyle, DisallowStyleSharing, MatchAllRulesExcludingSMIL);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DObjectArrays.java47 * Returns a new array that prepends {@code element} to {@code array}.
49 * @param element the element to prepend to the front of {@code array}
52 * {@code element} occupying the first position, and the
55 public static <T> T[] concat(@Nullable T element, T[] array) { argument
57 result[0] = element;
63 * Returns a new array that appends {@code element} to {@code array}.
66 * @param element the element to append to the end
68 * the same contents as {@code array}, plus {@code element} occupyin
71 concat(T[] array, @Nullable T element) argument
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleSubtreeStream.as32 public function RewriteRuleSubtreeStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
33 super(adaptor, elementDescription, element);
36 /** Treat next element as a single node even if it's a subtree.
H A DRewriteRuleTokenStream.as34 public function RewriteRuleTokenStream(adaptor:TreeAdaptor, elementDescription:String, element:Object=null) {
35 super(adaptor, elementDescription, element);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNamedNodeMap.java50 /** The DTM element handle. */
51 int element; field in class:DTMNamedNodeMap
57 * Create a getAttributes NamedNodeMap for a given DTM element node
60 * @param element The DTM element handle.
62 public DTMNamedNodeMap(DTM dtm, int element) argument
65 this.element = element;
80 for (int n = dtm.getFirstAttribute(element); n != -1;
102 for (int n = dtm.getFirstAttribute(element);
[all...]
/external/chromium-trace/trace-viewer/src/base/
H A Dmeasuring_stick.js24 * Measures the provided element without forcing layout on the main
27 measure: function(element) {
28 this.iframe_.contentDocument.body.appendChild(element);
29 var style = this.iframe_.contentWindow.getComputedStyle(element);
32 this.iframe_.contentDocument.body.removeChild(element);
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/
H A Dsend_links.js9 links = links.map(function(element) {
13 var href = element.href;
/external/chromium_org/remoting/webapp/
H A Dui_mode.js60 * @param {Element} element The element to check.
61 * @param {string} attrName The attribute on the element to check.
65 remoting.hasModeAttribute = function(element, attrName, modes) {
66 var attr = element.getAttribute(attrName);
90 var element = /** @type {Element} */ elements[i];
91 if (!remoting.hasModeAttribute(element, attr, modes)) {
92 element.hidden = true;
96 var element = /** @type {Element} */ elements[i];
97 if (remoting.hasModeAttribute(element, att
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DScriptRunner.cpp59 Element* element = scriptLoader->element(); local
60 ASSERT(element);
61 ASSERT(element->inDocument());
67 m_pendingAsyncScripts.add(scriptLoader, PendingScript(element, resource.get()));
71 m_scriptsToExecuteInOrder.append(PendingScript(element, resource.get()));
135 RefPtr<Element> element = scripts[i].releaseElementAndClear(); local
136 toScriptLoaderIfPossible(element.get())->execute(resource);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DRemoveCSSPropertyCommand.cpp37 RemoveCSSPropertyCommand::RemoveCSSPropertyCommand(Document& document, PassRefPtr<Element> element, CSSPropertyID property) argument
39 , m_element(element)
H A DRemoveCSSPropertyCommand.h38 static PassRefPtr<RemoveCSSPropertyCommand> create(Document& document, PassRefPtr<Element> element, CSSPropertyID property) argument
40 return adoptRef(new RemoveCSSPropertyCommand(document, element, property));
H A DReplaceNodeWithSpanCommand.h43 static PassRefPtr<ReplaceNodeWithSpanCommand> create(PassRefPtr<HTMLElement> element) argument
45 return adoptRef(new ReplaceNodeWithSpanCommand(element));
H A DSetNodeAttributeCommand.h36 static PassRefPtr<SetNodeAttributeCommand> create(PassRefPtr<Element> element, const QualifiedName& attribute, const AtomicString& value) argument
38 return adoptRef(new SetNodeAttributeCommand(element, attribute, value));
H A DSplitElementCommand.h35 static PassRefPtr<SplitElementCommand> create(PassRefPtr<Element> element, PassRefPtr<Node> splitPointChild) argument
37 return adoptRef(new SplitElementCommand(element, splitPointChild));
H A DWrapContentsInDummySpanCommand.h37 static PassRefPtr<WrapContentsInDummySpanCommand> create(PassRefPtr<Element> element) argument
39 return adoptRef(new WrapContentsInDummySpanCommand(element));
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLHtmlElement.h48 inline bool isHTMLHtmlElement(const Element* element) argument
50 return element->hasTagName(HTMLNames::htmlTag);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DBaseCheckableInputType.h41 BaseCheckableInputType(HTMLInputElement& element) : InputType(element) { } argument
H A DBaseClickableWithKeyInputType.h47 BaseClickableWithKeyInputType(HTMLInputElement& element) : InputType(element) { } argument
H A DCheckboxInputType.h43 CheckboxInputType(HTMLInputElement& element) : BaseCheckableInputType(element) { } argument
H A DNumberInputType.cpp97 PassRefPtr<InputType> NumberInputType::create(HTMLInputElement& element) argument
99 return adoptRef(new NumberInputType(element));
114 if (!valueChanged && sanitizedValue.isEmpty() && !element().innerTextValue().isEmpty())
121 return parseToDoubleForNumberType(element().value());
132 element().setValue(serializeForNumberType(newValue), eventBehavior);
143 element().setValue(serializeForNumberType(newValue), eventBehavior);
153 ASSERT(!typeMismatchFor(element().value()));
170 const String stepString = element().fastGetAttribute(stepAttr);
174 const Decimal minimum = parseToDecimalForNumberType(element().fastGetAttribute(minAttr));
178 const Decimal maximum = parseToDecimalForNumberType(element()
[all...]
H A DSubmitInputType.h43 SubmitInputType(HTMLInputElement& element) : BaseButtonInputType(element) { } argument
/external/chromium_org/third_party/WebKit/Source/core/html/ime/
H A DInputMethodContext.cpp41 PassOwnPtr<InputMethodContext> InputMethodContext::create(HTMLElement* element) argument
43 return adoptPtr(new InputMethodContext(element));
46 InputMethodContext::InputMethodContext(HTMLElement* element) argument
47 : m_element(element)
100 const Element* element = frame->document()->focusedElement(); local
101 return element && element->isHTMLElement() && m_element == toHTMLElement(element);
130 // build a CompositionUnderline whose element is the whole composition.
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderRegionSet.cpp33 RenderRegionSet::RenderRegionSet(Element* element, RenderFlowThread* flowThread) argument
34 : RenderRegion(element, flowThread)

Completed in 635 milliseconds

<<11121314151617181920>>