Home
last modified time | relevance | path

Searched refs:elem (Results 1 – 25 of 1404) sorted by relevance

12345678910>>...57

/external/tcpdump/
Dprint-snmp.c422 const u_char *p, u_int len, struct be *elem) in asn1_parse() argument
427 elem->asnlen = 0; in asn1_parse()
428 elem->type = BE_ANY; in asn1_parse()
450 elem->form = form; in asn1_parse()
451 elem->class = class; in asn1_parse()
452 elem->id = id; in asn1_parse()
481 elem->id = id = (id << 7) | GET_U_1(p); in asn1_parse()
490 elem->asnlen = GET_U_1(p); in asn1_parse()
492 if (elem->asnlen & ASN_BIT8) { in asn1_parse()
493 uint32_t noct = elem->asnlen % ASN_BIT8; in asn1_parse()
[all …]
/external/markdown/markdown/extensions/
Dattr_list.py61 def isheader(elem): argument
62 return elem.tag in ['h1', 'h2', 'h3', 'h4', 'h5', 'h6']
78 for elem in doc.iter():
79 if self.md.is_block_level(elem.tag):
82 if isheader(elem) or elem.tag in ['dt', 'td', 'th']:
85 if len(elem) and elem.tag == 'li':
89 for i, child in enumerate(elem):
93 if pos is None and elem[-1].tail:
95 m = RE.search(elem[-1].tail)
97 self.assign_attrs(elem, m.group(1))
[all …]
/external/python/cpython3/Lib/xml/etree/
DElementPath.py119 for elem in result:
120 if _isinstance(elem.tag, _str):
121 yield elem
125 for elem in result:
126 el_tag = elem.tag
128 yield elem
135 for elem in result:
136 el_tag = elem.tag
138 yield elem
144 for elem in result:
[all …]
/external/grpc-grpc/tools/codegen/core/
Dgen_static_metadata.py192 def mangle(elem, name=None): argument
231 if isinstance(elem, tuple):
232 return '%s%s_%s' % (n('mdelem'), m0(elem[0]), m0(elem[1]))
234 return '%s%s' % (n('mdstr'), m0(elem))
238 def fake_hash(elem): argument
239 return hashlib.md5(elem).hexdigest()[0:8]
258 for elem in METADATA_BATCH_CALLOUTS:
259 if elem not in all_strs:
260 all_strs.append(elem)
261 for elem in CONFIG:
[all …]
/external/mesa3d/src/util/
Dsimple_list.h54 #define remove_from_list(elem) \ argument
56 (elem)->next->prev = (elem)->prev; \
57 (elem)->prev->next = (elem)->next; \
58 make_empty_list(elem); \
67 #define insert_at_head(list, elem) \ argument
69 (elem)->prev = list; \
70 (elem)->next = (list)->next; \
71 (list)->next->prev = elem; \
72 (list)->next = elem; \
81 #define insert_at_tail(list, elem) \ argument
[all …]
/external/rust/crates/grpcio-sys/grpc/tools/codegen/core/
Dgen_static_metadata.py198 def mangle(elem, name=None): argument
237 if isinstance(elem, tuple):
238 return '%s%s_%s' % (n('mdelem'), m0(elem[0]), m0(elem[1]))
240 return '%s%s' % (n('mdstr'), m0(elem))
244 def fake_hash(elem): argument
245 return hashlib.md5(elem).hexdigest()[0:8]
264 for elem in METADATA_BATCH_CALLOUTS:
265 if elem not in all_strs:
266 all_strs.append(elem)
267 for elem in CONFIG:
[all …]
/external/python/cpython2/Lib/xml/etree/
DElementPath.py99 for elem in result:
100 for e in elem:
107 for elem in result:
108 for e in elem:
114 for elem in result:
115 yield elem
127 for elem in result:
128 for e in elem.iter(tag):
129 if e is not elem:
138 for elem in result:
[all …]
/external/mdnsresponder/mDNSShared/
DGenLinkedList.c46 void AddToTail( GenLinkedList *pList, void *elem) in AddToTail() argument
50 ASSIGNLINK( pList->Tail, elem, pList->LinkOffset); in AddToTail()
52 pList->Head = elem; in AddToTail()
53 ASSIGNLINK( elem, NULL, pList->LinkOffset); in AddToTail()
55 pList->Tail = elem; in AddToTail()
59 void AddToHead( GenLinkedList *pList, void *elem) in AddToHead() argument
62 ASSIGNLINK( elem, pList->Head, pList->LinkOffset); in AddToHead()
64 pList->Tail = elem; in AddToHead()
66 pList->Head = elem; in AddToHead()
70 int RemoveFromList( GenLinkedList *pList, void *elem) in RemoveFromList() argument
[all …]
/external/python/httplib2/doc/html/_static/
Djquery.js61 var elem = document.getElementById( match[3] );
65 if ( elem && elem.id != match[3] )
69 var ret = jQuery( elem || [] );
160 index: function( elem ) { argument
164 elem && elem.jquery ? elem[0] : elem
228 var elem = this;
230 while ( elem.firstChild )
231 elem = elem.firstChild;
233 return elem;
253 return this.domManip(arguments, true, function(elem){ argument
[all …]
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/bench/
Djquery-1.7.1.js100 var match, elem, ret, doc;
164 elem = document.getElementById( match[2] );
168 if ( elem && elem.parentNode ) {
171 if ( elem.id !== match[2] ) {
177 this[0] = elem;
305 return this.pushStack( jQuery.map(this, function( elem, i ) {
306 return callback.call( elem, i, elem );
623 nodeName: function( elem, name ) {
624 return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase();
702 inArray: function( elem, array, i ) {
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/jquery/
Djquery-3.5.1.js207 return this.pushStack( jQuery.map( this, function( elem, i ) { argument
208 return callback.call( elem, i, elem );
414 inArray: function( elem, arr, i ) { argument
415 return arr == null ? -1 : indexOf.call( arr, elem, i );
579 indexOf = function( list, elem ) { argument
583 if ( list[ i ] === elem ) {
717 function( elem ) { argument
718 return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
756 var m, i, elem, nid, match, groups, newSelector,
787 if ( ( elem = context.getElementById( m ) ) ) {
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/jquery/external/jquery/
Djquery.js207 return this.pushStack( jQuery.map( this, function( elem, i ) { argument
208 return callback.call( elem, i, elem );
414 inArray: function( elem, arr, i ) { argument
415 return arr == null ? -1 : indexOf.call( arr, elem, i );
579 indexOf = function( list, elem ) { argument
583 if ( list[ i ] === elem ) {
717 function( elem ) { argument
718 return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
756 var m, i, elem, nid, match, groups, newSelector,
787 if ( ( elem = context.getElementById( m ) ) ) {
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/jquery/
Djquery-3.5.1.js207 return this.pushStack( jQuery.map( this, function( elem, i ) { argument
208 return callback.call( elem, i, elem );
414 inArray: function( elem, arr, i ) { argument
415 return arr == null ? -1 : indexOf.call( arr, elem, i );
579 indexOf = function( list, elem ) { argument
583 if ( list[ i ] === elem ) {
717 function( elem ) { argument
718 return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
756 var m, i, elem, nid, match, groups, newSelector,
787 if ( ( elem = context.getElementById( m ) ) ) {
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/jquery/external/jquery/
Djquery.js207 return this.pushStack( jQuery.map( this, function( elem, i ) { argument
208 return callback.call( elem, i, elem );
414 inArray: function( elem, arr, i ) { argument
415 return arr == null ? -1 : indexOf.call( arr, elem, i );
579 indexOf = function( list, elem ) { argument
583 if ( list[ i ] === elem ) {
717 function( elem ) { argument
718 return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
756 var m, i, elem, nid, match, groups, newSelector,
787 if ( ( elem = context.getElementById( m ) ) ) {
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DProcessorExsltFunction.java95 StylesheetHandler handler, ElemTemplateElement elem) in appendAndPush() argument
99 super.appendAndPush(handler, elem); in appendAndPush()
101 elem.setDOMBackPointer(handler.getOriginatingNode()); in appendAndPush()
102 handler.getStylesheet().setTemplate((ElemTemplate) elem); in appendAndPush()
122 public void validate(ElemTemplateElement elem, StylesheetHandler handler) in validate() argument
126 while (elem != null) in validate()
129 if (elem instanceof ElemExsltFuncResult in validate()
130 && elem.getNextSiblingElem() != null in validate()
131 && !(elem.getNextSiblingElem() instanceof ElemFallback)) in validate()
137 if((elem instanceof ElemApplyImport in validate()
[all …]
/external/grpc-grpc/src/core/ext/filters/deadline/
Ddeadline_filter.cc50 grpc_call_element* elem = static_cast<grpc_call_element*>(arg); in send_cancel_op_in_call_combiner() local
52 static_cast<grpc_deadline_state*>(elem->call_data); in send_cancel_op_in_call_combiner()
58 elem->filter->start_transport_stream_op_batch(elem, batch); in send_cancel_op_in_call_combiner()
63 grpc_call_element* elem = static_cast<grpc_call_element*>(arg); in timer_callback() local
65 static_cast<grpc_deadline_state*>(elem->call_data); in timer_callback()
73 send_cancel_op_in_call_combiner, elem, in timer_callback()
86 static void start_timer_if_needed(grpc_call_element* elem, in start_timer_if_needed() argument
92 static_cast<grpc_deadline_state*>(elem->call_data); in start_timer_if_needed()
104 GRPC_CLOSURE_CREATE(timer_callback, elem, grpc_schedule_on_exec_ctx); in start_timer_if_needed()
110 elem, grpc_schedule_on_exec_ctx); in start_timer_if_needed()
[all …]
/external/grpc-grpc/src/core/lib/iomgr/
Dbuffer_list.cc68 TracedBuffer* elem = *head; in ProcessTimestamp() local
70 while (elem != nullptr) { in ProcessTimestamp()
73 if (serr->ee_data >= elem->seq_no_) { in ProcessTimestamp()
76 fill_gpr_from_timestamp(&(elem->ts_.scheduled_time), &(tss->ts[0])); in ProcessTimestamp()
77 elem = elem->next_; in ProcessTimestamp()
80 fill_gpr_from_timestamp(&(elem->ts_.sent_time), &(tss->ts[0])); in ProcessTimestamp()
81 elem = elem->next_; in ProcessTimestamp()
84 fill_gpr_from_timestamp(&(elem->ts_.acked_time), &(tss->ts[0])); in ProcessTimestamp()
88 timestamps_callback(elem->arg_, &(elem->ts_), GRPC_ERROR_NONE); in ProcessTimestamp()
89 next = elem->next_; in ProcessTimestamp()
[all …]
/external/pdfium/fpdfsdk/
Dfpdf_structtree.cpp89 CPDF_StructElement* elem = in FPDF_StructElement_GetAltText() local
91 return elem ? WideStringToBuffer(elem->GetAltText(), buffer, buflen) : 0; in FPDF_StructElement_GetAltText()
98 CPDF_StructElement* elem = in FPDF_StructElement_GetActualText() local
100 return elem ? WideStringToBuffer(elem->GetActualText(), buffer, buflen) : 0; in FPDF_StructElement_GetActualText()
107 CPDF_StructElement* elem = in FPDF_StructElement_GetID() local
109 if (!elem) in FPDF_StructElement_GetID()
111 absl::optional<WideString> id = elem->GetID(); in FPDF_StructElement_GetID()
121 CPDF_StructElement* elem = in FPDF_StructElement_GetLang() local
123 if (!elem) in FPDF_StructElement_GetLang()
125 absl::optional<WideString> lang = elem->GetLang(); in FPDF_StructElement_GetLang()
[all …]
/external/libxml2/result/XInclude/
Dfallback5.xml.rdr6 1 1 elem 1 0
11 1 1 elem 1 0
16 1 1 elem 1 0
21 1 1 elem 1 0
26 1 1 elem 1 0
31 1 1 elem 1 0
36 1 1 elem 1 0
41 1 1 elem 1 0
46 1 1 elem 1 0
51 1 1 elem 1 0
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/http/message_compress/
Dmessage_compress_filter.cc105 CallData(grpc_call_element* elem, const grpc_call_element_args& args) in CallData() argument
107 ChannelData* channeld = static_cast<ChannelData*>(elem->channel_data); in CallData()
117 StartSendMessageBatch, elem, grpc_schedule_on_exec_ctx); in CallData()
128 grpc_call_element* elem, grpc_transport_stream_op_batch* batch);
132 void InitializeState(grpc_call_element* elem);
135 grpc_call_element* elem, grpc_metadata_batch* initial_metadata);
141 void ContinueReadingSendMessage(grpc_call_element* elem);
142 void FinishSendMessage(grpc_call_element* elem);
143 void SendMessageBatchContinue(grpc_call_element* elem);
225 void CallData::InitializeState(grpc_call_element* elem) { in InitializeState() argument
[all …]
/external/python/cpython2/Lib/test/
Dtest_xml_etree.py112 def serialize(elem, to_string=True, **options): argument
114 tree = ET.ElementTree(elem)
123 return [elem.tag for elem in seq]
126 for elem in tree.iter():
127 if elem.text:
128 elem.text = elem.text.replace("\r\n", "\n")
129 if elem.tail:
130 elem.tail = elem.tail.replace("\r\n", "\n")
151 def serialize_check(self, elem, expected): argument
152 self.assertEqual(serialize(elem), expected)
[all …]
/external/curl/lib/vtls/
Dx509asn1.c178 static const char *getASN1Element(struct Curl_asn1Element *elem,
182 static const char *getASN1Element(struct Curl_asn1Element *elem, in getASN1Element() argument
198 elem->header = beg; in getASN1Element()
200 elem->constructed = (b & 0x20) != 0; in getASN1Element()
201 elem->class = (b >> 6) & 3; in getASN1Element()
205 elem->tag = b; in getASN1Element()
216 if(!elem->constructed) in getASN1Element()
218 elem->beg = beg; in getASN1Element()
226 elem->end = beg; in getASN1Element()
242 elem->beg = beg; in getASN1Element()
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/deadline/
Ddeadline_filter.cc41 TimerState(grpc_call_element* elem, grpc_millis deadline) : elem_(elem) { in TimerState() argument
115 static void start_timer_if_needed(grpc_call_element* elem, in start_timer_if_needed() argument
121 static_cast<grpc_deadline_state*>(elem->call_data); in start_timer_if_needed()
124 deadline_state->arena->New<grpc_core::TimerState>(elem, deadline); in start_timer_if_needed()
162 start_timer_after_init_state(grpc_call_element* elem, grpc_millis deadline) in start_timer_after_init_state()
163 : elem(elem), deadline(deadline) {} in start_timer_after_init_state()
164 ~start_timer_after_init_state() { start_timer_if_needed(elem, deadline); } in ~start_timer_after_init_state()
167 grpc_call_element* elem; member
175 static_cast<grpc_deadline_state*>(state->elem->call_data); in start_timer_after_init()
190 grpc_deadline_state::grpc_deadline_state(grpc_call_element* elem, in grpc_deadline_state() argument
[all …]
/external/grpc-grpc/src/core/ext/filters/http/message_compress/
Dmessage_compress_filter.cc85 static bool skip_compression(grpc_call_element* elem, uint32_t flags, in skip_compression() argument
87 call_data* calld = static_cast<call_data*>(elem->call_data); in skip_compression()
88 channel_data* channeld = static_cast<channel_data*>(elem->channel_data); in skip_compression()
105 grpc_call_element* elem, grpc_metadata_batch* initial_metadata,
108 grpc_call_element* elem, grpc_metadata_batch* initial_metadata, in process_send_initial_metadata() argument
110 call_data* calld = static_cast<call_data*>(elem->call_data); in process_send_initial_metadata()
111 channel_data* channeld = static_cast<channel_data*>(elem->channel_data); in process_send_initial_metadata()
201 grpc_call_element* elem = static_cast<grpc_call_element*>(arg); in send_message_on_complete() local
202 call_data* calld = static_cast<call_data*>(elem->call_data); in send_message_on_complete()
208 static void send_message_batch_continue(grpc_call_element* elem) { in send_message_batch_continue() argument
[all …]
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/fault_injection/
Dfault_injection_filter.cc86 static grpc_error_handle Init(grpc_channel_element* elem,
88 static void Destroy(grpc_channel_element* elem);
93 ChannelData(grpc_channel_element* elem, grpc_channel_element_args* args);
102 static grpc_error_handle Init(grpc_call_element* elem,
105 static void Destroy(grpc_call_element* elem,
110 grpc_call_element* elem, grpc_transport_stream_op_batch* batch);
115 CallData(grpc_call_element* elem, const grpc_call_element_args* args);
135 void DelayBatch(grpc_call_element* elem,
178 grpc_error_handle ChannelData::Init(grpc_channel_element* elem, in Init() argument
180 GPR_ASSERT(elem->filter == &FaultInjectionFilterVtable); in Init()
[all …]

12345678910>>...57