Searched refs:element (Results 376 - 400 of 1784) sorted by relevance

<<11121314151617181920>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.as65 /** The element or stream description; usually has name of the token or
72 public function RewriteRuleElementStream(adaptor:TreeAdaptor, elementDescription:String, element:Object = null) {
75 if (element != null) {
76 if (element is Array) {
78 this.elements = element as Array;
81 /** Create a stream with one element */
82 add(element);
110 // adding 2nd element, move to list
117 /** Return the next element in the stream. If out of elements, throw
120 * size==1. If we've already used the element, du
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMapElement.cpp57 Element* element = this; local
58 while ((element = ElementTraversal::next(*element, this))) {
59 if (isHTMLAreaElement(element)) {
60 HTMLAreaElement* areaElt = toHTMLAreaElement(element);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DInputTypeView.cpp49 preferredSize = element().size();
92 return element().form();
97 return RenderObject::createObject(&element(), style);
107 element().defaultBlur();
137 if (ShadowRoot* root = element().userAgentShadowRoot())
H A DInputType.cpp115 PassRefPtr<InputType> InputType::create(HTMLInputElement& element, const AtomicString& typeName) argument
120 return factory(element);
123 PassRefPtr<InputType> InputType::createText(HTMLInputElement& element) argument
125 return TextInputType::create(element);
177 String currentValue = element().value();
178 if (currentValue == element().defaultValue())
185 element().setValue(state[0]);
191 return !element().name().isEmpty();
197 encoding.appendData(element().name(), element()
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DEditFileSystemDialog.js41 this.element = document.createElement("div");
42 this.element.className = "edit-file-system-dialog";
44 var header = this.element.createChild("div", "header");
51 var contents = this.element.createChild("div", "contents");
67 this._fileMappingsList.element.classList.add("file-mappings-list");
68 this._fileMappingsListContainer.appendChild(this._fileMappingsList.element);
82 this._excludedFolderList.element.classList.add("excluded-folders-list");
83 this._excludedFolderListContainer.appendChild(this._excludedFolderList.element);
88 this.element.tabIndex = 0;
91 WebInspector.EditFileSystemDialog.show = function(element, fileSystemPat
[all...]
H A DTimelinePanel.js53 this.element.classList.add("vbox");
54 this.element.addEventListener("contextmenu", this._contextMenu.bind(this), false);
74 this._overviewPane.show(this._presentationSelector.element);
101 this._detailsSplitView.element.classList.remove("fill");
102 this._detailsSplitView.element.classList.add("timeline-details-split");
104 this._detailsSplitView.show(this.element);
120 this._timelineMemorySplitter.element.classList.remove("fill");
121 this._timelineMemorySplitter.element.classList.add("timeline-memory-split");
122 this._timelineMemorySplitter.show(this._searchableView.element);
131 this._containerElement = this._sidebarView.element;
1244 var element = container.firstChild; variable
[all...]
/external/chromium_org/content/common/
H A Dpage_state_serialization.cc27 ExplodedHttpBodyElement element; local
28 element.type = blink::WebHTTPBody::Element::TypeData;
29 element.data.assign(data, data_length);
30 http_body->elements.push_back(element);
38 ExplodedHttpBodyElement element; local
39 element.type = blink::WebHTTPBody::Element::TypeFile;
40 element.file_path = file_path;
41 element.file_start = file_start;
42 element.file_length = file_length;
43 element
52 ExplodedHttpBodyElement element; local
63 ExplodedHttpBodyElement element; local
412 const ExplodedHttpBodyElement& element = http_body.elements[i]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DElementRuleCollector.cpp120 static bool rulesApplicableInCurrentTreeScope(const Element* element, const ContainerNode* scopingNode, SelectorChecker::BehaviorAtBoundary behaviorAtBoundary, bool elementApplyAuthorStyles) argument
122 TreeScope& treeScope = element->treeScope();
125 // b) element is allowed to apply author rules
131 // d) the rules comes from a scoped style sheet within an active shadow root whose host is the given element
132 if (element->isInShadowTree() && (behaviorAtBoundary & SelectorChecker::ScopeIsShadowHost) && scopingNode == element->containingShadowRoot()->host())
143 ASSERT(m_context.element());
145 Element& element = *m_context.element(); local
146 const AtomicString& pseudoId = element
[all...]
H A DSelectorFilter.cpp39 static inline void collectElementIdentifierHashes(const Element& element, Vector<unsigned, 4>& identifierHashes) argument
41 identifierHashes.append(element.localName().impl()->existingHash() * TagNameSalt);
42 if (element.hasID())
43 identifierHashes.append(element.idForStyleResolution().impl()->existingHash() * IdAttributeSalt);
44 if (element.isStyledElement() && element.hasClass()) {
45 const SpaceSplitString& classNames = element.classNames();
55 ASSERT(m_parentStack.isEmpty() || m_parentStack.last().element == parent.parentOrShadowHostElement());
88 // Fast version if parent is a root element:
106 if (m_parentStack.last().element !
[all...]
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DScrollingCoordinatorChromiumTest.cpp153 static WebLayer* webLayerFromElement(Element* element) argument
155 if (!element)
157 RenderObject* renderer = element->renderer();
184 Element* element = document->getElementById("div-tl"); local
185 ASSERT_TRUE(element);
186 WebLayer* layer = webLayerFromElement(element);
193 Element* element = document->getElementById("div-tr"); local
194 ASSERT_TRUE(element);
195 WebLayer* layer = webLayerFromElement(element);
202 Element* element local
211 Element* element = document->getElementById("div-br"); local
220 Element* element = document->getElementById("span-tl"); local
229 Element* element = document->getElementById("span-tr"); local
238 Element* element = document->getElementById("span-bl"); local
247 Element* element = document->getElementById("span-br"); local
[all...]
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlprinter.cc43 void PrintElement(const XmlElement * element);
54 XmlPrinter::PrintXml(std::ostream * pout, const XmlElement * element) { argument
55 PrintXml(pout, element, NULL, 0);
59 XmlPrinter::PrintXml(std::ostream * pout, const XmlElement * element, argument
62 printer.PrintElement(element);
76 XmlPrinterImpl::PrintElement(const XmlElement * element) { argument
81 for (pattr = element->FirstAttr(); pattr; pattr = pattr->NextAttr()) {
92 prefix = xmlnsStack_.AddNewPrefix(element->Name().Namespace(), false);
95 newXmlns.push_back(element->Name().Namespace());
98 for (pattr = element
[all...]
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppengineimpl_iq.cc56 XmppEngineImpl::SendIq(const XmlElement * element, XmppIqHandler * iq_handler, argument
62 if (!element || element->Name() != QN_IQ)
65 const std::string& type = element->Attr(QN_TYPE);
69 if (!element->HasAttr(QN_ID))
71 const std::string& id = element->Attr(QN_ID);
74 element->Attr(QN_TO),
77 SendStanza(element);
250 XmppEngineImpl::HandleIqResponse(const XmlElement * element) { argument
253 if (element
[all...]
/external/chromium_org/components/plugins/renderer/
H A Dplugin_placeholder.cc81 // Save the element in case the plug-in is removed from the page during
83 WebElement element = container->element(); local
92 if (!element.pluginContainer()) {
112 WebElement element = container->element(); local
113 element.setAttribute("style", "display: none;");
124 if (element.hasAttribute("width") && element.hasAttribute("height")) {
126 width_str += element
[all...]
/external/chromium_org/content/public/renderer/
H A Dhistory_item_serialization.cc56 void AppendHTTPBodyElement(const ExplodedHttpBodyElement& element, argument
58 switch (element.type) {
60 http_body->appendData(element.data);
64 element.file_path,
65 element.file_start,
66 element.file_length,
67 element.file_modification_time);
71 element.filesystem_url,
72 element.file_start,
73 element
104 WebHTTPBody::Element element; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppengineimpl_iq.cc56 XmppEngineImpl::SendIq(const XmlElement * element, XmppIqHandler * iq_handler, argument
62 if (!element || element->Name() != QN_IQ)
65 const std::string& type = element->Attr(QN_TYPE);
69 if (!element->HasAttr(QN_ID))
71 const std::string& id = element->Attr(QN_ID);
74 element->Attr(QN_TO),
77 SendStanza(element);
250 XmppEngineImpl::HandleIqResponse(const XmlElement * element) { argument
253 if (element
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DEnumerableExtensions.cs65 foreach (var element in source) {
66 total = func(total, element);
98 foreach (var element in source)
99 if (comparer.Equals(element, value))
141 foreach (var element in source) {
142 initValue = selector(element, initValue);
173 foreach (var element in source)
174 yield return selector(element);
185 foreach (TSource element in source) {
186 yield return selector(element, counte
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DTreeMultiset.java61 * the multiset. If the user attempts to add an element to the multiset that
63 * element to a set whose elements are integers), the {@code add(Object)}
79 * e1} and {@code e2} in the multiset. If the user attempts to add an element
174 public int count(@Nullable Object element) { argument
176 E e = checkElement(element);
206 public int add(E element, int occurrences) { argument
207 checkElement(element);
209 return count(element);
211 checkArgument(range.contains(element));
212 return mutate(element, ne
216 remove(@ullable Object element, int occurrences) argument
231 setCount(E element, int oldCount, int newCount) argument
239 setCount(E element, int count) argument
305 private final E element; field in class:TreeMultiset.LiveEntry
308 LiveEntry(E element, int count) argument
[all...]
/external/libvorbis/doc/
H A D07-floor1.tex118 4) vector [floor1_partition_class_list] element [i] = read 4 bits as unsigned integer
125 7) vector [floor1_class_dimensions] element [i] = read 3 bits as unsigned integer and add 1
126 8) vector [floor1_class_subclasses] element [i] = read 2 bits as unsigned integer
127 9) if ( vector [floor1_class_subclasses] element [i] is nonzero ) \{
129 10) vector [floor1_class_masterbooks] element [i] = read 8 bits as unsigned integer
133 11) iterate [j] over the range 0 ... (2 exponent [floor1_class_subclasses] element [i]) - 1 \{
135 12) array [floor1_subclass_books] element [i],[j] =
142 15) vector [floor1_X_list] element [0] = 0
143 16) vector [floor1_X_list] element [1] = 2 exponent [rangebits];
147 19) [current_class_number] = vector [floor1_partition_class_list] element [
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest_xml_test_utils.py83 "attribute numbers differ in element " + actual_node.tagName)
89 "expected attribute %s not found in element %s" %
92 " values of attribute %s in element %s differ" %
99 "number of child elements differ in element " + actual_node.tagName)
102 '<%s> is not in <%s> (in element %s)' %
113 def _GetChildren(self, element):
115 Fetches all of the child nodes of element, a DOM Element object.
121 "detail". An exception is raised if any element other than the above
127 for child in element.childNodes:
130 "Encountered unknown element <
[all...]
/external/chromium_org/content/public/common/
H A Dpage_state.cc78 ExplodedHttpBodyElement element; local
79 element.type = blink::WebHTTPBody::Element::TypeData;
80 element.data = optional_body_data;
81 state.top.http_body.elements.push_back(element);
84 ExplodedHttpBodyElement element; local
85 element.type = blink::WebHTTPBody::Element::TypeFile;
86 element.file_path =
88 state.top.http_body.elements.push_back(element);
89 state.referenced_files.push_back(element.file_path);
/external/chromium_org/tools/perf/utils/results_viewer/src/
H A Dmain.js17 * data element.
18 * @param {String} firstElement The first (non-header) element of a given
33 * Determines whether or not the given element is a date.
52 header.forEach(function (element, index, array) {
55 'label':element.toString(),
74 dataSet[i].forEach(function (element, index, array) {
75 if (isNumeric(element)) {
76 dataSourceLine[index.toString()] = parseFloat(element);
78 dataSourceLine[index.toString()] = element
118 * The id for the element tha
[all...]
/external/gtest/test/
H A Dgtest_xml_test_utils.py83 "attribute numbers differ in element " + actual_node.tagName)
89 "expected attribute %s not found in element %s" %
92 " values of attribute %s in element %s differ" %
99 "number of child elements differ in element " + actual_node.tagName)
102 '<%s> is not in <%s> (in element %s)' %
113 def _GetChildren(self, element):
115 Fetches all of the child nodes of element, a DOM Element object.
121 "detail". An exception is raised if any element other than the above
127 for child in element.childNodes:
130 "Encountered unknown element <
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DRenderSystem.java54 RenderElement element = mElementPool.allocate();
55 if (element != null) {
56 element.set(object, position, priority, cameraRelative);
57 mRenderQueues[mQueueIndex].add(element);
66 RenderElement element = (RenderElement)objectArray[i];
67 elementPool.release(element);
140 public void release(Object element) { argument
141 RenderElement renderable = (RenderElement)element;
149 super.release(element);
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
H A Dprogress_center_panel.js10 * @param {HTMLElement} element DOM Element of the process center panel.
13 var ProgressCenterPanel = function(element) {
15 * Root element of the progress center.
19 this.element_ = element;
41 element.ownerDocument);
60 element.addEventListener('click', this.onClick_.bind(this));
61 element.addEventListener(
63 element.addEventListener(
68 * Updates attributes of the item element.
69 * @param {!HTMLElement} element Elemen
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
H A Dbluetooth_options_browsertest.js61 * @param {!Element} element Text input field.
64 fakeInput: function(element, text) {
65 element.value = text;
66 cr.dispatchSimpleEvent(element, 'input');
159 // Test selecting an element and clicking on the connect button.
242 var element = this.getElementForDevice(pairedDeviceList,
244 assertTrue(!!element);
245 expectFalse(!!element.getAttribute('connected'));
258 element = this.getElementForDevice(pairedDeviceList,
260 assertTrue(!!element);
[all...]

Completed in 792 milliseconds

<<11121314151617181920>>