Home
last modified time | relevance | path

Searched refs:testNode (Results 1 – 7 of 7) sorted by relevance

/external/jmonkeyengine/engine/src/test/jme3test/scene/
DTestUserData.java50 Spatial testNode = scene.getChild("TestNode"); in simpleInitApp() local
51 System.out.println("TestNode: "+ testNode); in simpleInitApp()
53 for (String key : testNode.getUserDataKeys()){ in simpleInitApp()
54 System.out.println("Property " + key + " = " + testNode.getUserData(key)); in simpleInitApp()
/external/deqp/executor/tools/
DxeBatchResultToXml.cpp283 static void writeTestCaseListNode (const xe::TestNode* testNode, const ShortTestResultMap& resultMa… in writeTestCaseListNode() argument
287 bool isGroup = testNode->getNodeType() == xe::TESTNODETYPE_GROUP; in writeTestCaseListNode()
289 testNode->getFullPath(fullPath); in writeTestCaseListNode()
293 const xe::TestGroup* group = static_cast<const xe::TestGroup*>(testNode); in writeTestCaseListNode()
296 << Writer::Attribute("Name", testNode->getName()); in writeTestCaseListNode()
305 DE_ASSERT(testNode->getNodeType() == xe::TESTNODETYPE_TEST_CASE); in writeTestCaseListNode()
307 const xe::TestCase* testCase = static_cast<const xe::TestCase*>(testNode); in writeTestCaseListNode()
314 << Writer::Attribute("Name", testNode->getName()) in writeTestCaseListNode()
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DKeyIterator.java100 public short acceptNode(int testNode) in acceptNode() argument
129 double score = matchExpr.getMatchScore(xctxt, testNode); in acceptNode()
/external/chromium-trace/trace-viewer/tracing/third_party/css-element-queries/test/
Dmootools-core-full-nocompat.js1795 var testNode = document.createElement('div');
1798 testRoot.appendChild(testNode);
1802 testNode.innerHTML = '<a id="'+id+'"></a>';
1808 testNode.style.display = 'none';
1811 testNode.appendChild(document.createComment(''));
1812 starSelectsComments = (testNode.getElementsByTagName('*').length > 1);
1816 testNode.innerHTML = 'foo</foo>';
1817 selected = testNode.getElementsByTagName('*');
1825 testNode.innerHTML = '<a name="'+ id +'"></a><b id="'+ id +'"></b>';
1826 features.idGetsName = document.getElementById(id) === testNode.firstChild;
[all …]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestTreeIterator.java40 @Test public void testNode() { in testNode() method in TestTreeIterator
/external/v8/test/cctest/
Dtest-cpu-profiler.cc1216 const v8::CpuProfileNode* testNode = in TEST() local
1218 if (testNode) { in TEST()
1225 CheckChildrenNames(testNode, names); in TEST()
/external/antlr/antlr-3.4/runtime/Python/unittests/
Dtesttree.py1267 def testNode(self): member in TestTreeIterator