Searched defs:item (Results 1 - 25 of 815) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DStackList.cs52 public void Push(object item) argument
54 Add(item);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DListStack`1.cs47 T item;
48 if (!TryPeek(depth, out item))
51 return item;
54 public bool TryPeek(out T item) argument
56 return TryPeek(0, out item);
59 public bool TryPeek(int depth, out T item) argument
63 item = default(T);
67 item = this[Count - depth - 1];
80 public bool TryPop(out T item) argument
84 item
93 Push(T item) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemLiteralResult.java646 * Returns the <code>index</code>th item in the map. If <code>index
649 * @param i The index of the requested item.
653 public Node item(int i) method in class:ElemLiteralResult.LiteralElementAttributes
794 public Node item(int index){
H A DElemTemplateElement.java561 public Node item(int index) method in class:ElemTemplateElement
575 } // item(int):Node
1597 return (ExpressionNode)item(i);
H A DTemplateList.java218 * @param item The item that we want to insert into the proper place.
225 TemplateSubPatternAssociation item,
233 double priority = getPriorityOrScore(item);
235 int importLevel = item.getImportLevel();
236 int docOrder = item.getDocOrderPos();
301 item.setNext(insertPoint);
305 item.setTargetString(key);
306 putHead(key, item);
307 return item;
224 insertAssociationIntoList(TemplateSubPatternAssociation head, TemplateSubPatternAssociation item, boolean isWildCardInsert) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMIterator.java271 * Returns the <code>node handle</code> of an item in the collection. If
275 * @param index of the item.
280 public int item(int index); method in interface:DTMIterator
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMAxisIterNodeList.java96 * Returns the <code>index</code>th item in the collection. If
104 public Node item(int index) { method in class:DTMAxisIterNodeList
H A DDTMChildIterNodeList.java87 * Returns the <code>index</code>th item in the collection. If
95 public Node item(int index) { method in class:DTMChildIterNodeList
H A DDTMNamedNodeMap.java113 * Returns the <code>index</code>th item in the map. If <code>index</code>
116 * @param i The index of the requested item.
120 public Node item(int i) method in class:DTMNamedNodeMap
H A DDTMNodeList.java99 * Returns the <code>index</code>th item in the collection. If
107 public Node item(int index) method in class:DTMNodeList
110 int handle=m_iter.item(index);
H A DDTMNodeListBase.java62 * Returns the <code>index</code>th item in the collection. If
70 public Node item(int index) { method in class:DTMNodeListBase
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMStringListImpl.java65 * @see org.apache.xerces.dom3.DOMStringList#item(int)
67 public String item(int index) { method in class:DOMStringListImpl
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java213 public Node item(int index) method in class:UnImplNode
216 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"item not supported!");
219 } // item(int):Node
1395 Node attr = map.item(i);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSet.java336 * Returns the <code>index</code>th item in the collection. If
347 public Node item(int index) method in class:NodeSet
443 Node obj = nodelist.item(i);
526 Node node = nodelist.item(i);
580 Node node = nodelist.item(testIndex);
680 if (this.item(i).equals(node))
H A DNodeSetDTM.java170 Node node = nodeList.item(i);
220 return item(0);
492 * Returns the <code>index</code>th item in the collection. If
503 public int item(int index) method in class:NodeSetDTM
600 // int obj = nodelist.item(i);
685 // int node = nodelist.item(i);
740 // int node = nodelist.item(testIndex);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DLocPathIterator.java469 * Returns the <code>index</code> th item in the collection. If
477 public int item(int index) method in class:LocPathIterator
479 assertion(false, "item(int index) not supported by this iterator!");
H A DNodeSequence.java381 return item(m_next);
525 * @see DTMIterator#item(int)
527 public int item(int index) method in class:NodeSequence
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DXPathExpressionImpl.java97 public Object eval(Object item, QName returnType) argument
99 XObject resultObject = eval ( item );
139 * for context item evaluation,
147 * <code>item</code>, an empty document will be used for the
152 * @param item The starting context (node or node list, for example).
165 public Object evaluate(Object item, QName returnType) argument
184 return eval( item, returnType);
207 * <p>This method calls {@link #evaluate(Object item, QName returnType)}
212 * for context item evaluation,
216 * <code>item</cod
227 evaluate(Object item) argument
[all...]
H A DXPathImpl.java214 // If item is null, then we will create a a Dummy contextNode
229 * for context item evaluation,
241 * <code>item</code>, an empty document will be used for the
247 * @param item The starting context (node or node list, for example).
256 public Object evaluate(String expression, Object item, QName returnType) argument
281 XObject resultObject = eval( expression, item );
348 * <p>This method calls {@link #evaluate(String expression, Object item, QName returnType)} with a <code>returnType</code> of
352 * for context item evaluation,
356 * <code>item</code>, an empty document will be used for the
361 * @param item Th
369 evaluate(String expression, Object item) argument
[all...]
/external/bison/src/
H A DAnnotationList.c91 * item bitsets interpreted as binary numbers.
124 size_t item; local
125 for (item = 0; cmp == 0 && item < nitems; ++item)
127 if (!Sbitset__test (self->contributions[ci], item))
129 if (Sbitset__test ((*node)->contributions[ci], item))
132 else if (!Sbitset__test ((*node)->contributions[ci], item))
208 bitset_bindex item; local
209 BITSET_FOR_EACH (biter_item, follow_kernel_items[lhs_goto], item,
643 Sbitset__Index item; local
683 Sbitset__Index item; local
[all...]
H A DLR0.c116 appears as an item, which is SYMBOL_COUNT[S].
168 | points to a vector of item numbers activated if that symbol is |
171 | itemset is sorted on item index in ritem, which is sorted on |
279 item_number item = ritem[itemset[i]];
280 if (item_number_is_rule_number (item))
282 rule_number r = item_number_as_rule_number (item);
346 item of this initial rule. */
278 item_number item = ritem[itemset[i]]; local
H A Dielr.c46 * a goto on <tt>ritem[i]</tt> include the lookahead set of the item.
189 * \c i include the lookahead set of item \c j in the from state of goto
192 * no item \c j in the from state of goto \c i.
215 /* If this item has this goto and if all subsequent symbols in this
216 RHS (if any) are nullable nonterminals, then record this item as
378 ielr_item_has_lookahead (state *s, symbol_number lhs, size_t item, argument
390 if (!item_lookahead_sets[s->number][item])
392 item_lookahead_sets[s->number][item] =
394 /* If this kernel item is the beginning of a RHS, it must be the kernel
395 item i
590 bitset_bindex item; local
[all...]
/external/bluetooth/bluedroid/osi/src/
H A Dthread.c117 // Queue item is freed either when the queue itself is destroyed
118 // or when the item is removed from the queue for dispatch.
119 work_item_t *item = (work_item_t *)malloc(sizeof(work_item_t)); local
120 if (!item) {
124 item->func = func;
125 item->context = context;
126 fixed_queue_enqueue(thread->work_queue, item);
169 // work item and then joining the thread.
171 work_item_t *item = fixed_queue_try_dequeue(thread->work_queue); local
172 while (item
189 work_item_t *item = fixed_queue_dequeue(queue); local
[all...]

Completed in 319 milliseconds

1234567891011>>