OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:xmlNode
(Results
1 - 14
of
14
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/resources/uimodel/
UiItemElementNode.java
44
Node
xmlNode
= getXmlNode();
45
if (
xmlNode
!= null &&
xmlNode
instanceof Element &&
xmlNode
.hasAttributes()) {
47
Element elem = (Element)
xmlNode
;
/external/chromium/chrome/browser/metrics/
metrics_service.h
43
// Forward declaration of the
xmlNode
to avoid having tons of gyp files
46
typedef struct _xmlNode
xmlNode
;
47
typedef
xmlNode
* xmlNodePtr;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ListViewTypeMenu.java
214
Node
xmlNode
= node.getXmlNode();
215
layout = metadata.getProperty(editor,
xmlNode
, KEY_LV_ITEM);
231
Node
xmlNode
= node.getXmlNode();
232
metadata.setProperty(editor,
xmlNode
, type, layout);
FragmentMenu.java
234
Node
xmlNode
= node.getXmlNode();
235
metadata.setProperty(editor,
xmlNode
, KEY_FRAGMENT_LAYOUT, layout);
LayoutMetadata.java
335
Node
xmlNode
= uiNode.getXmlNode();
337
String header = getProperty(editor,
xmlNode
, KEY_LV_HEADER);
338
String footer = getProperty(editor,
xmlNode
, KEY_LV_FOOTER);
339
String layout = getProperty(editor,
xmlNode
, KEY_LV_ITEM);
344
if (
xmlNode
instanceof Element &&
xmlNode
.getNodeName().endsWith(GRID_VIEW)) {
345
Element element = (Element)
xmlNode
;
OutlinePage.java
525
Node
xmlNode
= node.getXmlNode();
526
if (
xmlNode
instanceof Element) {
527
Element e = (Element)
xmlNode
;
[
all
...]
LayoutCanvas.java
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java
146
Node
xmlNode
= uiNode.getXmlNode();
148
if (
xmlNode
!= null) {
149
return
xmlNode
.getAttributes().item(i);
348
Node
xmlNode
= uiNode.getXmlNode();
350
if (
xmlNode
!= null) {
351
if (localName.equals(ATTR_LAYOUT) &&
xmlNode
.getNodeName().equals(VIEW_FRAGMENT)) {
352
String layout = FragmentMenu.getFragmentLayout(
xmlNode
);
358
Node attribute =
xmlNode
.getAttributes().getNamedItemNS(namespace, localName);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiActions.java
276
Node
xmlNode
= uiNode.getXmlNode();
278
if (
xmlNode
== null || nodeDesc == null) {
305
xmlPrev.appendChild(xmlParent.removeChild(
xmlNode
));
306
outSelectXmlNode[0] =
xmlNode
;
314
xmlParent.removeChild(
xmlNode
),
316
outSelectXmlNode[0] =
xmlNode
;
338
xmlParent.removeChild(
xmlNode
),
340
outSelectXmlNode[0] =
xmlNode
;
457
Node
xmlNode
= uiNode.getXmlNode();
459
if (
xmlNode
== null || nodeDesc == null)
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java
279
Node
xmlNode
= uiNew.createXmlNode();
281
if (!(uiNew instanceof UiViewElementNode) ||
xmlNode
== null) {
344
Node
xmlNode
= uiNode.getXmlNode();
345
if (
xmlNode
!= null) {
346
NamedNodeMap nodeAttributes =
xmlNode
.getAttributes();
404
Node
xmlNode
= uiNode.getXmlNode();
405
if (
xmlNode
!= null) {
406
NamedNodeMap nodeAttributes =
xmlNode
.getAttributes();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoring.java
157
Node
xmlNode
= uiNode.getXmlNode();
158
if (
xmlNode
.getLocalName().equals(LayoutDescriptors.VIEW_INCLUDE)) {
VisualRefactoring.java
204
Node
xmlNode
= uiNode.getXmlNode();
205
if (
xmlNode
instanceof IndexedRegion) {
206
IndexedRegion region = (IndexedRegion)
xmlNode
;
671
Node
xmlNode
= uiNode.getXmlNode();
672
if (
xmlNode
instanceof Element) {
673
Element element = (Element)
xmlNode
;
[
all
...]
/external/libxml2/include/libxml/
tree.h
444
*
xmlNode
:
448
typedef struct _xmlNode
xmlNode
;
449
typedef
xmlNode
*xmlNodePtr;
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java
785
* @param
xmlNode
The XML node to look for.
786
* @return The {@link UiElementNode} that contains
xmlNode
or null if not found,
788
public UiElementNode findXmlNode(Node
xmlNode
) {
789
if (
xmlNode
== null) {
792
if (getXmlNode() ==
xmlNode
) {
797
UiElementNode found = uiChild.findXmlNode(
xmlNode
);
827
* @param
xmlNode
The XML node to mirro
[
all
...]
Completed in 757 milliseconds