Home
last modified time | relevance | path

Searched refs:DEFAULT_PROGRAM_NAME (Results 1 – 16 of 16) sorted by relevance

/aosp_15_r20/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs96 public const string DEFAULT_PROGRAM_NAME = "default"; field in Antlr.Runtime.TokenRewriteStream
193 programs[DEFAULT_PROGRAM_NAME] = new List<RewriteOperation>(PROGRAM_INIT_SIZE); in Init()
208 Rollback(DEFAULT_PROGRAM_NAME, instructionIndex); in Rollback()
229 DeleteProgram(DEFAULT_PROGRAM_NAME); in DeleteProgram()
238 InsertAfter(DEFAULT_PROGRAM_NAME, t, text); in InsertAfter()
242 InsertAfter(DEFAULT_PROGRAM_NAME, index, text); in InsertAfter()
256 InsertBefore(DEFAULT_PROGRAM_NAME, t, text); in InsertBefore()
260 InsertBefore(DEFAULT_PROGRAM_NAME, index, text); in InsertBefore()
276 Replace(DEFAULT_PROGRAM_NAME, index, index, text); in Replace()
280 Replace(DEFAULT_PROGRAM_NAME, from, to, text); in Replace()
[all …]
/aosp_15_r20/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java84 public static final String DEFAULT_PROGRAM_NAME = "default"; field in TokenRewriteStream
177 programs.put(DEFAULT_PROGRAM_NAME, new ArrayList<RewriteOperation>(PROGRAM_INIT_SIZE)); in init()
192 rollback(DEFAULT_PROGRAM_NAME, instructionIndex); in rollback()
207 deleteProgram(DEFAULT_PROGRAM_NAME); in deleteProgram()
216 insertAfter(DEFAULT_PROGRAM_NAME, t, text); in insertAfter()
220 insertAfter(DEFAULT_PROGRAM_NAME, index, text); in insertAfter()
233 insertBefore(DEFAULT_PROGRAM_NAME, t, text); in insertBefore()
237 insertBefore(DEFAULT_PROGRAM_NAME, index, text); in insertBefore()
252 replace(DEFAULT_PROGRAM_NAME, index, index, text); in replace()
256 replace(DEFAULT_PROGRAM_NAME, from, to, text); in replace()
[all …]
/aosp_15_r20/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js78 DEFAULT_PROGRAM_NAME: "default", property
142 this.programs[trs.DEFAULT_PROGRAM_NAME] = [];
155 programName = trs.DEFAULT_PROGRAM_NAME;
169 programName = programName || trs.DEFAULT_PROGRAM_NAME;
193 programName = trs.DEFAULT_PROGRAM_NAME;
246 programName = trs.DEFAULT_PROGRAM_NAME;
267 programName = trs.DEFAULT_PROGRAM_NAME;
290 programName = trs.DEFAULT_PROGRAM_NAME;
295 programName = trs.DEFAULT_PROGRAM_NAME;
336 programName = programName || trs.DEFAULT_PROGRAM_NAME;
[all …]
/aosp_15_r20/external/antlr/runtime/ObjC/Framework/
H A DTokenRewriteStream.m35 static NSString *DEFAULT_PROGRAM_NAME = @"default";
206 …[programs addObject:[MapElement newMapElementWithName:DEFAULT_PROGRAM_NAME Node:[HashMap newHashMa…
216 …[programs addObject:[MapElement newMapElementWithName:DEFAULT_PROGRAM_NAME Node:[HashMap newHashMa…
227 …[programs addObject:[MapElement newMapElementWithName:DEFAULT_PROGRAM_NAME Node:[HashMap newHashMa…
247 [self rollback:DEFAULT_PROGRAM_NAME Index:instructionIndex];
270 [self deleteProgram:DEFAULT_PROGRAM_NAME];
281 [self insertAfterProgNam:DEFAULT_PROGRAM_NAME Index:[t getTokenIndex] Text:theText];
286 … [self insertAfterProgNam:DEFAULT_PROGRAM_NAME Index:(NSInteger)anIndex Text:(NSString *)theText];
306 [self insertBeforeProgName:DEFAULT_PROGRAM_NAME Index:[t getTokenIndex] Text:theText];
311 [self insertBeforeProgName:DEFAULT_PROGRAM_NAME Index:anIndex Text:theText];
[all …]
/aosp_15_r20/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as84 public static const DEFAULT_PROGRAM_NAME:String = "default"; constant in org.antlr.runtime.TokenRewriteStream
98 programs[DEFAULT_PROGRAM_NAME] = new Array();
105 public function rollback(instructionIndex:int, programName:String = DEFAULT_PROGRAM_NAME):void {
113 public function deleteProgram(programName:String = DEFAULT_PROGRAM_NAME):void {
117 …public function insertAfterToken(t:Token, text:Object, programName:String = DEFAULT_PROGRAM_NAME):…
121 …public function insertAfter(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):voi…
126 …public function insertBeforeToken(t:Token, text:Object, programName:String = DEFAULT_PROGRAM_NAME)…
130 …public function insertBefore(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):vo…
137 public function replace(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void {
141 …aceRange(fromIndex:int, toIndex:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void {
[all …]
/aosp_15_r20/external/antlr/runtime/Python3/antlr3/
H A Dstreams.py1023 DEFAULT_PROGRAM_NAME = "default" variable in TokenRewriteStream
1033 self.programs[self.DEFAULT_PROGRAM_NAME] = []
1050 programName = self.DEFAULT_PROGRAM_NAME
1061 def deleteProgram(self, programName=DEFAULT_PROGRAM_NAME):
1069 programName = self.DEFAULT_PROGRAM_NAME
1091 programName = self.DEFAULT_PROGRAM_NAME
1115 programName = self.DEFAULT_PROGRAM_NAME
1121 programName = self.DEFAULT_PROGRAM_NAME
1158 def getLastRewriteTokenIndex(self, programName=DEFAULT_PROGRAM_NAME):
1204 programName = self.DEFAULT_PROGRAM_NAME
[all …]
/aosp_15_r20/external/antlr/runtime/Python/antlr3/
H A Dstreams.py1078 DEFAULT_PROGRAM_NAME = "default" variable in TokenRewriteStream
1088 self.programs[self.DEFAULT_PROGRAM_NAME] = []
1105 programName = self.DEFAULT_PROGRAM_NAME
1116 def deleteProgram(self, programName=DEFAULT_PROGRAM_NAME):
1124 programName = self.DEFAULT_PROGRAM_NAME
1146 programName = self.DEFAULT_PROGRAM_NAME
1170 programName = self.DEFAULT_PROGRAM_NAME
1176 programName = self.DEFAULT_PROGRAM_NAME
1213 def getLastRewriteTokenIndex(self, programName=DEFAULT_PROGRAM_NAME):
1259 programName = self.DEFAULT_PROGRAM_NAME
[all …]
/aosp_15_r20/external/python/cpython3/Modules/
Dgetpath.py179 DEFAULT_PROGRAM_NAME = f'python{VERSION_MAJOR}' variable
192 DEFAULT_PROGRAM_NAME = f'python' variable
250 program_name = DEFAULT_PROGRAM_NAME
385 … for candidate in (DEFAULT_PROGRAM_NAME, f'python{VERSION_MAJOR}.{VERSION_MINOR}'):
/aosp_15_r20/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas2536 DEFAULT_PROGRAM_NAME = 'default';
5768 Delete(DEFAULT_PROGRAM_NAME, Start, Stop);
5773 Delete(DEFAULT_PROGRAM_NAME, IndexT, IndexT);
5837 Delete(DEFAULT_PROGRAM_NAME, Start, Stop);
5842 Delete(DEFAULT_PROGRAM_NAME, Index, Index);
5852 DeleteProgram(DEFAULT_PROGRAM_NAME);
5857 Result := GetLastRewriteTokenIndex(DEFAULT_PROGRAM_NAME);
5917 FPrograms.Add(DEFAULT_PROGRAM_NAME, List);
5939 InsertAfter(DEFAULT_PROGRAM_NAME, T, Text);
5945 InsertAfter(DEFAULT_PROGRAM_NAME, Index, Text);
[all …]
/aosp_15_r20/external/guice/extensions/persist/lib/
HDantlr-2.7.5h3.jarMETA-INF/ META-INF/MANIFEST.MF antlr/ antlr/ActionElement.class ActionElement ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/m2repository/androidx/room/room-external-antlr/2.7.0-alpha12/androidx.room_room-external-antlr/linux_glibc_common/local-combined/
Dandroidx.room_room-external-antlr.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/androidx/ META- ...
/aosp_15_r20/prebuilts/sdk/current/androidx/m2repository/androidx/room/room-external-antlr/2.7.0-alpha12/
HDroom-external-antlr-2.7.0-alpha12.jarMETA-INF/ META-INF/MANIFEST.MF androidx/ androidx/room/ androidx/ ...
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/androidx/androidx.room_room-compiler-plugin/linux_glibc_common/combined/
Dandroidx.room_room-compiler-plugin.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META ...
/aosp_15_r20/prebuilts/devtools/tools/lib/
HDjython-standalone-2.5.3.jarMETA-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE META- ...
/aosp_15_r20/prebuilts/checkstyle/
HDcheckstyle.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/puppycrawl/ com/ ...
/aosp_15_r20/prebuilts/bazel/common/android_tools/android_tools/
Dall_android_tools_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com ...