Searched refs:flags (Results 201 - 225 of 573) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTool.java218 Iterator<String> flags = options.iterator();
219 while (flags.hasNext()) {
220 String flag = flags.next();
227 if (fileManager.handleOption(flag, flags)) {
237 if (!flags.hasNext()) {
241 String operand = flags.next();
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRECompiler.java51 // Node flags
52 static final int NODE_NORMAL = 0; // No flags (nothing special)
853 * @param flags Flags
857 int terminal(int[] flags) throws RESyntaxException argument
870 return expr(flags);
900 flags[0] &= ~NODE_NULLABLE;
910 flags[0] |= NODE_NULLABLE;
919 flags[0] &= ~NODE_NULLABLE;
927 flags[0] &= ~NODE_NULLABLE;
933 * @param flags Flag
937 closure(int[] flags) argument
1164 branch(int[] flags) argument
1213 expr(int[] flags) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/tools/attach/
H A DWindowsAttachProvider.java96 long flags = volumeFlags(temp.substring(0, 3));
97 isTempPathSecure = ((flags & FS_PERSISTENT_ACLS) != 0);
120 // returns the flags for the given volume
/openjdk7/jdk/src/windows/native/java/io/
H A Dio_util_md.h38 void fileOpen(JNIEnv *env, jobject this, jstring path, jfieldID fid, int flags);
52 jlong winFileHandleOpen(JNIEnv *env, jstring path, int flags);
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DWindowsAsynchronousFileChannelImpl.c105 DWORD flags = (shared == JNI_TRUE) ? 0 : LOCKFILE_EXCLUSIVE_LOCK; local
112 res = LockFileEx(h, flags, 0, lowNumBytes, highNumBytes, lpOverlapped);
H A DSocketDispatcher.c49 DWORD flags = 0; local
66 &flags, /* no flags */
89 DWORD flags = 0; local
119 &flags, /* no flags */
164 0, /* no flags */
226 0, /* no flags */
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.h67 // combination of standard mouse button flags
285 int x, int y, int w, int h, UINT flags);
519 virtual MsgRouting WmMouseEnter(UINT flags, int x, int y);
520 virtual MsgRouting WmMouseDown(UINT flags, int x, int y, int button);
521 virtual MsgRouting WmMouseUp(UINT flags, int x, int y, int button);
522 virtual MsgRouting WmMouseMove(UINT flags, int x, int y);
523 virtual MsgRouting WmMouseExit(UINT flags, int x, int y);
524 virtual MsgRouting WmMouseWheel(UINT flags, int x, int y,
533 virtual MsgRouting WmKeyDown(UINT vkey, UINT repCnt, UINT flags, BOOL system);
534 virtual MsgRouting WmKeyUp(UINT vkey, UINT repCnt, UINT flags, BOO
[all...]
H A Dawt_PopupMenu.cpp128 UINT flags = 0; local
141 flags = TPM_LEFTALIGN | TPM_RIGHTBUTTON;
146 flags = TPM_NONOTIFY | TPM_RIGHTALIGN | TPM_RIGHTBUTTON | TPM_BOTTOMALIGN;
150 ::TrackPopupMenu(GetHMenu(), flags, pt.x, pt.y, 0, awtOrigin->GetHWnd(), NULL); local
H A Dawt_Scrollbar.h73 virtual MsgRouting WmMouseDown(UINT flags, int x, int y, int button);
/openjdk7/jdk/test/sun/tools/jinfo/
H A DBasic.sh65 # -flags option
66 ${JINFO} -J-XX:+UsePerfData -flags $appJavaPid
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixNativeDispatcher.java68 static int open(UnixPath path, int flags, int mode) throws UnixException { argument
71 return open0(buffer.address(), flags, mode);
76 private static native int open0(long pathAddress, int flags, int mode) argument
82 static int openat(int dfd, byte[] path, int flags, int mode) throws UnixException { argument
85 return openat0(dfd, buffer.address(), flags, mode);
90 private static native int openat0(int dfd, long pathAddress, int flags, int mode) argument
553 // flags returned by init to indicate capabilities
562 int flags = init();
564 hasAtSysCalls = (flags & HAS_AT_SYSCALLS) > 0;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DMemberEnter.java180 (sym.flags() & STATIC) != 0 &&
224 int flags = (int)(sym.flags() & AccessFlags);
225 switch (flags) {
419 if ((tree.mods.flags & Flags.ENUM) != 0 &&
420 (types.supertype(tree.sym.type).tsym.flags() & Flags.ENUM) == 0) {
568 m.flags_field = chk.checkFlags(tree.pos(), tree.mods.flags, m, tree);
593 if (lastParam != null && (lastParam.mods.flags & Flags.VARARGS) != 0)
614 if ((tree.mods.flags & STATIC) != 0) localEnv.info.staticLevel++;
620 if ((tree.mods.flags
1225 DefaultConstructor(TreeMaker make, ClassSymbol c, List<Type> typarams, List<Type> argtypes, List<Type> thrown, long flags, boolean based) argument
[all...]
H A DResolve.java149 owner.kind == MTH && (owner.flags() & BLOCK) != 0) &&
150 (owner.flags() & STATIC) == 0;
163 switch ((short)(c.flags() & AccessFlags)) {
179 (env.enclMethod.mods.flags & ANONCONSTR) != 0;
233 switch ((short)(sym.flags() & AccessFlags)) {
263 env.info.selectSuper && (sym.flags() & STATIC) == 0 && sym.kind != TYP)
300 (c.flags() & INTERFACE) == 0 &&
304 ((sym.flags() & STATIC) != 0 || sym.kind == TYP || site.tsym.isSubClass(c, types))))
336 if (useVarargs && (m.flags() & VARARGS) == 0)
610 (sym.flags()
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DServerRequestImpl.java109 if ((arg.flags() == org.omg.CORBA.ARG_IN.value) ||
110 (arg.flags() == org.omg.CORBA.ARG_INOUT.value)) {
169 // set_exception. (internal flags ensure this). However, the user
243 if ((arg.flags() == org.omg.CORBA.ARG_OUT.value) ||
244 (arg.flags() == org.omg.CORBA.ARG_INOUT.value)) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java280 // semantic flags:
368 public static boolean isDefined (int code) { return 0 <= code && code < number_of_codes && flags(code, false) != 0; }
369 public static boolean wideIsDefined(int code) { return isDefined(code) && flags(code, true) != 0; }
395 static int flags (int code, boolean is_wide) { method in class:Bytecodes
399 static int format_bits (int code, boolean is_wide) { return flags(code, is_wide) & _all_fmt_bits; }
401 return (flags(code, is_wide) & test_flags) == test_flags;
409 int flags = more_flags;
412 flags |= _fmt_not_simple; // but variable
416 flags |= _fmt_not_variable; // but simple
420 flags |
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSJavaVM.java138 addField("flags", FIELD_FLAGS);
157 VM.Flag[] flags = vm.getCommandLineFlags();
159 if (flags != null) {
160 for (int f = 0; f < flags.length; f++) {
161 VM.Flag flag = flags[f];
/openjdk7/jdk/src/share/classes/sun/font/
H A DTextLineComponent.java121 * If flags[0] is true on entry, rejustification is allowed. If
123 * formed or split), flags[0] will be set on exit.
125 public TextLineComponent applyJustificationDeltas(float[] deltas, int deltaStart, boolean[] flags); argument
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.hpp86 jbyte flags; // flags indicating misc attributes member in struct:__anon421
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DDeclarationMaker.java117 long flags = AptEnv.getFlags(c); // forces symbol completion
123 if ((flags & Flags.ANNOTATION) != 0) {
125 } else if ((flags & Flags.INTERFACE) != 0) {
127 } else if ((flags & Flags.ENUM) != 0) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DFilteredMemberList.java113 return s == null || (s.flags() & SYNTHETIC) != 0;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_md.h56 int md_send(int s, const char *msg, int len, int flags);
/openjdk7/jdk/src/share/native/com/sun/tools/jdi/
H A DSharedMemoryConnection.c130 /* next byte is the flags */
131 (*env)->SetByteArrayRegion(env, array, 8, 1, (const jbyte *)&(str->type.cmd.flags));
134 if (str->type.cmd.flags & JDWPTRANSPORT_FLAGS_REPLY) {
171 unsigned char pktHeader[11]; /* sizeof length + id + flags + cmdSet + cmd */
187 str->type.cmd.flags = (jbyte)pktHeader[8];
189 if (str->type.cmd.flags & JDWPTRANSPORT_FLAGS_REPLY) {
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_types.h120 mlib_s32 flags; /* collection of helpful hints */ member in struct:__anon781
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DEncKDCRepPart.java49 * flags [4] TicketFlags,
72 public TicketFlags flags; field in class:EncKDCRepPart
100 flags = new_flags;
156 flags = TicketFlags.parse(der.getData(), (byte) 0x04, false);
195 true, (byte) 0x04), flags.asn1Encode());
H A DEncTicketPart.java44 * flags [0] TicketFlags,
66 public TicketFlags flags; field in class:EncTicketPart
90 flags = new_flags;
152 flags = TicketFlags.parse(der.getData(), (byte) 0x00, false);
185 true, (byte) 0x00), flags.asn1Encode());

Completed in 112 milliseconds

1234567891011>>