Searched refs:opts (Results 51 - 75 of 78) sorted by relevance

1234

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DREUtil.java100 static final int parseOptions(String opts) throws ParseException { argument
101 if (opts == null) return 0;
103 for (int i = 0; i < opts.length(); i ++) {
104 int v = getOptionValue(opts.charAt(i));
106 throw new ParseException("Unknown Option: "+opts.substring(i), -1);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DBGMBuilder.java88 ErrorReceiver _errorReceiver, Options opts ) {
96 Model model = new Model(opts, codeModel, null/*set later*/, opts.classNameAllocator, _schemas);
101 BGMBuilder builder = new BGMBuilder(opts.defaultPackage,opts.defaultPackage2,
102 opts.isExtensionMode(),opts.getFieldRendererFactory(), opts.activePlugins);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DAnnotationParserFactoryImpl.java57 public AnnotationParserFactoryImpl(Options opts) { argument
58 this.options=opts;
/openjdk7/jdk/src/share/sample/nio/file/
H A DCopy.java200 EnumSet<FileVisitOption> opts = EnumSet.of(FileVisitOption.FOLLOW_LINKS);
202 Files.walkFileTree(source[i], opts, Integer.MAX_VALUE, tc);
H A DChmod.java342 Set<FileVisitOption> opts = Collections.emptySet();
345 Files.walkFileTree(file, opts, maxDepth, visitor);
/openjdk7/langtools/test/tools/javac/api/
H A DT6412669.java71 String[] opts = { "-proc:only", "-processor", T6412669.class.getName()};
73 JavacTask task = tool.getTask(sw, fm, null, Arrays.asList(opts), null, files);
/openjdk7/langtools/test/tools/javac/diags/
H A DFileManager.java56 public FileManager(StandardJavaFileManager fm, List<String> opts) { argument
58 for (String opt: opts) {
/openjdk7/langtools/test/tools/javac/6889255/
H A DT6889255.java354 void test(String testName, boolean expectNames, String... opts) throws Exception { argument
357 + " javacOpts:" + Arrays.asList(opts));
361 compile(outDir, opts);
446 void compile(File outDir, String... opts) throws Exception { argument
451 args.addAll(Arrays.asList(opts));
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUnicodeSet.java980 int opts = RuleCharacterIterator.PARSE_VARIABLES |
983 opts |= RuleCharacterIterator.SKIP_WHITESPACE;
1018 if (resemblesPropertyPattern(chars, opts)) {
1033 c = chars.next(opts);
1045 c = chars.next(opts);
1051 c = chars.next(opts);
1105 chars.skipIgnored(opts);
1173 c = chars.next(opts);
1207 c = chars.next(opts);
1234 c = chars.next(opts);
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSctpNet.c467 } const opts[] = { local
477 for (i=0; i<(int)(sizeof(opts) / sizeof(opts[0])); i++) {
478 if (cmd == opts[i].cmd) {
479 *level = opts[i].level;
480 *optname = opts[i].optname;
/openjdk7/jdk/test/com/sun/jdi/
H A DVMConnection.java114 String opts = getDebuggeeVMOptions();
115 if (opts.equals("")) {
119 String[] v1 = opts.split(" +");
/openjdk7/jdk/test/java/nio/file/DirectoryStream/
H A DSecureDS.java137 Set<StandardOpenOption> opts = Collections.emptySet();
138 stream.newByteChannel(fileEntry, opts).close();
140 stream.newByteChannel(link1Entry, opts).close();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DDriver.java499 * @param opts
503 public static void usage( @Nullable Options opts, boolean privateUsage ) { argument
509 if( opts!=null && !opts.getAllPlugins().isEmpty()) {
511 for (Plugin p : opts.getAllPlugins()) {
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextTests.java376 txoptroot = new Group(textroot, "opts", "Text Options");
539 String opts;
541 opts = "On";
543 opts = "Off";
545 opts = "On,Off";
549 return ((Option.ObjectList)taaList).setValueFromString(opts);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DModel.java148 public Model( Options opts, JCodeModel cm, NameConverter nc, ClassNameAllocator allocator, XSSchemaSet schemaComponent ) { argument
149 this.options = opts;
157 if(opts.automaticNameConflictResolution)
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DBasic.java307 Set<StandardOpenOption> opts = EnumSet.of(WRITE);
308 AsynchronousFileChannel ch = AsynchronousFileChannel.open(file, opts, executor);
352 Set<StandardOpenOption> opts = EnumSet.of(WRITE);
353 channels[i] = AsynchronousFileChannel.open(file, opts, executor);
/openjdk7/jdk/src/share/classes/sun/launcher/
H A DLauncherHelper.java118 String opts[] = optionFlag.split(":");
119 String optStr = (opts.length > 1 && opts[1] != null)
120 ? opts[1].trim()
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c1033 } const opts[] = { local
1073 for (i=0; i<(int)(sizeof(opts) / sizeof(opts[0])); i++) {
1074 if (cmd == opts[i].cmd) {
1075 *level = opts[i].level;
1076 *optname = opts[i].optname;
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.c342 static sockopts opts[] = { local
363 for (i=0; i<(int)(sizeof(opts) / sizeof(opts[0])); i++) {
364 if (cmd == opts[i].cmd) {
365 *level = opts[i].level;
366 *optname = opts[i].optname;
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassSyntax.java304 public void addAttrTypes(String[] opts) { argument
305 for (String opt : opts) {
/openjdk7/jdk/test/java/nio/file/Files/
H A DCopyAndMove.java577 CopyOption[] opts = { REPLACE_EXISTING, null };
578 move(source, target, opts);
929 CopyOption[] opts = { REPLACE_EXISTING, null };
930 copy(source, target, opts);
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTask.java506 List<String> opts = new ArrayList<String>();
507 opts.add("-proc:only");
508 opts.addAll(javac_extras);
509 CompilationTask t = c.getTask(log, fileManager, diagnosticListener, opts, classes, null);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DRenderTests.java112 renderoptroot = new Group(renderroot, "opts", "Rendering Options");
259 String opts;
261 opts = "random";
263 opts = "single";
265 opts = "random,single";
269 return ((Option.ObjectList)paintList).setValueFromString(opts);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.java323 Set<OpenOption> opts = Collections.emptySet();
327 opts,
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java371 Set<FileVisitOption> opts = EnumSet.of(FOLLOW_LINKS);
372 Files.walkFileTree(packageDir, opts, maxDepth,

Completed in 108 milliseconds

1234