OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:discardset
(Results
1 - 10
of
10
) sorted by null
/external/antlr/antlr-3.4/runtime/C/src/
antlr3tokenstream.c
143
if (stream->
discardSet
!= NULL)
145
stream->
discardSet
->free(stream->
discardSet
);
146
stream->
discardSet
= NULL;
169
if (cts->
discardSet
!= NULL)
171
cts->
discardSet
->free(cts->
discardSet
);
172
cts->
discardSet
= NULL;
244
stream->
discardSet
= NULL;
682
if (tokenStream->
discardSet
== NULL
[
all
...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonTokenStream.as
49
protected var
discardSet
:Array;
93
if (
discardSet
!=null &&
94
discardSet
[t.type] == true )
159
if (
discardSet
==null ) {
160
discardSet
= new Array();
162
discardSet
[ttype] = true;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
LegacyCommonTokenStream.cs
66
protected List<int>
discardSet
;
157
if (
discardSet
!= null &&
158
discardSet
.Contains( t.Type ) )
238
if (
discardSet
== null )
240
discardSet
= new List<int>();
242
discardSet
.Add( ttype );
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
LegacyCommonTokenStream.java
51
protected Set
discardSet
;
108
if (
discardSet
!=null &&
109
discardSet
.contains(new Integer(t.getType())) )
174
if (
discardSet
==null ) {
175
discardSet
= new HashSet();
177
discardSet
.add(new Integer(ttype));
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
CommonTokenStream.js
53
if ( this.
discardSet
&& this.
discardSet
[t.getType()] )
120
if ( !this.
discardSet
) {
121
this.
discardSet
= {};
123
this.
discardSet
[ttype] = true;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
LegacyCommonTokenStream.cs
67
protected Dictionary<int, int>
discardSet
;
149
if (
discardSet
!= null &&
150
discardSet
.ContainsKey(t.Type)) {
217
if (
discardSet
== null) {
218
discardSet
= new Dictionary<int, int>();
220
discardSet
.Add(ttype, ttype);
/external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py
639
self.
discardSet
= set()
690
if self.
discardSet
is not None and t.type in self.
discardSet
:
774
self.
discardSet
.add(ttype)
[
all
...]
/external/antlr/antlr-3.4/runtime/C/include/
antlr3tokenstream.h
222
pANTLR3_LIST
discardSet
;
/prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar
/prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar
Completed in 1202 milliseconds