OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nextWord
(Results
1 - 25
of
36
) sorted by null
1
2
/external/proguard/src/proguard/
WordReader.java
112
public String
nextWord
(boolean isFileName) throws IOException
120
currentWord = includeWordReader.
nextWord
(isFileName);
ConfigurationParser.java
44
private String
nextWord
;
144
while (
nextWord
!= null)
149
if (ConfigurationConstants.AT_DIRECTIVE .startsWith(
nextWord
) ||
150
ConfigurationConstants.INCLUDE_DIRECTIVE .startsWith(
nextWord
)) configuration.lastModified = parseIncludeArgument(configuration.lastModified);
151
else if (ConfigurationConstants.BASE_DIRECTORY_DIRECTIVE .startsWith(
nextWord
)) parseBaseDirectoryArgument();
154
else if (ConfigurationConstants.INJARS_OPTION .startsWith(
nextWord
)) configuration.programJars = parseClassPathArgument(configuration.programJars, false);
155
else if (ConfigurationConstants.OUTJARS_OPTION .startsWith(
nextWord
)) configuration.programJars = parseClassPathArgument(configuration.programJars, true);
156
else if (ConfigurationConstants.LIBRARYJARS_OPTION .startsWith(
nextWord
)) configuration.libraryJars = parseClassPathArgument(configuration.libraryJars, false);
157
else if (ConfigurationConstants.RESOURCEJARS_OPTION .startsWith(
nextWord
)) throw new ParseException("The '-resourcejars' option is no longer supported. Please use the '-injars' option for all input");
158
else if (ConfigurationConstants.SKIP_NON_PUBLIC_LIBRARY_CLASSES_OPTION .startsWith(
nextWord
)) configuration.skipNonPublicLibraryClasses = parseNoArgument(true)
[
all
...]