Searched defs:nodeType (Results 1 - 25 of 48) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DClonerToResultTree.java132 public static void cloneToResultTree(int node, int nodeType, DTM dtm, argument
140 switch (nodeType)
168 SerializerUtils.processNSDecls(rth, node, nodeType, dtm);
/external/deqp/modules/gles3/
H A Dtes3TestCase.hpp52 TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description);
77 inline TestCase::TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description) argument
78 : tcu::TestCase (context.getTestContext(), nodeType, name, description)
/external/deqp/modules/gles31/
H A Dtes31TestCase.hpp52 TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description);
77 inline TestCase::TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description) argument
78 : tcu::TestCase (context.getTestContext(), nodeType, name, description)
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliBaseReferenceList.java44 protected SmaliBaseReferenceList(@NotNull StubT stub, @NotNull IStubElementType nodeType) { argument
45 super(stub, nodeType);
H A DSmaliStubBasedPsiElement.java45 protected SmaliStubBasedPsiElement(@NotNull T stub, @NotNull IStubElementType nodeType) { argument
46 super(stub, nodeType);
/external/guice/extensions/grapher/src/com/google/inject/grapher/
H A DNodeId.java48 private final NodeType nodeType; field in class:NodeId
50 private NodeId(Key<?> key, NodeType nodeType) { argument
52 this.nodeType = nodeType;
68 return Objects.hashCode(key, nodeType);
76 return Objects.equal(key, other.key) && Objects.equal(nodeType, other.nodeType);
80 return "NodeId{nodeType=" + nodeType + " key=" + key + "}";
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DACBTree.h51 NSInteger nodeType; /* 1 = node, 2 = leaf, -1 = unused */ variable
67 @property (assign) NSInteger nodeType; variable
/external/deqp/framework/common/
H A DtcuTestCase.cpp46 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description) argument
50 , m_nodeType (nodeType)
55 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const vector<TestNode*>& children) argument
59 , m_nodeType (nodeType)
140 TestCase::TestCase (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description) argument
141 : TestNode(testCtx, nodeType, name, description)
143 DE_ASSERT(isTestNodeTypeExecutable(nodeType));
H A DtcuTestHierarchyUtil.cpp37 static const char* getNodeTypeName (TestNodeType nodeType) argument
39 switch (nodeType)
85 const TestNodeType nodeType = node->getNodeType(); local
99 attribs[numAttribs++] = qpSetStringAttrib("CaseType", getNodeTypeName(nodeType));
H A DtcuTestHierarchyIterator.cpp107 const TestNodeType nodeType = node->getNodeType(); local
109 switch (nodeType)
H A DtcuTestSessionExecutor.cpp34 static qpTestCaseType nodeTypeToTestCaseType (TestNodeType nodeType) argument
36 switch (nodeType)
77 const TestNodeType nodeType = curNode->getNodeType(); local
80 switch (nodeType)
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRBBIRuleScanner.java997 RBBINode pushNewNode(int nodeType) { argument
1003 fNodeStack[fNodeStackPtr] = new RBBINode(nodeType);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRBBIRuleScanner.java996 RBBINode pushNewNode(int nodeType) { argument
1002 fNodeStack[fNodeStackPtr] = new RBBINode(nodeType);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseIterators.java392 * only the immediate parent, _if_ it matches the requested nodeType.
432 * @param nodeType The extended type ID being requested.
434 public TypedChildrenIterator(int nodeType) argument
436 _nodeType = nodeType;
475 int nodeType = _nodeType;
477 if (nodeType >= DTM.NTYPES) {
478 while (node != DTM.NULL && _exptype(node) != nodeType) {
485 if (eType == nodeType) {
488 } else if (m_expandedNameTable.getType(eType) == nodeType) {
651 * @param nodeType Th
653 TypedNamespaceIterator(int nodeType) argument
754 TypedRootIterator(int nodeType) argument
1031 TypedAttributeIterator(int nodeType) argument
1934 TypedDescendantIterator(int nodeType) argument
2160 TypedSingletonIterator(int nodeType) argument
[all...]
H A DDTMDefaultBase.java986 public int getTypedFirstChild(int nodeHandle, int nodeType) argument
990 if (nodeType < DTM.NTYPES) {
995 if (eType == nodeType
997 && m_expandedNameTable.getType(eType) == nodeType)) {
1005 if (_exptype(firstChild) == nodeType) {
1153 public int getTypedNextSibling(int nodeHandle, int nodeType) argument
1160 ((eType = _exptype(node)) != nodeType &&
1161 m_expandedNameTable.getType(eType)!= nodeType));
1162 //_type(node) != nodeType));
/external/deqp/executor/
H A DxeBatchExecutor.cpp310 TestNodeType nodeType = node->getNodeType(); local
312 if (nodeType != TESTNODETYPE_ROOT)
315 if (nodeType == TESTNODETYPE_ROOT || nodeType == TESTNODETYPE_GROUP)
H A DxeTestCase.cpp87 TestNode::TestNode (TestGroup* parent, TestNodeType nodeType, const char* name, const char* desc)
89 , m_nodeType (nodeType)
180 TestGroup::TestGroup (TestGroup* parent, TestNodeType nodeType, const char* name, const char* description) argument
181 : TestNode(parent, nodeType, name, description)
183 DE_ASSERT(nodeType == TESTNODETYPE_GROUP || nodeType == TESTNODETYPE_ROOT);
184 DE_ASSERT(!parent == (nodeType == TESTNODETYPE_ROOT));
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java476 protected boolean applyFilter(Node node, int nodeType) { argument
477 if (fFilter != null && (fWhatToShowFilter & nodeType) != 0) {
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM2.java180 * only the immediate parent, _if_ it matches the requested nodeType.
228 * @param nodeType The extended type ID being requested.
230 public TypedChildrenIterator(int nodeType) argument
232 _nodeType = nodeType;
272 final int nodeType = _nodeType;
274 if (nodeType != DTM.ELEMENT_NODE) {
275 while (node != DTM.NULL && _exptype2(node) != nodeType) {
279 // %OPT% If the nodeType is element (matching child::*), we only
316 final int nodeType = _nodeType;
317 if (nodeType !
359 TypedRootIterator(int nodeType) argument
562 TypedAttributeIterator(int nodeType) argument
1648 TypedDescendantIterator(int nodeType) argument
1737 TypedSingletonIterator(int nodeType) argument
[all...]
/external/pdfium/xfa/src/fxfa/src/parser/
H A Dxfa_parser_imp.cpp972 FDE_XMLNODETYPE nodeType = pXMLChild->GetType(); local
/external/libxml2/
H A Dpattern.c95 int nodeType; /* type of node */ member in struct:_xmlStreamStep
1546 const xmlChar *ns, int nodeType, int flags) {
1564 cur->nodeType = nodeType;
1845 * @nodeType: the type of the node
1859 int nodeType) {
1873 if ((nodeType == XML_ELEMENT_NODE) &&
1885 (comp->steps[0].nodeType == XML_STREAM_ANY_NODE) &&
1922 if ((nodeType != XML_ATTRIBUTE_NODE) &&
1938 if ((nodeType !
1545 xmlStreamCompAddStep(xmlStreamCompPtr comp, const xmlChar *name, const xmlChar *ns, int nodeType, int flags) argument
1857 xmlStreamPushInternal(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType) argument
2241 xmlStreamPushNode(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType) argument
[all...]
/external/guice/extensions/persist/lib/
H A Djaxen-1.1-beta-7.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jaxen/ org/jaxen/dom/ org/jaxen/dom4j/ org/ ...
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 1329 milliseconds

12