Searched refs:options (Results 101 - 125 of 369) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DFileChannel.java167 * <p> The {@code options} parameter determines how the file is opened.
169 * WRITE} options determine if the file should be opened for reading and/or
175 * options may be present:
187 * with the {@code READ} or {@code TRUNCATE_EXISTING} options. </td>
242 * <p> An implementation may also support additional options.
253 * @param options
262 * If the set contains an invalid combination of options
282 Set<? extends OpenOption> options,
287 return provider.newFileChannel(path, options, attrs);
300 * where {@code opts} is a set of the options specifie
281 open(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
329 open(Path path, OpenOption... options) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaMethod.java46 private final WsimportOptions options; field in class:JavaMethod
49 public JavaMethod(String name, WsimportOptions options, ErrorReceiver receiver) { argument
53 this.options = options;
89 if(options.isExtensionMode()){
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/main/
H A DMain.java72 /** For testing: enter any options you want to be set implicitly
162 /** For javac-only options, print nothing.
181 options.put(option, arg);
294 options.put("-g:", "none");
305 options.put("-g:", suboptions);
310 options.put(opt, opt);
328 options.put("-Xlint:", suboptions);
333 options.put(opt, opt);
345 options.put("-Xlint:deprecation", option);
359 options
619 private Options options = null; field in class:Main
[all...]
/openjdk7/jdk/test/java/nio/file/spi/
H A DTestProvider.java62 LinkOption... options)
70 LinkOption... options)
79 LinkOption... options)
88 LinkOption... options)
118 public void copy(Path source, Path target, CopyOption... options) argument
125 public void move(Path source, Path target, CopyOption... options) argument
148 Set<? extends OpenOption> options,
61 setAttribute(Path file, String attribute, Object value, LinkOption... options) argument
69 readAttributes(Path file, String attributes, LinkOption... options) argument
77 readAttributes(Path file, Class<A> type, LinkOption... options) argument
86 getFileAttributeView(Path file, Class<V> type, LinkOption... options) argument
147 newByteChannel(Path file, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
/openjdk7/langtools/test/tools/javac/6400872/
H A DT6400872.java66 List<String> options = new ArrayList<String>();
68 options.add("-d");
69 options.add(classOutDir.getPath());
72 options.add("-classpath");
73 options.add(join(classPath, File.pathSeparator));
75 options.add("-verbose");
78 compiler.getTask(null, fm, null, options, null, fileObjects);
/openjdk7/jdk/src/macosx/bundle/appbundler/native/
H A Dmain.m121 // Get the VM options
122 NSArray *options = [javaVMDictionary objectForKey:@OPTIONS_KEY];
123 if (options == nil) {
124 options = [NSArray array];
135 options, arguments);
140 NSArray *options, NSArray *arguments) {
157 int argc = 1 + [options count] + 2 + [arguments count] + 1;
165 for (NSString *option in options) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceAP.java86 private WsgenOptions options; field in class:WebServiceAP
104 public WebServiceAP(WsgenOptions options, AnnotationProcessorContext context, ErrorReceiver receiver, PrintStream out) { argument
105 this.options = options;
106 this.sourceDir = (options != null)?options.sourceDir:null;
107 this.doNotOverWrite = (options != null) && options.doNotOverWrite;
120 if (options == null) {
121 options
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerBase.java157 private int options = 0; field in class:NormalizerBase
208 int options) {
211 NormalizerImpl.getNX(options)
219 protected String normalize(String src, int options) { argument
302 protected String normalize( String src, int options) { argument
303 return decompose(src,false,options);
364 protected String normalize( String src, int options) { argument
365 return decompose(src,true,options);
424 protected String normalize( String src, int options) { argument
425 return compose(src, false, options);
206 normalize(char[] src, int srcStart, int srcLimit, char[] dest,int destStart,int destLimit, int options) argument
483 normalize( String src, int options) argument
658 compose(String str, boolean compat, int options) argument
720 decompose(String str, boolean compat, int options) argument
777 normalize(char[] src,int srcStart, int srcLimit, char[] dest,int destStart, int destLimit, Mode mode, int options) argument
1174 previous(UCharacterIterator src, char[] dest, int destStart, int destLimit, Mode mode, boolean doNormalize, boolean[] pNeededToNormalize, int options) argument
1402 next(UCharacterIterator src, char[] dest, int destStart, int destLimit, NormalizerBase.Mode mode, boolean doNormalize, boolean[] pNeededToNormalize, int options) argument
1600 normalize(String str, Normalizer.Form form, int options) argument
1665 isNormalized(String str, Normalizer.Form form, int options) argument
[all...]
H A DRuleCharacterIterator.java103 * Bitmask option to enable parsing of variable names. If (options &
110 * Bitmask option to enable parsing of escape sequences. If (options &
117 * Bitmask option to enable skipping of whitespace. If (options &
154 * Returns the next character using the given options, or DONE if there
157 * @param options one or more of the following options, bitwise-OR-ed
161 public int next(int options) { argument
170 (options & PARSE_VARIABLES) != 0 && sym != null) {
190 if ((options & SKIP_WHITESPACE) != 0 &&
195 if (c == '\\' && (options
280 skipIgnored(int options) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DMain.java137 /** A table of all options that's passed to the JavaCompiler constructor. */
138 private Options options = null; field in class:Main
158 /** Print a string that explains usage for X options.
194 public void setOptions(Options options) { argument
195 if (options == null)
197 this.options = options;
204 /** Process command line arguments: store all command line options
205 * in `options' table and return all source filenames.
223 // most of the compiler options
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DClassWriter.java80 options = Options.instance(context);
123 if ((options.sysInfo || options.verbose) && !options.compat) {
155 if ((options.sysInfo || options.verbose) && !options.compat) {
193 } else if (options.verbose || !t.isObject()) {
202 if (options.verbose) {
208 if (!options
740 private Options options; field in class:ClassWriter
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DClassTypeImpl.java165 final int options) {
171 method.ref(), args, options);
176 if ((options & INVOKE_SINGLE_THREADED) != 0) {
187 final int options) {
193 method.ref(), args, options);
198 if ((options & INVOKE_SINGLE_THREADED) != 0) {
207 List<? extends Value> origArguments, int options)
227 sendInvokeCommand(thread, method, args, options);
241 if ((options & INVOKE_SINGLE_THREADED) == 0) {
255 int options)
162 sendInvokeCommand(final ThreadReferenceImpl thread, final MethodImpl method, final ValueImpl[] args, final int options) argument
184 sendNewInstanceCommand(final ThreadReferenceImpl thread, final MethodImpl method, final ValueImpl[] args, final int options) argument
206 invokeMethod(ThreadReference threadIntf, Method methodIntf, List<? extends Value> origArguments, int options) argument
252 newInstance(ThreadReference threadIntf, Method methodIntf, List<? extends Value> origArguments, int options) argument
[all...]
/openjdk7/langtools/test/tools/javac/Diagnostics/7010608/
H A DTest.java56 void test(List<String> options, String expect) throws Exception { argument
57 System.err.println("test: " + options);
63 CompilationTask task = javac.getTask(pw, null, null, options, null, files);
/openjdk7/jdk/src/share/sample/vm/clr-jvm/
H A Djinvoker.cpp53 By MakeJavaVMInitArgs() it is provided two options: providing CLASSPATH
85 pArgs->options = pOptions;
99 delete ((JavaVMInitArgs*)pArgs)->options[0].optionString;
100 delete ((JavaVMInitArgs*)pArgs)->options;
/openjdk7/jdk/src/share/classes/javax/security/auth/spi/
H A DLoginModule.java52 * <code>LoginModule</code> state, and LoginModule-specific options.
66 * <p> The LoginModule-specific options represent the options
69 * The options are defined by the <code>LoginModule</code> itself
71 * <code>LoginModule</code> may define options to support debugging/testing
74 * stores the options as a <code>Map</code> so that the values may
76 * of options a <code>LoginModule</code> chooses to define.
140 * <code>options</code> parameters, they can be ignored.
152 * @param options options specifie
156 initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options) argument
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A Ddisassembler.hpp57 const char* options);
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DLdapLoginModule.java68 * A mode is selected by specifying a particular set of options.
86 * <code>userFilter</code> options.
125 * options:
338 // Configurable options
370 private Map<String, ?> options; field in class:LdapLoginModule
384 * @param options options specified in the login
389 Map<String, ?> sharedState, Map<String, ?> options) {
394 this.options = options;
388 initialize(Subject subject, CallbackHandler callbackHandler, Map<String, ?> sharedState, Map<String, ?> options) argument
[all...]
/openjdk7/jdk/test/com/sun/management/HotSpotDiagnosticMXBean/
H A DSetVMOption.java98 List<VMOption> options = mbean.getDiagnosticOptions();
100 for (VMOption o1 : options) {
126 List<VMOption> options = mbean.getDiagnosticOptions();
128 for (VMOption o : options) {
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java212 public void setAttribute(Path file, String attribute, Object value, LinkOption... options) argument
215 Files.setAttribute(unwrap(file), attribute, value, options);
219 public Map<String,Object> readAttributes(Path file, String attributes, LinkOption... options) argument
222 return Files.readAttributes(unwrap(file), attributes, options);
228 LinkOption... options)
230 return Files.getFileAttributeView(unwrap(file), type, options);
236 LinkOption... options)
239 return Files.readAttributes(unwrap(file), type, options);
267 public void copy(Path source, Path target, CopyOption... options) throws IOException { argument
268 Files.copy(unwrap(source), unwrap(target), options);
226 getFileAttributeView(Path file, Class<V> type, LinkOption... options) argument
234 readAttributes(Path file, Class<A> type, LinkOption... options) argument
272 move(Path source, Path target, CopyOption... options) argument
318 newByteChannel(Path file, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
489 toRealPath(LinkOption... options) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DTicketFlags.java113 public boolean match(LoginOptions options) { argument
116 if (this.get(Krb5.TKT_OPTS_FORWARDABLE) == (options.get(KDCOptions.FORWARDABLE))) {
117 if (this.get(Krb5.TKT_OPTS_PROXIABLE) == (options.get(KDCOptions.PROXIABLE))) {
118 if (this.get(Krb5.TKT_OPTS_RENEWABLE) == (options.get(KDCOptions.RENEWABLE))) {
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystemProvider.java113 LinkOption... options)
116 boolean followLinks = Util.followLinks(options);
132 LinkOption... options)
144 return (A) getFileAttributeView(file, view, options).readAttributes();
150 LinkOption... options)
153 boolean followLinks = Util.followLinks(options);
167 Set<? extends OpenOption> options,
175 return UnixChannelFactory.newFileChannel(file, options, mode);
184 Set<? extends OpenOption> options,
194 .newAsynchronousFileChannel(file, options, mod
111 getFileAttributeView(Path obj, Class<V> type, LinkOption... options) argument
130 readAttributes(Path file, Class<A> type, LinkOption... options) argument
148 getFileAttributeView(Path obj, String name, LinkOption... options) argument
166 newFileChannel(Path obj, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
183 newAsynchronousFileChannel(Path obj, Set<? extends OpenOption> options, ExecutorService executor, FileAttribute<?>... attrs) argument
203 newByteChannel(Path obj, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
250 copy(Path source, Path target, CopyOption... options) argument
259 move(Path source, Path target, CopyOption... options) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DFileLoginModule.java73 * <p> This module recognizes the following <code>Configuration</code> options:
132 // Configurable options
151 private Map<String, ?> options; field in class:FileLoginModule
165 * @param options options specified in the login
171 Map<String,?> options)
177 this.options = options;
179 // initialize any configured options
181 "true".equalsIgnoreCase((String)options
169 initialize(Subject subject, CallbackHandler callbackHandler, Map<String,?> sharedState, Map<String,?> options) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DMetadataFinder.java74 public MetadataFinder(InternalizationLogic logic, WsimportOptions options, ErrorReceiver errReceiver) { argument
75 super(logic, new WSEntityResolver(options,errReceiver), options, errReceiver);
81 for (InputSource value : options.getWSDLs()) {
90 if (options.entityResolver != null)
91 value = options.entityResolver.resolveEntity(null, systemID);
131 WsimportOptions options; field in class:MetadataFinder.WSEntityResolver
134 public WSEntityResolver(WsimportOptions options, ErrorReceiver errReceiver) { argument
135 this.parentResolver = options.entityResolver;
136 this.options
[all...]
/openjdk7/langtools/test/tools/javah/compareTest/
H A DCompareTest.java69 for (String[] options: testCases) {
71 test(Arrays.asList(options), rt_jar, name);
81 public void test(List<String> options, File bootclasspath, String className) argument
83 System.err.println("test: " + options + " " + className);
86 testOptions = options;
90 int old_rc = old_javah(options, oldOutDir, bootclasspath, className);
93 int new_rc = new_javah(options, newOutDir, bootclasspath, className);
101 int old_javah(List<String> options, File outDir, File bootclasspath, String className) argument
105 cmd.addAll(options);
126 int new_javah(List<String> options, Fil argument
[all...]
/openjdk7/hotspot/test/gc/6941923/
H A Dtest6941923.sh107 options="-Xloggc:$logfile -XX:+UseConcMarkSweepGC -XX:+PrintGC -XX:+PrintGCDetails -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=1 -XX:GCLogFileSize=$gclogsize"
109 ${TESTJAVA}/bin/java $options $testname $tts
136 options="-Xloggc:$logfile -XX:+UseConcMarkSweepGC -XX:+PrintGC -XX:+PrintGCDetails -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=$numoffiles -XX:GCLogFileSize=$gclogsize"
138 ${TESTJAVA}/bin/java $options $testname $tts

Completed in 983 milliseconds

1234567891011>>