Home
last modified time | relevance | path

Searched refs:sNode (Results 1 – 6 of 6) sorted by relevance

/external/subsampling-scale-image-view/docs/javadoc/
Dscript.js19 var sNode = document.getElementById(tabs[value][0]);
20 var spanNode = sNode.firstChild;
22 sNode.className = activeTableTab;
26 sNode.className = tableTab;
/external/libjpeg-turbo/java/doc/
Dscript.js19 var sNode = document.getElementById(tabs[value][0]);
20 var spanNode = sNode.firstChild;
22 sNode.className = activeTableTab;
26 sNode.className = tableTab;
/external/cldr/tools/java/org/unicode/cldr/util/
DLDMLUtilities.java1709 public static Node getAttributeNode(Node sNode, String attribName) { in getAttributeNode() argument
1710 NamedNodeMap attrs = sNode.getAttributes(); in getAttributeNode()
1725 public static String getAttributeValue(Node sNode, String attribName) { in getAttributeValue() argument
1727 NamedNodeMap attrs = sNode.getAttributes(); in getAttributeValue()
1745 public static void setAttributeValue(Node sNode, String attribName, String val) { in setAttributeValue() argument
1747 Node attr = sNode.getAttributes().getNamedItem(attribName); in setAttributeValue()
1751 attr = sNode.getOwnerDocument().createAttribute(attribName); in setAttributeValue()
1753 sNode.getAttributes().setNamedItem(attr); in setAttributeValue()
/external/antlr/runtime/ObjC/Framework/
DACBTree.m143 ACBTree *told, *sNode;
154 sNode = [self search:dkp.key];
155 if ( sNode == nil || [sNode searchnode:dkp.key match:YES] == FAILURE ) {
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
DXLIFF2ICUConverter.java807 private String getAttributeValue(Node sNode, String attribName){ in getAttributeValue() argument
809 Node node = sNode; in getAttributeValue()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp11351 SEMAPHORE_NODE *sNode = &device_data->semaphoreMap[*pSemaphore]; in PostCallRecordCreateSemaphore() local
11352 sNode->signaler.first = VK_NULL_HANDLE; in PostCallRecordCreateSemaphore()
11353 sNode->signaler.second = 0; in PostCallRecordCreateSemaphore()
11354 sNode->signaled = false; in PostCallRecordCreateSemaphore()
11355 sNode->scope = kSyncScopeInternal; in PostCallRecordCreateSemaphore()