Searched refs:NODE (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
H A Dspeech_rule.js67 NODE: 'NODE',
81 case '[n]': return cvox.SpeechRule.Type.NODE;
97 case cvox.SpeechRule.Type.NODE: return '[n]';
156 case cvox.SpeechRule.Type.NODE:
H A Dspeech_rule_engine.js139 case cvox.SpeechRule.Type.NODE:
/external/lzma/C/
H A DPpmd7.c53 #define NODE(ptr) (ptr) macro
55 #define NODE(offs) ((CPpmd7_Node *)(p->Base + (offs))) macro
165 CPpmd7_Node *node = NODE(next);
167 n = NODE(n)->Prev = next;
173 NODE(head)->Stamp = 1;
174 NODE(head)->Next = n;
175 NODE(n)->Prev = head;
182 CPpmd7_Node *node = NODE(n);
186 CPpmd7_Node *node2 = NODE(n) + nu;
190 NODE(node
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dvalid.c362 #define NODE ctxt->vstate->node macro
4777 NODE = xmlValidateSkipIgnorable(NODE);
4778 if ((NODE == NULL) && (CONT == NULL))
4780 if ((NODE == NULL) &&
4786 if ((NODE != NULL) && (NODE->type == XML_ENTITY_REF_NODE))
4800 DEBUG_VALID_STATE(NODE, CONT)
4805 DEBUG_VALID_STATE(NODE, CONT)
4817 if (vstateVPush(ctxt, CONT, NODE, DEPT
[all...]
/external/libxml2/
H A Dvalid.c362 #define NODE ctxt->vstate->node macro
4777 NODE = xmlValidateSkipIgnorable(NODE);
4778 if ((NODE == NULL) && (CONT == NULL))
4780 if ((NODE == NULL) &&
4786 if ((NODE != NULL) && (NODE->type == XML_ENTITY_REF_NODE))
4800 DEBUG_VALID_STATE(NODE, CONT)
4805 DEBUG_VALID_STATE(NODE, CONT)
4817 if (vstateVPush(ctxt, CONT, NODE, DEPT
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DXPathExpressionImpl.java333 ( returnType.equals( XPathConstants.NODE ) ) ||
359 // XPathConstants.NODE
360 if ( returnType.equals( XPathConstants.NODE ) ) {
H A DXPathImpl.java236 * {@link XPathConstants#NODE NODE} or
305 ( returnType.equals( XPathConstants.NODE ) ) ||
331 // XPathConstants.NODE
332 if ( returnType.equals( XPathConstants.NODE ) ) {
/external/chromium_org/third_party/libwebp/enc/
H A Dquant.c537 #define NODE(n, l) (nodes[(n)][(l) + MIN_DELTA]) macro
618 Node* const cur = &NODE(n, m);
695 NODE(n, best_node).prev = best_path[2]; // force best-prev for terminal
698 const Node* const node = &NODE(n, best_node);
709 #undef NODE macro
/external/webp/src/enc/
H A Dquant.c537 #define NODE(n, l) (nodes[(n)][(l) + MIN_DELTA]) macro
618 Node* const cur = &NODE(n, m);
695 NODE(n, best_node).prev = best_path[2]; // force best-prev for terminal
698 const Node* const node = &NODE(n, best_node);
709 #undef NODE macro
/external/opencv/cvaux/src/
H A Dcvlcm.cpp94 #define _CV_INITIALIZE_CVLCMDATA(STRUCT,SITE,EDGE,NODE)\
95 { (STRUCT)->psite = SITE ; (STRUCT)->pedge = EDGE; (STRUCT)->pnode = NODE;}
/external/droiddriver/src/com/google/android/droiddriver/finders/
H A DByXPath.java92 Element foundNode = (Element) xPathExpression.evaluate(domNode, XPathConstants.NODE);
/external/ppp/pppd/
H A Dipxcp.c223 #define NODE(base) base[0], base[1], base[2], base[3], base[4], base[5] macro
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devsel.c410 [C(NODE)] = (CACHE_READ | CACHE_WRITE | CACHE_PREFETCH),
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromeBackgroundScript.js1053 cvox.TraverseMath.prototype.addDomainsAndStyles=function(a,b){this.allDomains.push.apply(this.allDomains,a.filter(goog.bind(function(a){return 0>this.allDomains.indexOf(a)},this)));this.allStyles.push.apply(this.allStyles,b.filter(goog.bind(function(a){return 0>this.allStyles.indexOf(a)},this)))};cvox.TraverseMath.prototype.getAttachedActiveNode=function(){var a=this.activeNode;if(!a||a.nodeType!=Node.ELEMENT_NODE)return null;a=a.getAttribute("spanID");return document.getElementById(a)};cvox.SpeechRule=function(a,b,c,d){this.name=a;this.dynamicCstr=b;this.precondition=c;this.action=d};cvox.SpeechRule.prototype.toString=function(){var a=[],b;for(b in this.dynamicCstr)a.push(this.dynamicCstr[b]);return this.name+" | "+a.join(".")+" | "+this.precondition.toString()+" ==> "+this.action.toString()};cvox.SpeechRule.Type={NODE:"NODE",MULTI:"MULTI",TEXT:"TEXT",PERSONALITY:"PERSONALITY"};
1054 cvox.SpeechRule.Type.fromString=function(a){switch(a){case "[n]":return cvox.SpeechRule.Type.NODE;case "[m]":return cvox.SpeechRule.Type.MULTI;case "[t]":return cvox.SpeechRule.Type.TEXT;case "[p]":return cvox.SpeechRule.Type.PERSONALITY;default:throw"Parse error: "+a;}};
1055 cvox.SpeechRule.Type.toString=function(a){switch(a){case cvox.SpeechRule.Type.NODE:return"[n]";case cvox.SpeechRule.Type.MULTI:return"[m]";case cvox.SpeechRule.Type.TEXT:return"[t]";case cvox.SpeechRule.Type.PERSONALITY:return"[p]";default:throw"Unknown type error: "+a;}};cvox.SpeechRule.Component=function(a){this.type=a.type;this.content=a.content};
1056 cvox.SpeechRule.Component.fromString=function(a){var b={};b.type=cvox.SpeechRule.Type.fromString(a.substring(0,3));a=a.slice(3).trimLeft();if(!a)throw new cvox.SpeechRule.OutputError("Missing content.");switch(b.type){case cvox.SpeechRule.Type.TEXT:if('"'==a[0]){var c=cvox.SpeechRule.splitString_(a,"\\(")[0].trim();if('"'!=c.slice(-1))throw new cvox.SpeechRule.OutputError("Invalid string syntax.");b.content=c;a=a.slice(c.length).trim();-1==a.indexOf("(")&&(a="");break}case cvox.SpeechRule.Type.NODE:case cvox.SpeechRule.Type.MULTI:c=
1279 cvox.SpeechRuleEngine.prototype.evaluateTree_=function(a){var b=this.activeStore_.lookupRule(a,this.dynamicCstr);if(!b)return this.activeStore_.evaluateDefault(a);for(var b=b.action.components,c=[],d=0,e;e=b[d];d++){var f=[],g=e.content||"";switch(e.type){case cvox.SpeechRule.Type.NODE:(g=this.activeStore_.applyQuery(a,g))&&(f=this.evaluateTree_(g));break;case cvox.SpeechRule.Type.MULTI:g=this.activeStore_.applySelector(a,g);0<g.length&&(f=this.evaluateNodeList_(g,e.sepFunc,this.constructString(a,
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 494 milliseconds