Searched refs:programName (Results 1 - 25 of 27) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js151 var programName,
155 programName = trs.DEFAULT_PROGRAM_NAME;
158 programName = arguments[0];
161 var is = this.programs[programName];
163 programs[programName] = is.slice(trs.MIN_TOKEN_INDEX, this.instructionIndex);
168 deleteProgram: function(programName) {
169 programName = programName || trs.DEFAULT_PROGRAM_NAME;
170 this.rollback(programName, trs.MIN_TOKEN_INDEX);
190 var programName,
[all...]
/external/icu/icu4c/source/samples/ufortune/
H A Dufortune.c68 const char * programName = argv[0]; /* Program invocation name. */ local
115 u_fprintf(u_stdout, "%s: checking output via icuio.\n", programName);
126 fprintf(stderr, "%s: udata_setAppData failed with error \"%s\"\n", programName, u_errorName(err));
135 fprintf(stderr, "%s: ures_open failed with error \"%s\"\n", programName, u_errorName(err));
151 programName, u_errorName(err));
164 fprintf(stderr, "%s: ures_getStringByKey(\"usage\") failed, %s\n", programName, u_errorName(err));
177 fprintf(stderr, "%s: ures_getByKey(\"fortunes\") failed, %s\n", programName, u_errorName(err));
188 fprintf(stderr, "%s: ures_countArrayItems(\"fortunes\") failed, %s\n", programName, u_errorName(err));
192 fprintf(stderr, "%s: no fortunes found.\n", programName);
199 fprintf(stderr, "%s: ures_getStringByIndex(%d) failed, %s\n", programName,
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as105 public function rollback(instructionIndex:int, programName:String = DEFAULT_PROGRAM_NAME):void {
106 var isn:Array = programs[programName] as Array;
108 programs[programName] = isn.slice(MIN_TOKEN_INDEX,instructionIndex);
113 public function deleteProgram(programName:String = DEFAULT_PROGRAM_NAME):void {
114 rollback(MIN_TOKEN_INDEX, programName);
117 public function insertAfterToken(t:Token, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void {
118 insertAfter(t.tokenIndex, text, programName);
121 public function insertAfter(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void {
123 insertBefore(index+1, text, programName);
126 public function insertBeforeToken(t:Token, text:Object, programName
[all...]
/external/lz4/tests/
H A Ddatagencli.c59 static int usage(char* programName) argument
63 DISPLAY( " %s [size] [args]\n", programName);
84 char* programName; local
87 programName = argv[0];
103 return usage(programName);
157 return usage(programName);
H A Dframetest.c727 int FUZ_usage(const char* programName) argument
730 DISPLAY( " %s [args]\n", programName);
754 const char* const programName = argv[0]; local
776 return FUZ_usage(programName);
856 return FUZ_usage(programName);
H A Dfuzzer.c967 static int FUZ_usage(const char* programName) argument
970 DISPLAY( " %s [args]\n", programName);
994 const char* programName = argv[0]; local
1012 return FUZ_usage(programName);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs217 public virtual void Rollback(string programName, int instructionIndex) { argument
219 if (programs.TryGetValue(programName, out @is) && @is != null) {
224 programs[programName] = sublist;
233 public virtual void DeleteProgram(string programName) { argument
234 Rollback(programName, MIN_TOKEN_INDEX);
245 public virtual void InsertAfter(string programName, IToken t, object text) { argument
246 InsertAfter(programName, t.TokenIndex, text);
249 public virtual void InsertAfter(string programName, int index, object text) { argument
251 InsertBefore(programName, index + 1, text);
252 //addToSortedRewriteList(programName, ne
263 InsertBefore(string programName, IToken t, object text) argument
267 InsertBefore(string programName, int index, object text) argument
291 Replace(string programName, int from, int to, object text) argument
301 Replace(string programName, IToken from, IToken to, object text) argument
324 Delete(string programName, int from, int to) argument
328 Delete(string programName, IToken from, IToken to) argument
336 GetLastRewriteTokenIndex(string programName) argument
344 SetLastRewriteTokenIndex(string programName, int i) argument
381 ToString(string programName) argument
390 ToString(string programName, int start, int end) argument
[all...]
/external/libvncserver/libvncclient/
H A Dlisten.c67 client->programName,client->listenPort);
69 "a connection comes in.\n", client->programName);
81 client->programName,client->listenPort);
83 "a connection comes in.\n", client->programName);
169 client->programName,client->listenPort);
171 "a connection comes in.\n", client->programName);
184 client->programName,client->listenPort);
186 "a connection comes in.\n", client->programName);
H A Dvncviewer.c148 client->programName="";
300 if(client->programName==0)
301 client->programName=argv[0];
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTokenRewriteStream.h129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex;
131 - (void) deleteProgram:(NSString *)programName;
134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText;
144 - (void) replaceProgNam:(NSString *)programName Token:(id<ANTLRToken>)from Token:(id<ANTLRToken>)to Text:(NSString *)theText;
145 - (void) replaceProgNam:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
150 - (void) delete:(NSString *)programName FromToken:(id<ANTLRToken>)from ToToken:(id<ANTLRToken>)to;
151 - (void) delete:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to;
153 - (NSInteger)getLastRewriteTokenIndex:(NSString *)programName;
154 - (void)setLastRewriteTokenIndex:(NSString *)programName Inde
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTokenRewriteStream.h129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex;
131 - (void) deleteProgram:(NSString *)programName;
134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText;
144 - (void) replaceProgNam:(NSString *)programName Token:(id<ANTLRToken>)from Token:(id<ANTLRToken>)to Text:(NSString *)theText;
145 - (void) replaceProgNam:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
150 - (void) delete:(NSString *)programName FromToken:(id<ANTLRToken>)from ToToken:(id<ANTLRToken>)to;
151 - (void) delete:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to;
153 - (NSInteger)getLastRewriteTokenIndex:(NSString *)programName;
154 - (void)setLastRewriteTokenIndex:(NSString *)programName Inde
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTokenRewriteStream.h129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex;
131 - (void) deleteProgram:(NSString *)programName;
134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)index Text:(NSString *)theText;
144 - (void) replaceProgNam:(NSString *)programName Token:(id<ANTLRToken>)from Token:(id<ANTLRToken>)to Text:(NSString *)theText;
145 - (void) replaceProgNam:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
150 - (void) delete:(NSString *)programName FromToken:(id<ANTLRToken>)from ToToken:(id<ANTLRToken>)to;
151 - (void) delete:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to;
153 - (NSInteger)getLastRewriteTokenIndex:(NSString *)programName;
154 - (void)setLastRewriteTokenIndex:(NSString *)programName Inde
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTokenRewriteStream.h129 - (void) rollback:(NSString *)programName Index:(NSInteger)anInstructionIndex;
131 - (void) deleteProgram:(NSString *)programName;
134 - (void) insertAfterProgNam:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
139 - (void) insertBeforeProgName:(NSString *)programName Index:(NSInteger)anIndex Text:(NSString *)theText;
144 - (void) replaceProgNam:(NSString *)programName Token:(id<ANTLRToken>)from Token:(id<ANTLRToken>)to Text:(NSString *)theText;
145 - (void) replaceProgNam:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
150 - (void) delete:(NSString *)programName FromToken:(id<ANTLRToken>)from ToToken:(id<ANTLRToken>)to;
151 - (void) delete:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to;
153 - (NSInteger)getLastRewriteTokenIndex:(NSString *)programName;
154 - (void)setLastRewriteTokenIndex:(NSString *)programName Inde
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs244 public virtual void Rollback( string programName, int instructionIndex ) argument
247 if ( programs.TryGetValue( programName, out @is ) && @is != null )
253 programs[programName] = sublist;
263 public virtual void DeleteProgram( string programName )
265 Rollback( programName, MIN_TOKEN_INDEX );
278 public virtual void InsertAfter( string programName, IToken t, object text ) argument
280 InsertAfter( programName, t.TokenIndex, text );
283 public virtual void InsertAfter( string programName, int index, object text ) argument
286 InsertBefore( programName, index + 1, text );
299 public virtual void InsertBefore( string programName, IToke argument
304 InsertBefore( string programName, int index, object text ) argument
332 Replace( string programName, int from, int to, object text ) argument
344 Replace( string programName, IToken from, IToken to, object text ) argument
372 Delete( string programName, int from, int to ) argument
377 Delete( string programName, IToken from, IToken to ) argument
396 SetLastRewriteTokenIndex( string programName, int i ) argument
452 ToString( string programName, int start, int end ) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java195 public void rollback(String programName, int instructionIndex) { argument
196 List is = (List)programs.get(programName);
198 programs.put(programName, is.subList(MIN_TOKEN_INDEX,instructionIndex));
207 public void deleteProgram(String programName) { argument
208 rollback(programName, MIN_TOKEN_INDEX);
219 public void insertAfter(String programName, Token t, Object text) { argument
220 insertAfter(programName,t.getTokenIndex(), text);
223 public void insertAfter(String programName, int index, Object text) { argument
225 insertBefore(programName,index+1, text);
236 public void insertBefore(String programName, Toke argument
240 insertBefore(String programName, int index, Object text) argument
263 replace(String programName, int from, int to, Object text) argument
273 replace(String programName, Token from, Token to, Object text) argument
296 delete(String programName, int from, int to) argument
300 delete(String programName, Token from, Token to) argument
308 getLastRewriteTokenIndex(String programName) argument
316 setLastRewriteTokenIndex(String programName, int i) argument
352 toString(String programName) argument
361 toString(String programName, int start, int end) argument
[all...]
/external/autotest/client/site_tests/graphics_SanAngeles/src/
H A Dshader.c108 #define GET_ATTRIBUTE_LOC(programName, varName) \
109 sShader##programName.varName = \
110 glGetAttribLocation(sShader##programName.program, #varName); \
111 if (sShader##programName.varName == -1) rt = 0
112 #define GET_UNIFORM_LOC(programName, varName) \
113 sShader##programName.varName = \
114 glGetUniformLocation(sShader##programName.program, #varName); \
115 if (sShader##programName.varName == -1) rt = 0
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py1102 programName = args[0]
1105 programName = self.DEFAULT_PROGRAM_NAME
1110 p = self.programs.get(programName, None)
1112 self.programs[programName] = (
1116 def deleteProgram(self, programName=DEFAULT_PROGRAM_NAME):
1119 self.rollback(programName, self.MIN_TOKEN_INDEX)
1124 programName = self.DEFAULT_PROGRAM_NAME
1129 programName = args[0]
1141 self.insertBefore(programName, index+1, text)
1146 programName
[all...]
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkBinaryRegistry.hpp45 std::string programName; member in struct:vk::BinaryRegistryDetail::ProgramIdentifier
49 , programName (programName_)
56 return (a.testCasePath < b.testCasePath) || ((a.testCasePath == b.testCasePath) && (a.programName < b.programName));
63 : tcu::ResourceError("Program " + id.testCasePath + " / '" + id.programName + "' not found: " + reason)
H A DvkBinaryRegistry.cpp170 const std::string combinedStr = id.testCasePath + '#' + id.programName;
/external/libvncserver/rfb/
H A Drfbclient.h188 const char* programName; member in struct:_rfbClient
/external/deqp/modules/gles31/functional/
H A Des31fSeparateShaderTests.cpp627 GLuint programName,
630 : m_program (renderCtx, programName)
1123 const GLuint programName = glCreateShaderProgramv(glType, 1, &srcStr);
1125 if (glGetError() != GL_NO_ERROR || programName == 0)
1138 RawProgramWrapper* const wrapper = new RawProgramWrapper(renderCtx, programName,
/external/deqp/modules/glshared/
H A DglsLongStressCase.cpp1266 const string programName = "prog" + toString(progContextNdx);
1277 const bool hadProgram = m_programs->has(programName);
1280 m_programs->make(programName);
1282 Program& prog = m_programs->get(programName);
1297 Program& program = m_programs->get(programName);
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktTestPackage.cpp147 progCollection->add(progId.programName, binProg);
H A DvktBuildPrograms.cpp519 progIter->id.programName.c_str(),
/external/jcommander/src/main/java/com/beust/jcommander/
H A DJCommander.java1059 String programName = m_programName != null ? m_programName.getDisplayName() : "<main class>";
1060 out.append(indent).append("Usage: " + programName + " [options]");

Completed in 557 milliseconds

12