Searched refs:elem (Results 1 - 25 of 475) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXSLTVisitor.java38 * @param elem The xsl instruction element object.
41 public boolean visitInstruction(ElemTemplateElement elem) argument
49 * @param elem The xsl instruction element object.
52 public boolean visitStylesheet(ElemTemplateElement elem) argument
61 * @param elem The xsl instruction element object.
64 public boolean visitTopLevelInstruction(ElemTemplateElement elem) argument
72 * @param elem The xsl instruction element object.
75 public boolean visitTopLevelVariableOrParamDecl(ElemTemplateElement elem) argument
84 * @param elem The xsl instruction element object.
87 public boolean visitVariableOrParamDecl(ElemVariable elem) argument
98 visitLiteralResultElement(ElemLiteralResult elem) argument
109 visitAVT(AVT elem) argument
120 visitExtensionElement(ElemExtensionCall elem) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_simple_list.h43 * \param elem element to remove.
45 #define remove_from_list(elem) \
47 (elem)->next->prev = (elem)->prev; \
48 (elem)->prev->next = (elem)->next; \
49 (elem)->next = elem; \
50 (elem)->prev = elem; \
[all...]
/external/mesa3d/src/mesa/main/
H A Dsimple_list.h52 * \param elem element to remove.
54 #define remove_from_list(elem) \
56 (elem)->next->prev = (elem)->prev; \
57 (elem)->prev->next = (elem)->next; \
64 * \param elem element to insert.
66 #define insert_at_head(list, elem) \
68 (elem)->prev = list; \
69 (elem)
[all...]
/external/parameter-framework/asio/include/asio/detail/
H A Dcall_stack.hpp62 context* elem = next_; local
63 while (elem)
65 if (elem->key_ == key_)
66 return elem->value_;
67 elem = elem->next_;
91 context* elem = top_; local
92 while (elem)
94 if (elem->key_ == k)
95 return elem
104 context* elem = top_; local
[all...]
/external/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dcall_stack.hpp62 context* elem = next_; local
63 while (elem)
65 if (elem->key_ == key_)
66 return elem->value_;
67 elem = elem->next_;
91 context* elem = top_; local
92 while (elem)
94 if (elem->key_ == k)
95 return elem
104 context* elem = top_; local
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorTemplate.java39 * @param elem Must be a non-null reference to a {@link org.apache.xalan.templates.ElemTemplate} object.
45 StylesheetHandler handler, ElemTemplateElement elem)
49 super.appendAndPush(handler, elem);
50 elem.setDOMBackPointer(handler.getOriginatingNode());
51 handler.getStylesheet().setTemplate((ElemTemplate) elem);
44 appendAndPush( StylesheetHandler handler, ElemTemplateElement elem) argument
H A DProcessorExsltFunction.java95 StylesheetHandler handler, ElemTemplateElement elem)
98 //System.out.println("ProcessorFunction appendAndPush()" + elem);
99 super.appendAndPush(handler, elem);
101 elem.setDOMBackPointer(handler.getOriginatingNode());
102 handler.getStylesheet().setTemplate((ElemTemplate) elem);
122 public void validate(ElemTemplateElement elem, StylesheetHandler handler) argument
126 while (elem != null)
128 //System.out.println("elem " + elem);
129 if (elem instanceo
94 appendAndPush( StylesheetHandler handler, ElemTemplateElement elem) argument
[all...]
H A DProcessorTemplateElem.java59 ElemTemplateElement elem = null;
63 elem = (ElemTemplateElement) classObject.newInstance();
65 elem.setDOMBackPointer(handler.getOriginatingNode());
66 elem.setLocaterInfo(handler.getLocator());
67 elem.setPrefixes(handler.getNamespaceSupport());
78 setPropertiesFromAttributes(handler, rawName, attributes, elem);
79 appendAndPush(handler, elem);
93 * @param elem non-null reference to a the current template element.
99 StylesheetHandler handler, ElemTemplateElement elem)
106 parent.appendChild(elem);
98 appendAndPush( StylesheetHandler handler, ElemTemplateElement elem) argument
[all...]
H A DProcessorText.java41 * @param elem non-null reference to a {@link org.apache.xalan.templates.ElemText}.
47 StylesheetHandler handler, ElemTemplateElement elem)
55 charProcessor.setXslTextElement((ElemText) elem);
59 parent.appendChild(elem);
60 elem.setDOMBackPointer(handler.getOriginatingNode());
46 appendAndPush( StylesheetHandler handler, ElemTemplateElement elem) argument
/external/autotest/frontend/client/src/autotest/common/
H A DDomUtils.java6 public static void clearDomChildren(Element elem) { argument
7 Element child = elem.getFirstChildElement();
10 elem.removeChild(child);
/external/mdnsresponder/mDNSShared/
H A DGenLinkedList.c46 void AddToTail( GenLinkedList *pList, void *elem) argument
50 ASSIGNLINK( pList->Tail, elem, pList->LinkOffset);
52 pList->Head = elem;
53 ASSIGNLINK( elem, NULL, pList->LinkOffset);
55 pList->Tail = elem;
59 void AddToHead( GenLinkedList *pList, void *elem) argument
62 ASSIGNLINK( elem, pList->Head, pList->LinkOffset);
64 pList->Tail = elem;
66 pList->Head = elem;
70 int RemoveFromList( GenLinkedList *pList, void *elem) argument
140 DLLAddToHead( GenDoubleLinkedList *pList, void *elem) argument
160 DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem) argument
194 AssignOffsetLink( void *elem, void *link, size_t linkOffset) argument
215 GetOffsetLink( GenLinkedOffsetList *pList, void *elem) argument
235 OffsetAddToTail( GenLinkedOffsetList *pList, void *elem) argument
239 AssignOffsetLink( GetTailPtr( pList), elem, pList->LinkOffset); local
248 OffsetAddToHead( GenLinkedOffsetList *pList, void *elem) argument
259 OffsetRemoveFromList( GenLinkedOffsetList *pList, void *elem) argument
[all...]
H A DGenLinkedList.h36 void AddToHead( GenLinkedList *pList, void *elem);
37 void AddToTail( GenLinkedList *pList, void *elem);
39 int RemoveFromList( GenLinkedList *pList, void *elem);
58 void DLLAddToHead( GenDoubleLinkedList *pList, void *elem);
60 void DLLRemoveFromList( GenDoubleLinkedList *pList, void *elem);
80 void *GetOffsetLink( GenLinkedOffsetList *pList, void *elem);
82 void OffsetAddToHead( GenLinkedOffsetList *pList, void *elem);
83 void OffsetAddToTail( GenLinkedOffsetList *pList, void *elem);
85 int OffsetRemoveFromList( GenLinkedOffsetList *pList, void *elem);
/external/skia/src/sfnt/
H A DSkTypedEnum.h39 #define SK_TYPED_ENUM_VALUES(data, elem) \
40 SK_PAIR_FIRST(elem) = SK_PAIR_SECOND(elem),
42 #define SK_TYPED_ENUM_IDS(data, elem) \
43 elem,
45 #define SK_TYPED_ENUM_IDS_L(data, elem) \
46 elem
55 #define SK_TYPED_ENUM_VALUES(enumType, elem) \
56 static const enumType SK_PAIR_FIRST(elem) = SK_PAIR_SECOND(elem);
[all...]
/external/tcpdump/
H A Dprint-snmp.c404 register const u_char *p, u_int len, struct be *elem)
409 elem->asnlen = 0;
410 elem->type = BE_ANY;
433 elem->form = form;
434 elem->class = class;
435 elem->id = id;
462 elem->id = id = (id << 7) | *p;
472 elem->asnlen = *p;
474 if (elem->asnlen & ASN_BIT8) {
475 uint32_t noct = elem
403 asn1_parse(netdissect_options *ndo, register const u_char *p, u_int len, struct be *elem) argument
661 asn1_print(netdissect_options *ndo, struct be *elem) argument
849 struct be elem; local
894 smi_decode_oid(netdissect_options *ndo, struct be *elem, unsigned int *oid, unsigned int oidsize, unsigned int *oidlen) argument
947 smi_check_a_range(SmiType *smiType, SmiRange *smiRange, struct be *elem) argument
997 smi_check_range(SmiType *smiType, struct be *elem) argument
1025 smi_print_variable(netdissect_options *ndo, struct be *elem, int *status) argument
1055 smi_print_value(netdissect_options *ndo, SmiNode *smiNode, u_char pduid, struct be *elem) argument
1201 struct be elem; local
1298 struct be elem; local
1378 struct be elem; local
1531 struct be elem; local
1585 struct be elem; local
1615 struct be elem; local
1712 struct be elem; local
1849 struct be elem; local
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-member.cpp29 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "virt<elem>"
46 // CHECK: [[ELEM:![0-9]*]] = !DICompositeType(tag: DW_TAG_structure_type, name: "elem"
92 struct elem { struct
93 static virt<elem> x; // ensure that completing 'elem' will require/completing 'virt<elem>'
96 elem e; // ensure 'elem' is required to be complete when it is emitted as a template argument for 'virt<elem>'
99 virt<elem>
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeThreadSafeRingBuffer.hpp43 void pushFront (const T& elem);
44 bool tryPushFront (const T& elem);
49 void pushFrontInternal (const T& elem);
79 inline void ThreadSafeRingBuffer<T>::pushFrontInternal (const T& elem) argument
81 m_buffer[m_front] = elem;
94 void ThreadSafeRingBuffer<T>::pushFront (const T& elem) argument
98 pushFrontInternal(elem);
104 bool ThreadSafeRingBuffer<T>::tryPushFront (const T& elem) argument
111 pushFrontInternal(elem);
123 T elem local
[all...]
/external/libxml2/python/tests/
H A Dattribs.py20 elem = doc.getRootElement() variable
21 attr = elem.hasNsProp('attr', 'http://abc.org')
H A Dbuild.py16 elem = root.newChild(None, "foo", "bar") variable
17 elem.setBase("http://example.com/imgs")
18 elem.setProp("img", "image.gif")
40 elem = root.children variable
41 if elem.name != "foo":
42 print("error rereading elem")
44 if elem.getBase(None) != "http://example.com/imgs":
47 if elem.prop("img") != "image.gif":
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_resolve_map.c86 intel_resolve_map_remove(struct intel_resolve_map *elem) argument
88 if (elem->prev)
89 elem->prev->next = elem->next;
90 if (elem->next)
91 elem->next->prev = elem->prev;
92 free(elem);
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_resolve_map.c86 intel_resolve_map_remove(struct intel_resolve_map *elem) argument
88 if (elem->prev)
89 elem->prev->next = elem->next;
90 if (elem->next)
91 elem->next->prev = elem->prev;
92 free(elem);
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_resolve_map.c86 intel_resolve_map_remove(struct intel_resolve_map *elem) argument
88 if (elem->prev)
89 elem->prev->next = elem->next;
90 if (elem->next)
91 elem->next->prev = elem->prev;
92 free(elem);
/external/strace/
H A Dstrace-graph252 for $elem (@$seq) {
253 if ($$elem[0] eq 'EXEC') {
254 my $argv = $$elem[2];
255 print "$$elem[0] $$elem[1] @$argv\n";
256 } elsif ($$elem[0] eq 'FORK') {
257 print "$$elem[0] $$elem[1]\n";
259 print "$$elem[0]\n";
268 for $elem (
[all...]
/external/chromium-trace/catapult/third_party/flot/
H A Djquery.js98 var match, elem, ret, doc;
140 elem = document.getElementById( match[2] );
144 if ( elem && elem.parentNode ) {
147 if ( elem.id !== match[2] ) {
153 this[0] = elem;
272 return this.pushStack( jQuery.map(this, function( elem, i ) {
273 return callback.call( elem, i, elem );
575 nodeName: function( elem, nam
[all...]
H A Djquery.min.js1 (function(window,undefined){var rootjQuery,readyList,document=window.document,location=window.location,navigator=window.navigator,_jQuery=window.jQuery,_$=window.$,core_push=Array.prototype.push,core_slice=Array.prototype.slice,core_indexOf=Array.prototype.indexOf,core_toString=Object.prototype.toString,core_hasOwn=Object.prototype.hasOwnProperty,core_trim=String.prototype.trim,jQuery=function(selector,context){return new jQuery.fn.init(selector,context,rootjQuery)},core_pnum=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,core_rnotwhite=/\S/,core_rspace=/\s+/,rtrim=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,rquickExpr=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,rvalidchars=/^[\],:{}\s]*$/,rvalidbraces=/(?:^|:|,)(?:\s*\[)+/g,rvalidescape=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,rvalidtokens=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,rmsPrefix=/^-ms-/,rdashAlpha=/-([\da-z])/gi,fcamelCase=function(all,letter){return(letter+"").toUpperCase()},DOMContentLoaded=function(){if(document.addEventListener){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);jQuery.ready()}else if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);jQuery.ready()}},class2type={};jQuery.fn=jQuery.prototype={constructor:jQuery,init:function(selector,context,rootjQuery){var match,elem,ret,doc;if(!selector){return this}if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this}if(typeof selector==="string"){if(selector.charAt(0)==="<"&&selector.charAt(selector.length-1)===">"&&selector.length>=3){match=[null,selector,null]}else{match=rquickExpr.exec(selector)}if(match&&(match[1]||!context)){if(match[1]){context=context instanceof jQuery?context[0]:context;doc=context&&context.nodeType?context.ownerDocument||context:document;selector=jQuery.parseHTML(match[1],doc,true);if(rsingleTag.test(match[1])&&jQuery.isPlainObject(context)){this.attr.call(selector,context,true)}return jQuery.merge(this,selector)}else{elem=document.getElementById(match[2]);if(elem&&elem.parentNode){if(elem.id!==match[2]){return rootjQuery.find(selector)}this.length=1;this[0]=elem}this.context=document;this.selector=selector;return this}}else if(!context||context.jquery){return(context||rootjQuery).find(selector)}else{return this.constructor(context).find(selector)}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector)}if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context}return jQuery.makeArray(selector,this)},selector:"",jquery:"1.8.3",length:0,size:function(){return this.length},toArray:function(){return core_slice.call(this)},get:function(num){return num==null?this.toArray():num<0?this[this.length+num]:this[num]},pushStack:function(elems,name,selector){var ret=jQuery.merge(this.constructor(),elems);ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector}else if(name){ret.selector=this.selector+"."+name+"("+selector+")"}return ret},each:function(callback,args){return jQuery.each(this,callback,args)},ready:function(fn){jQuery.ready.promise().done(fn);return this},eq:function(i){i=+i;return i===-1?this.slice(i):this.slice(i,i+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(core_slice.apply(this,arguments),"slice",core_slice.call(arguments).join(","))},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem)}))},end:function(){return this.prevObject||this.constructor(null)},push:core_push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var options,name,src,copy,copyIsArray,clone,target=arguments[0]||{},i=1,length=arguments.length,deep=false;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2}if(typeof target!=="object"&&!jQuery.isFunction(target)){target={}}if(length===i){target=this;--i}for(;i<length;i++){if((options=arguments[i])!=null){for(name in options){src=target[name];copy=options[name];if(target===copy){continue}if(deep&&copy&&(jQuery.isPlainObject(copy)||(copyIsArray=jQuery.isArray(copy)))){if(copyIsArray){copyIsArray=false;clone=src&&jQuery.isArray(src)?src:[]}else{clone=src&&jQuery.isPlainObject(src)?src:{}}target[name]=jQuery.extend(deep,clone,copy)}else if(copy!==undefined){target[name]=copy}}}}return target};jQuery.extend({noConflict:function(deep){if(window.$===jQuery){window.$=_$}if(deep&&window.jQuery===jQuery){window.jQuery=_jQuery}return jQuery},isReady:false,readyWait:1,holdReady:function(hold){if(hold){jQuery.readyWait++}else{jQuery.ready(true)}},ready:function(wait){if(wait===true?--jQuery.readyWait:jQuery.isReady){return}if(!document.body){return setTimeout(jQuery.ready,1)}jQuery.isReady=true;if(wait!==true&&--jQuery.readyWait>0){return}readyList.resolveWith(document,[jQuery]);if(jQuery.fn.trigger){jQuery(document).trigger("ready").off("ready")}},isFunction:function(obj){return jQuery.type(obj)==="function"},isArray:Array.isArray||function(obj){return jQuery.type(obj)==="array"},isWindow:function(obj){return obj!=null&&obj==obj.window},isNumeric:function(obj){return!isNaN(parseFloat(obj))&&isFinite(obj)},type:function(obj){return obj==null?String(obj):class2type[core_toString.call(obj)]||"object"},isPlainObject:function(obj){if(!obj||jQuery.type(obj)!=="object"||obj.nodeType||jQuery.isWindow(obj)){return false}try{if(obj.constructor&&!core_hasOwn.call(obj,"constructor")&&!core_hasOwn.call(obj.constructor.prototype,"isPrototypeOf")){return false}}catch(e){return false}var key;for(key in obj){}return key===undefined||core_hasOwn.call(obj,key)},isEmptyObject:function(obj){var name;for(name in obj){return false}return true},error:function(msg){throw new Error(msg)},parseHTML:function(data,context,scripts){var parsed;if(!data||typeof data!=="string"){return null}if(typeof context==="boolean"){scripts=context;context=0}context=context||document;if(parsed=rsingleTag.exec(data)){return[context.createElement(parsed[1])]}parsed=jQuery.buildFragment([data],context,scripts?null:[]);return jQuery.merge([],(parsed.cacheable?jQuery.clone(parsed.fragment):parsed.fragment).childNodes)},parseJSON:function(data){if(!data||typeof data!=="string"){return null}data=jQuery.trim(data);if(window.JSON&&window.JSON.parse){return window.JSON.parse(data)}if(rvalidchars.test(data.replace(rvalidescape,"@").replace(rvalidtokens,"]").replace(rvalidbraces,""))){return new Function("return "+data)()}jQuery.error("Invalid JSON: "+data)},parseXML:function(data){var xml,tmp;if(!data||typeof data!=="string"){return null}try{if(window.DOMParser){tmp=new DOMParser;xml=tmp.parseFromString(data,"text/xml")}else{xml=new ActiveXObject("Microsoft.XMLDOM");xml.async="false";xml.loadXML(data)}}catch(e){xml=undefined}if(!xml||!xml.documentElement||xml.getElementsByTagName("parsererror").length){jQuery.error("Invalid XML: "+data)}return xml},noop:function(){},globalEval:function(data){if(data&&core_rnotwhite.test(data)){(window.execScript||function(data){window["eval"].call(window,data)})(data)}},camelCase:function(string){return string.replace(rmsPrefix,"ms-").replace(rdashAlpha,fcamelCase)},nodeName:function(elem,nam
[all...]
/external/chromium-trace/catapult/third_party/jquery/
H A Djquery-2.1.4.js143 return this.pushStack( jQuery.map(this, function( elem, i ) {
144 return callback.call( elem, i, elem );
340 nodeName: function( elem, name ) {
341 return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
419 inArray: function( elem, arr, i ) {
420 return arr == null ? -1 : indexOf.call( arr, elem, i );
615 indexOf = function( list, elem ) {
619 if ( list[i] === elem ) {
[all...]

Completed in 867 milliseconds

1234567891011>>