HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 1501 - 1525 of 2129) sorted by null

<<61626364656667686970>>

  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/23.0.2/
manifest-merger-23.0.2.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 90 // Cache of attributes. Key is FQCN of a node mixed with its view hierarchy
169 for (INode node : selectedNodes) {
170 node.editXml("Change Attribute " + ATTR_LAYOUT_WIDTH,
181 for (INode node : selectedNodes) {
182 node.editXml("Change Attribute " + ATTR_LAYOUT_HEIGHT,
191 // selected node (though allow cancel to break the loop)
192 for (INode node : selectedNodes) {
193 if (!mRulesEngine.rename(node)) {
306 private String inputAttributeValue(final INode node, final String attribute) {
307 String oldValue = node.getStringAttr(ANDROID_URI, attribute)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorDelegate.java 86 import org.w3c.dom.Node;
126 /** Root node of the UI element hierarchy */
212 * @return The root node of the UI element hierarchy
386 * Processes the new XML Model, which XML root node is given.
425 * Returns one of the issues for the given node (there could be more than one)
427 * @param node the node to look up lint issues for
428 * @return the marker for one of the issues found for the given node
431 public IMarker getIssueForNode(@Nullable UiViewElementNode node) {
432 if (node == null)
675 Node node = DomUtilities.getNode(textViewer.getDocument(), caretOffset); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 45 import org.w3c.dom.Node;
94 * Node sibling. This is usually null, but it's possible for a single node in the
97 * {@code <merge>} tag. In this case, all the views have the same node model,
99 * views that are linked to this node. That's what this field is all about: it is
100 * a <b>circular</b> list of all the siblings that share the same node.
108 Object viewObject, UiViewElementNode node, Rectangle absRect,
114 mUiViewNode = node;
145 * Returns the view node. Could be null, although unlikely.
178 * For nodes that have multiple views rendered from a single node, such as th
565 Node node = curr.mUiViewNode.getXmlNode(); local
701 UiViewElementNode node = entry.getKey(); local
775 UiViewElementNode node = null; local
1056 UiViewElementNode node = (UiViewElementNode) child; local
    [all...]
LayoutActionBar.java 127 NodeProxy node = selections.get(0).getNode(); local
128 if (node != null && node.getParent() != null) {
129 parent = (NodeProxy) node.getParent();
PreviewIconFactory.java 55 import org.w3c.dom.Node;
158 Node node = children.item(i); local
159 if (node.getNodeType() == Node.ELEMENT_NODE) {
160 Element element = (Element) node;
322 UiElementNode node = (UiElementNode) cookie; local
323 String fileName = getFileName(node);
342 Node node = childNodes.item(i) local
    [all...]
RenderService.java 562 * Measure the children of the given parent node, applying the given filter to the
565 * @param parent the parent node to measure children for
567 * @return a map from node children of the parent to new bounds of the nodes
584 NodeProxy node = mNodeFactory.create((UiViewElementNode) cookie);
585 if (node != null) {
586 String value = filter.getAttribute(node, namespace, localName);
599 * The parser usually assumes that the top level node is a document node that
640 NodeProxy node = mNodeFactory.create(uiNode); local
641 map.put(node, new Rect(info.getLeft(), info.getTop()
    [all...]
SelectionManager.java 69 import org.w3c.dom.Node;
541 for (INode node : nodes) {
542 CanvasViewInfo info = mCanvas.getViewHierarchy().findViewInfoFor(node);
551 * Selects the visual element corresponding to the given XML node
552 * @param xmlNode The Node whose element we want to select.
554 /* package */ void select(Node xmlNode) {
557 } else if (xmlNode.getNodeType() == Node.TEXT_NODE) {
867 Node node = key == null ? null : key.getXmlNode(); local
868 if (node == null)
907 INode node = nodes.get(i); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepository.java 45 import org.w3c.dom.Node;
224 Node node = categoryNodes.item(i); local
225 if (node.getNodeType() == Node.ELEMENT_NODE) {
226 Element element = (Element) node;
232 Node childNode = children.item(j);
233 if (childNode.getNodeType() == Node.ELEMENT_NODE) {
298 Node variationNode = childNodes.item(k);
299 if (variationNode.getNodeType() == Node.ELEMENT_NODE)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
PropertyFactory.java 74 * instances applicable to a given node. It's also responsible for ordering
139 for (CanvasViewInfo node : items) {
140 intersector.intersect(getProperties(node));
148 UiViewElementNode node = item.getUiViewNode(); local
149 if (node == null) {
158 Property[] properties = mCache.get(node);
163 Collection<? extends Property> propertyList = getProperties(node);
169 mCache.put(node, properties);
175 protected Collection<? extends Property> getProperties(UiViewElementNode node) {
177 ViewElementDescriptor viewDescriptor = (ViewElementDescriptor) node.getDescriptor()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeLayoutRefactoring.java 76 import org.w3c.dom.Node;
202 Node node = children.item(i); local
203 if (node.getNodeType() == Node.ELEMENT_NODE) {
204 first = (Element) node;
366 Node node = children.item(i); local
367 if (node.getNodeType() == Node.ELEMENT_NODE)
414 Node node = children.item(i); local
433 Node node = children.item(i); local
531 Node node = children.item(i); local
    [all...]
GridLayoutConverter.java 79 import org.w3c.dom.Node;
496 Node node = info.getUiViewNode().getXmlNode(); local
497 if (node instanceof Element) {
498 return (Element) node;
843 Node parent = view.getElement().getParentNode();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 79 * For a given UI element node, the tree view displays all first-level children that
85 * selected UI element node.
95 * manipulated by this tree view. In general this is the manifest UI node. */
123 /** Listener to refresh the tree viewer when the parent's node has been updated */
125 /** Listener to enable/disable the UI based on the application node's presence */
130 * True if the root node can be created on-demand (i.e. as needed as
132 * root node. In practise, this is false for the manifest application page (the actual
133 * "application" node is managed by the ApplicationToggle part) whereas it is true
141 * given filter in the given root node.
145 * to be manipulated by this tree view. In general this is the manifest UI node or th
384 UiElementNode node; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 88 import org.w3c.dom.Node;
129 * <li> If the target XML exists, find the <resources> node and add the new string ID right after.
130 * If the node is <resources/>, it needs to be opened.
553 Node node = null; local
560 // The structured model gives the us the actual XML Node element where the
561 // offset is. By using this Node, we can find the exact UiElementNode of our
566 for(int offset = mSelectionStart; offset >= 0 && node == null; --offset) {
567 node = (Node) smodel.getIndexedRegion(offset)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 59 // All node hierarchies should be wrapped inside a document node at the root
246 // between view info and ui element node children
303 // between view info and ui element node children
346 // between view info and ui element node children
377 // Should be matched up with corresponding node:
455 UiViewElementNode node = createNode(rootNode, "childNode" + i, false); local
456 cookies.addFirst(new MergeCookie(node));
492 // Sets alternating merge cookies and checks whether the node sibling lists are
544 // Sets alternating merge cookies and checks whether the node sibling lists ar
763 UiViewElementNode node = (UiViewElementNode) cookie; local
    [all...]
  /system/core/init/
devices.c 104 struct perm_node *node = calloc(1, sizeof(*node)); local
105 if (!node)
108 node->dp.name = strdup(name);
109 if (!node->dp.name)
113 node->dp.attr = strdup(attr);
114 if (!node->dp.attr)
118 node->dp.perm = perm;
119 node->dp.uid = uid;
120 node->dp.gid = gid
135 struct listnode *node; local
195 struct listnode *node; local
272 struct listnode *node; local
308 struct listnode *node; local
324 struct listnode *node; local
    [all...]
init.c 519 struct listnode *node; local
520 node = list_head(&act->commands);
521 if (!node || list_empty(&act->commands))
524 return node_to_item(node, struct command, clist);
529 struct listnode *node; local
530 node = cmd->clist.next;
531 if (!node)
533 if (node == &act->commands)
536 return node_to_item(node, struct command, clist);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotDataGrids.js 130 var node = td.heapSnapshotNode;
137 this._dataDisplayDelegate.showObject(node.snapshotNodeId, "Dominators");
145 this._dataDisplayDelegate.showObject(node.snapshotNodeId, "Summary");
148 if (node instanceof WebInspector.HeapSnapshotRetainingObjectNode) {
151 } else if (node instanceof WebInspector.HeapSnapshotInstanceNode || node instanceof WebInspector.HeapSnapshotObjectNode) {
153 } else if (node instanceof WebInspector.HeapSnapshotDominatorObjectNode) {
181 * @param {!WebInspector.HeapSnapshotGridNode} node
183 highlightNode: function(node)
187 this._highlightedNode = node;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DOMModel.js 38 * @param {!DOMAgent.Node} payload
79 var node = new WebInspector.DOMNode(this._domModel, this.ownerDocument, true, root);
80 this._shadowRoots.push(node);
81 node.parentNode = this;
106 if (this._nodeType === Node.ELEMENT_NODE) {
112 } else if (this._nodeType === Node.DOCUMENT_TYPE_NODE) {
116 } else if (this._nodeType === Node.ATTRIBUTE_NODE) {
500 * @param {?WebInspector.DOMNode} node
502 function canPush(node)
504 return node && ("index" in node || (node.isShadowRoot() && node.parentNode)) && node._nodeName.length
1204 var node = parent._insertChild(prev, payload); variable
    [all...]
  /prebuilts/devtools/tools/lib/
rule-api.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 1000 milliseconds

<<61626364656667686970>>