Searched refs:item (Results 1 - 25 of 1876) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRuleListController.java122 final Rule item = (Rule) value;
123 setText(item.toString());
126 setIcon(item.getNotEmpty() ? ImageFactory.getSingleton().FAV16 : null);
128 if(list.getSelectedValue() == item ) {
H A DTestCaseEditController.java608 final TestCase item = (TestCase) value;
612 clamp(clampAtNewLine(item.getInput().getScript()), 18));
614 clamp(clampAtNewLine(item.getOutput().getScript()), 18));
618 labIn.setIcon(item.getInput() instanceof TestCaseInputFile ?
/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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DEnumerableExtensions.cs120 foreach (TSource item in source) {
122 yield return item;
219 foreach (TResult item in selector(element, counter))
220 yield return item;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs81 foreach ( object item in items )
82 list.Add( item );
87 foreach ( T item in items )
88 list.Add( item );
150 public static void remove<T>( this IList<T> list, T item )
152 list.Remove( item );
H A DSetExtensions.cs45 public static bool add<T>( this HashSet<T> set, T item )
47 return set.Add( item );
53 foreach ( T item in items )
54 set.Add( item );
71 public static bool remove<T>( this HashSet<T> set, T item )
73 return set.Remove( item );
H A DSubList.cs341 void ICollection<T>.Add( T item )
351 public bool Contains( T item )
353 return _source.Skip( _startIndex ).Take( Count ).Contains( item );
373 bool ICollection<T>.Remove( T item )
382 public int IndexOf( T item )
386 if ( object.Equals( this[i], item ) )
393 void IList<T>.Insert( int index, T 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/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas721 item: TPair<TKey,TValue>;
724 for item in Collection do
725 AddOrSetValue(item.Key, item.Value);
732 item: TPair<TKey,TValue>;
735 for item in Collection do
736 AddOrSetValue(item.Key, item.Value);
764 or (TopInc < Bottom) and (Item <= TopInc) // top and item wrapped
777 // Removing item fro
[all...]
H A DAntlr.Runtime.Tree.pas187 /// <item>Number the nodes as they are created?</item>
188 /// <item>
195 /// </item>
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm274 =item C<of>
278 =item C<or>
282 =item C<add>
286 =item C<grow_to_include>
290 =item C<set_size>
294 =item C<remove>
298 =item C<length_in_long_words>
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb137 def look( i, item )
138 case item
140 look_tree( i, item )
143 transmit "%s\t%i\t%s", :look, i, serialize_token( item )
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DDefineGrammarItemsWalker.g594 for (GrammarAST item : currentRewriteBlock.rewriteRefsShallow)
595 enclosingBlock.rewriteRefsDeep.add( item );
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemExsltFunction.java91 Node child = children.item(i);
92 if (children.item(i) instanceof ElemParam) {
93 ElemParam param = (ElemParam)children.item(i);
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/xalan/transformer/
H A DCountersTable.java105 flist.addElement(blist.item(i));
H A DNodeSorter.java92 NodeCompareElem elem = new NodeCompareElem(v.item(i));
/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

Completed in 1304 milliseconds

1234567891011>>