Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/resources/sync_internals/
Dsync_node_browser.js28 function getSyncNodeChildren(nodeInfo, callback) { argument
38 chrome.sync.getNodeById(nodeInfo.firstChildId, processChildInfo);
47 function makeNodeTreeItem(nodeInfo) { argument
49 label: nodeInfo.title,
50 detail: nodeInfo
53 if (nodeInfo.isFolder) {
61 getSyncNodeChildren(nodeInfo, function(children) {
81 function updateNodeDetailView(nodeInfo) { argument
84 if (typeof nodeInfo.entry != 'string')
85 nodeInfo.entry = JSON.stringify(nodeInfo.entry, null, 2);
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DBottomUpProfileDataGridTree.js98 var nodeInfo = remainingNodeInfos[index];
99 var ancestor = nodeInfo.ancestor;
100 var focusNode = nodeInfo.focusNode;
105 var totalTimeAccountedFor = nodeInfo.totalTimeAccountedFor;
129 nodeInfo.ancestor = parent;
130 child._remainingNodeInfos.push(nodeInfo);
/external/bison/tests/
Dcxx-type.at41 } nodeInfo;
242 child0->nodeInfo.parents += 1;
245 child1->nodeInfo.parents += 1;
248 child2->nodeInfo.parents += 1;
267 node->nodeInfo.parents -= 1;
269 if (node->nodeInfo.parents > 0)
271 if (node->nodeInfo.isNterm == 1)
294 else if (node->nodeInfo.isNterm == 1)
Dtestsuite60269 } nodeInfo;
60469 child0->nodeInfo.parents += 1;
60472 child1->nodeInfo.parents += 1;
60475 child2->nodeInfo.parents += 1;
60494 node->nodeInfo.parents -= 1;
60496 if (node->nodeInfo.parents > 0)
60498 if (node->nodeInfo.isNterm == 1)
60521 else if (node->nodeInfo.isNterm == 1)
61222 } nodeInfo;
61422 child0->nodeInfo.parents += 1;
[all …]
/external/libxml2/
DHTMLparser.c238 ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr]; in htmlNodeInfoPush()
259 ctxt->nodeInfo = &ctxt->nodeInfoTab[ctxt->nodeInfoNr - 1]; in htmlNodeInfoPop()
261 ctxt->nodeInfo = NULL; in htmlNodeInfoPop()
4270 ctxt->nodeInfo->end_pos = ctxt->input->consumed + in htmlParserFinishElementParsing()
4272 ctxt->nodeInfo->end_line = ctxt->input->line; in htmlParserFinishElementParsing()
4273 ctxt->nodeInfo->node = ctxt->node; in htmlParserFinishElementParsing()
4274 xmlParserAddNodeInfo(ctxt, ctxt->nodeInfo); in htmlParserFinishElementParsing()
/external/libxml2/include/libxml/
Dparser.h307 xmlParserNodeInfo *nodeInfo; /* Current NodeInfo */ member
/external/bison/
DChangeLog966 (_AT_TEST_GLR_CXXTYPES): In union Node, rename node_info to nodeInfo