Searched refs:remove (Results 1 - 25 of 2998) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DTestCaseEditController.java390 this.remove(editor);
/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.jar ... void add (org.dom4j.ProcessingInstruction) public abstract boolean remove (org.dom4j.Node) public abstract boolean remove (org ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as102 if ( state._fsp>=0 ) { // remove EOR if we're not the start symbol
103 follow.remove(TokenConstants.EOR_TOKEN_TYPE);
516 followSet.remove(TokenConstants.EOR_TOKEN_TYPE);
H A DBitSet.as189 // remove this element from this set
190 public function remove(el:int):void { function
H A DTokenRewriteStream.as159 public function remove(index:int, programName:String = DEFAULT_PROGRAM_NAME):void { function
241 indexToOp[i] = undefined; // remove so any left have index size-1
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTree.as148 var killed:BaseTree = BaseTree(children.remove(i));
197 var killed:BaseTree = BaseTree(children.remove(indexToDelete));
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3bitset.h102 void (*remove) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_UINT32 bit); member in struct:ANTLR3_BITSET_struct
H A Dantlr3collections.h132 pANTLR3_HASH_ENTRY (*remove) (struct ANTLR3_HASH_TABLE_struct * table, void * key); member in struct:ANTLR3_HASH_TABLE_struct
189 void * (*remove) (struct ANTLR3_LIST_struct * list, ANTLR3_INTKEY key); member in struct:ANTLR3_LIST_struct
268 void * (*remove) (struct ANTLR3_VECTOR_struct * vector, ANTLR3_UINT32 entry); member in struct:ANTLR3_VECTOR_struct
429 * descnding from it as we remove it from the stack as we exit from
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3baserecognizer.c572 // C code generation. Hence we cannot remove things from them
573 // and so on. So, in order to remove EOR (if we need to) then
587 // need to remove it.
591 followClone->remove(followClone, ANTLR3_EOR_TOKEN_TYPE);
976 followSet->remove(followSet, ANTLR3_EOR_TOKEN_TYPE);
1475 // is what we are looking for then we remove the one we have discovered
1677 follow->remove(follow, ANTLR3_EOR_TOKEN_TYPE);
H A Dantlr3basetree.c253 return tree->children->remove(tree->children, i);
421 parent->children->remove(parent->children, indexToDelete);
H A Dantlr3bitset.c133 bitset->remove = antlr3BitsetRemove;
H A Dantlr3collections.c181 table->remove = antlr3HashRemove;
891 list->remove = antlr3ListRemove;
1026 // the current top of the stack, then remove it from the stack.
1120 vector->remove = antrl3VectorRemove;
1491 // TODO: remove this line once happy printf("Returned vector %08X to the pool, stack size is %d\n", vector, factory->freeStack->size(factory->freeStack));
1652 // TODO: remove this line once happy printf("Reused vector %08X from stack, size is now %d\n", vector, factory->freeStack->size(factory->freeStack));
1684 // TODO: remove this line once happy printf("Used a new vector at %08X from the pools as nothing on the reusue stack\n", vector);
H A Dantlr3rewritestreams.c131 // Had to remove this for now, check is not comprehensive enough
159 // Had to remove this for now, check is not comprehensive enough
198 // cause it to be freed by using remove.
200 stream = rec->state->rStreams->remove(rec->state->rStreams, rec->state->rStreams->count - 1);
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas456 // remove this element from this set
4563 // remove EOR if we're not the start symbol
6236 IndexToOp.Remove(I); // remove so any left have index size-1
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBaseRecognizer.java140 if ( state._fsp>=0 ) { // remove EOR if we're not the start symbol
141 follow.remove(Token.EOR_TOKEN_TYPE);
548 followSet.remove(Token.EOR_TOKEN_TYPE);
H A DBitSet.java239 // remove this element from this set
240 public void remove(int el) { method in class:BitSet
H A DTokenRewriteStream.java380 indexToOp.remove(new Integer(i)); // remove so any left have index size-1
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DFastQueue.java54 /** Get and remove first element in queue */
55 public T remove() { method in class:FastQueue
H A DLookaheadStream.java74 /** Get and remove first element in queue; override FastQueue.remove();
77 public T remove() { method in class:LookaheadStream
88 /** Make sure we have at least one element to remove, even if EOF */
91 prevElement = remove();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBaseTree.java170 Tree killed = (Tree)children.remove(i);
224 children.remove(indexToDelete);
H A DBufferedTreeNodeStream.java76 public void remove() { method in class:BufferedTreeNodeStream.StreamIterator
77 throw new RuntimeException("cannot remove nodes from stream");
H A DTreeIterator.java37 * know what child index they are. No remove() is supported.
95 if ( nodes!=null && nodes.size()>0 ) return nodes.remove();
120 return nodes.remove();
128 return nodes.remove();
131 public void remove() { throw new UnsupportedOperationException(); } method in class:TreeIterator
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js164 if ( this.state._fsp>=0 ) { // remove EOR if we're not the start symbol
165 follow.remove(org.antlr.runtime.Token.EOR_TOKEN_TYPE);
604 followSet.remove(org.antlr.runtime.Token.EOR_TOKEN_TYPE);
H A DBitSet.js498 remove: function(el) {

Completed in 450 milliseconds

1234567891011>>