• Home
  • Raw
  • Download

Lines Matching refs:nextWord

44     private String     nextWord;  field in ConfigurationParser
144 while (nextWord != null) in parse()
149 … (ConfigurationConstants.AT_DIRECTIVE .startsWith(nextWord) || in parse()
150 …nConstants.INCLUDE_DIRECTIVE .startsWith(nextWord)) configuration.l… in parse()
151 …nConstants.BASE_DIRECTORY_DIRECTIVE .startsWith(nextWord)) parseBaseDirect… in parse()
154 …nConstants.INJARS_OPTION .startsWith(nextWord)) configuration.p… in parse()
155 …nConstants.OUTJARS_OPTION .startsWith(nextWord)) configuration.p… in parse()
156 …nConstants.LIBRARYJARS_OPTION .startsWith(nextWord)) configuration.l… in parse()
158 …nConstants.SYSTEMJARS_OPTION .startsWith(nextWord)) configuration.s… in parse()
159 …nConstants.RESOURCEJARS_OPTION .startsWith(nextWord)) throw new Parse… in parse()
160 …nConstants.SKIP_NON_PUBLIC_LIBRARY_CLASSES_OPTION .startsWith(nextWord)) configuration.s… in parse()
161 …nConstants.DONT_SKIP_NON_PUBLIC_LIBRARY_CLASSES_OPTION .startsWith(nextWord)) configuration.s… in parse()
162 …nConstants.DONT_SKIP_NON_PUBLIC_LIBRARY_CLASS_MEMBERS_OPTION.startsWith(nextWord)) configuration.s… in parse()
163 …nConstants.TARGET_OPTION .startsWith(nextWord)) configuration.t… in parse()
164 …nConstants.FORCE_PROCESSING_OPTION .startsWith(nextWord)) configuration.l… in parse()
166 …nConstants.KEEP_OPTION .startsWith(nextWord)) configuration.k… in parse()
167 …nConstants.KEEP_CLASS_MEMBERS_OPTION .startsWith(nextWord)) configuration.k… in parse()
168 …nConstants.KEEP_CLASSES_WITH_MEMBERS_OPTION .startsWith(nextWord)) configuration.k… in parse()
169 …nConstants.KEEP_NAMES_OPTION .startsWith(nextWord)) configuration.k… in parse()
170 …nConstants.KEEP_CLASS_MEMBER_NAMES_OPTION .startsWith(nextWord)) configuration.k… in parse()
171 …nConstants.KEEP_CLASSES_WITH_MEMBER_NAMES_OPTION .startsWith(nextWord)) configuration.k… in parse()
172 …nConstants.PRINT_SEEDS_OPTION .startsWith(nextWord)) configuration.p… in parse()
175 …nConstants.KEEP_DIRECTORIES_OPTION .startsWith(nextWord)) configuration.k… in parse()
177 …nConstants.DONT_SHRINK_OPTION .startsWith(nextWord)) configuration.s… in parse()
178 …nConstants.PRINT_USAGE_OPTION .startsWith(nextWord)) configuration.p… in parse()
179 …nConstants.WHY_ARE_YOU_KEEPING_OPTION .startsWith(nextWord)) configuration.w… in parse()
181 …nConstants.DONT_OPTIMIZE_OPTION .startsWith(nextWord)) configuration.o… in parse()
182 …nConstants.OPTIMIZATION_PASSES .startsWith(nextWord)) configuration.o… in parse()
183 …nConstants.OPTIMIZATIONS .startsWith(nextWord)) configuration.o… in parse()
184 …nConstants.ASSUME_NO_SIDE_EFFECTS_OPTION .startsWith(nextWord)) configuration.a… in parse()
185 …nConstants.ALLOW_ACCESS_MODIFICATION_OPTION .startsWith(nextWord)) configuration.a… in parse()
186 …nConstants.MERGE_INTERFACES_AGGRESSIVELY_OPTION .startsWith(nextWord)) configuration.m… in parse()
188 …nConstants.DONT_OBFUSCATE_OPTION .startsWith(nextWord)) configuration.o… in parse()
189 …nConstants.PRINT_MAPPING_OPTION .startsWith(nextWord)) configuration.p… in parse()
190 …nConstants.APPLY_MAPPING_OPTION .startsWith(nextWord)) configuration.a… in parse()
191 …nConstants.OBFUSCATION_DICTIONARY_OPTION .startsWith(nextWord)) configuration.o… in parse()
192 …nConstants.CLASS_OBFUSCATION_DICTIONARY_OPTION .startsWith(nextWord)) configuration.c… in parse()
193 …nConstants.PACKAGE_OBFUSCATION_DICTIONARY_OPTION .startsWith(nextWord)) configuration.p… in parse()
194 …nConstants.OVERLOAD_AGGRESSIVELY_OPTION .startsWith(nextWord)) configuration.o… in parse()
195 …nConstants.USE_UNIQUE_CLASS_MEMBER_NAMES_OPTION .startsWith(nextWord)) configuration.u… in parse()
196 …nConstants.DONT_USE_MIXED_CASE_CLASS_NAMES_OPTION .startsWith(nextWord)) configuration.u… in parse()
197 …nConstants.KEEP_PACKAGE_NAMES_OPTION .startsWith(nextWord)) configuration.k… in parse()
198 …nConstants.FLATTEN_PACKAGE_HIERARCHY_OPTION .startsWith(nextWord)) configuration.f… in parse()
199 …nConstants.REPACKAGE_CLASSES_OPTION .startsWith(nextWord)) configuration.r… in parse()
200 …nConstants.DEFAULT_PACKAGE_OPTION .startsWith(nextWord)) configuration.r… in parse()
201 …nConstants.KEEP_ATTRIBUTES_OPTION .startsWith(nextWord)) configuration.k… in parse()
202 …nConstants.KEEP_PARAMETER_NAMES_OPTION .startsWith(nextWord)) configuration.k… in parse()
203 …nConstants.RENAME_SOURCE_FILE_ATTRIBUTE_OPTION .startsWith(nextWord)) configuration.n… in parse()
204 …nConstants.ADAPT_CLASS_STRINGS_OPTION .startsWith(nextWord)) configuration.a… in parse()
205 …nConstants.ADAPT_RESOURCE_FILE_NAMES_OPTION .startsWith(nextWord)) configuration.a… in parse()
206 …nConstants.ADAPT_RESOURCE_FILE_CONTENTS_OPTION .startsWith(nextWord)) configuration.a… in parse()
208 …nConstants.DONT_PREVERIFY_OPTION .startsWith(nextWord)) configuration.p… in parse()
209 …nConstants.MICRO_EDITION_OPTION .startsWith(nextWord)) configuration.m… in parse()
211 …nConstants.VERBOSE_OPTION .startsWith(nextWord)) configuration.v… in parse()
212 …nConstants.DONT_NOTE_OPTION .startsWith(nextWord)) configuration.n… in parse()
213 …nConstants.DONT_WARN_OPTION .startsWith(nextWord)) configuration.w… in parse()
214 …nConstants.IGNORE_WARNINGS_OPTION .startsWith(nextWord)) configuration.i… in parse()
215 …nConstants.PRINT_CONFIGURATION_OPTION .startsWith(nextWord)) configuration.p… in parse()
216 …nConstants.DUMP_OPTION .startsWith(nextWord)) configuration.d… in parse()
244 File file = file(nextWord); in parseIncludeArgument()
258 reader.setBaseDir(file(nextWord)); in parseBaseDirectoryArgument()
280 ClassPathEntry entry = new ClassPathEntry(file(nextWord), isOutput); in parseClassPathArgument()
287 ConfigurationConstants.OPEN_ARGUMENTS_KEYWORD.equals(nextWord)) in parseClassPathArgument()
300 ConfigurationConstants.SEPARATOR_KEYWORD.equals(nextWord)); in parseClassPathArgument()
303 if (!ConfigurationConstants.CLOSE_ARGUMENTS_KEYWORD.equals(nextWord)) in parseClassPathArgument()
354 if (!nextWord.equals(ConfigurationConstants.JAR_SEPARATOR_KEYWORD)) in parseClassPathArgument()
369 int classVersion = ClassUtil.internalClassVersion(nextWord); in parseClassVersion()
389 int integer = Integer.parseInt(nextWord); in parseIntegerArgument()
397 throw new ParseException("Expecting integer argument instead of '" + nextWord + in parseIntegerArgument()
410 File file = file(nextWord); in parseFile()
431 File file = file(nextWord); in parseOptionalFile()
450 String argument = nextWord; in parseOptionalArgument()
499 if (!ConfigurationConstants.ARGUMENT_SEPARATOR_KEYWORD.equals(nextWord)) in parseKeepClassSpecificationArguments()
509 … if (ConfigurationConstants.INCLUDE_DESCRIPTOR_CLASSES_SUBOPTION.startsWith(nextWord)) in parseKeepClassSpecificationArguments()
513 … else if (ConfigurationConstants.ALLOW_SHRINKING_SUBOPTION .startsWith(nextWord)) in parseKeepClassSpecificationArguments()
517 … else if (ConfigurationConstants.ALLOW_OPTIMIZATION_SUBOPTION .startsWith(nextWord)) in parseKeepClassSpecificationArguments()
521 … else if (ConfigurationConstants.ALLOW_OBFUSCATION_SUBOPTION .startsWith(nextWord)) in parseKeepClassSpecificationArguments()
589 while (!ConfigurationConstants.CLASS_KEYWORD.equals(nextWord)) in parseClassSpecificationArguments()
593 nextWord.startsWith(ConfigurationConstants.NEGATOR_KEYWORD); in parseClassSpecificationArguments()
596 nextWord.substring(1) : in parseClassSpecificationArguments()
597 nextWord; in parseClassSpecificationArguments()
618 if (!nextWord.equals(JavaConstants.ACC_INTERFACE) && in parseClassSpecificationArguments()
619 !nextWord.equals(JavaConstants.ACC_ENUM) && in parseClassSpecificationArguments()
620 !nextWord.equals(ConfigurationConstants.CLASS_KEYWORD)) in parseClassSpecificationArguments()
689 if (ConfigurationConstants.IMPLEMENTS_KEYWORD.equals(nextWord) || in parseClassSpecificationArguments()
690 ConfigurationConstants.EXTENDS_KEYWORD.equals(nextWord)) in parseClassSpecificationArguments()
695 if (ConfigurationConstants.ANNOTATION_KEYWORD.equals(nextWord)) in parseClassSpecificationArguments()
729 if (!ConfigurationConstants.OPEN_KEYWORD.equals(nextWord)) in parseClassSpecificationArguments()
742 if (nextWord.equals(ConfigurationConstants.CLOSE_KEYWORD)) in parseClassSpecificationArguments()
773 if (ConfigurationConstants.ANNOTATION_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
782 String strippedWord = nextWord.startsWith("!") ? in parseMemberSpecificationArguments()
783 nextWord.substring(1) : in parseMemberSpecificationArguments()
784 nextWord; in parseMemberSpecificationArguments()
809 if (strippedWord.equals(nextWord)) in parseMemberSpecificationArguments()
833 if (ConfigurationConstants.ANY_CLASS_MEMBER_KEYWORD.equals(nextWord) || in parseMemberSpecificationArguments()
834 ConfigurationConstants.ANY_FIELD_KEYWORD .equals(nextWord) || in parseMemberSpecificationArguments()
835 ConfigurationConstants.ANY_METHOD_KEYWORD .equals(nextWord)) in parseMemberSpecificationArguments()
838 if (ConfigurationConstants.ANY_CLASS_MEMBER_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
858 else if (ConfigurationConstants.ANY_FIELD_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
870 else if (ConfigurationConstants.ANY_METHOD_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
886 if (!ConfigurationConstants.SEPARATOR_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
896 String type = nextWord; in parseMemberSpecificationArguments()
899 String name = nextWord; in parseMemberSpecificationArguments()
932 if (ConfigurationConstants.SEPARATOR_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
949 else if (ConfigurationConstants.OPEN_ARGUMENTS_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
960 if (!ConfigurationConstants.CLOSE_ARGUMENTS_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
970 if (!ConfigurationConstants.SEPARATOR_KEYWORD.equals(nextWord)) in parseMemberSpecificationArguments()
1046 if (nextWord.length() == 0) in parseCommaSeparatedList()
1054 else if (nextWord.equals(ConfigurationConstants.CLOSE_ARGUMENTS_KEYWORD)) in parseCommaSeparatedList()
1081 nextWord = replaceSystemProperties(nextWord); in parseCommaSeparatedList()
1086 nextWord = ClassUtil.internalClassName(nextWord); in parseCommaSeparatedList()
1091 nextWord = ClassUtil.internalType(nextWord); in parseCommaSeparatedList()
1094 list.add(nextWord); in parseCommaSeparatedList()
1109 if (!ConfigurationConstants.ARGUMENT_SEPARATOR_KEYWORD.equals(nextWord)) in parseCommaSeparatedList()
1228 nextWord = reader.nextWord(isFileName); in readNextWord()
1246 return nextWord == null || in configurationEnd()
1247 nextWord.startsWith(ConfigurationConstants.OPTION_PREFIX) || in configurationEnd()
1249 nextWord.equals(ConfigurationConstants.AT_DIRECTIVE)); in configurationEnd()
1260 if (!isJavaIdentifier(nextWord)) in checkJavaIdentifier()