Searched refs:flags (Results 276 - 300 of 573) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_List.cpp156 void AwtList::SetDragCapture(UINT flags) argument
164 void AwtList::ReleaseDragCapture(UINT flags) argument
166 if ((::GetCapture() == GetListHandle()) && ((flags & ALL_MK_BUTTONS) == 0)) {
178 long flags = SWP_NOACTIVATE | SWP_NOZORDER | SWP_NOCOPYBITS;
182 SetWindowPos(hList, 0, 0, 0, w, h, flags);
426 AwtList::WmMouseUp(UINT flags, int x, int y, int button) argument
438 MsgRouting compResult = AwtComponent::WmMouseUp(flags, x, y, button);
443 AwtList::WmMouseDown(UINT flags, int x, int y, int button) argument
445 MsgRouting mrResult = AwtComponent::WmMouseDown(flags, x, y, button);
506 MsgRouting AwtList::WmPrint(HDC hDC, LPARAM flags) argument
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DExceptionEvents.java106 static String[] flags; field in class:ExceptionEvents
121 super(flags);
164 flags = (String[])flagList.toArray(new String[0]);
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_listener.c85 * u2 flags 0x0001: incremental vs. complete
263 unsigned short flags; local
267 flags = recv_u2();
270 site_write(env, flags, ratio);
296 /* flags not used */
H A Dhprof_site.c361 * to the given flags:
370 site_write(JNIEnv *env, int flags, double cutoff) argument
373 LOG3("site_write", "flags", flags);
375 if (flags & SITE_FORCE_GC) {
401 iterate.changed_only = flags & SITE_DUMP_INCREMENTAL;
406 if (flags & SITE_SORT_BY_ALLOC) {
435 flags,
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.cpp50 StackMapFrame* StackMapFrame::frame_in_exception_handler(u1 flags) { argument
53 StackMapFrame* frame = new StackMapFrame(_offset, flags, _locals_size, 0, _max_locals, _max_stack, _locals, stack, _verifier);
86 // "this" has been initialized - reset flags
175 // We allow flags of {UninitThis} to assign to {} if-and-only-if the
192 if (!flag_this_uninit() || target->flags() != 0) {
244 bool match_flags = (_flags | target->flags()) == target->flags();
395 str->indent().print_cr("flags: {%s }",
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dbytecodes.hpp313 // semantic flags:
393 static bool is_defined (int code) { return 0 <= code && code < number_of_codes && flags(code, false) != 0; }
394 static bool wide_is_defined(int code) { return is_defined(code) && flags(code, true) != 0; }
431 static int compute_flags (const char* format, int more_flags = 0); // compute the flags
432 static int flags (int code, bool is_wide) { function in class:Bytecodes
436 static int format_bits (Code code, bool is_wide) { return flags(code, is_wide) & _all_fmt_bits; }
438 return (flags(code, is_wide) & test_flags) == test_flags;
H A Dbytecodes.cpp203 // 2. to derive bytecode format flags (_fmt_has_k, etc.)
209 int flags = more_flags; local
213 flags |= _fmt_not_simple; // but variable
216 flags |= _fmt_not_variable; // but simple
220 flags |= _fmt_not_variable | _fmt_not_simple;
233 assert(flags == (jchar)flags, "change _format_flags");
234 return flags;
254 flags |= this_flag;
258 flags |
[all...]
/openjdk7/jdk/src/share/back/
H A DoutStream.c57 jbyte flags, jbyte commandSet, jbyte command)
68 stream->packet.type.cmd.flags = flags;
81 stream->packet.type.cmd.flags = (jbyte)JDWPTRANSPORT_FLAGS_REPLY;
94 JDI_ASSERT(!(stream->packet.type.cmd.flags & JDWPTRANSPORT_FLAGS_REPLY));
56 outStream_initCommand(PacketOutputStream *stream, jint id, jbyte flags, jbyte commandSet, jbyte command) argument
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp460 CallInst *SharkBuilder::CreateMemoryBarrier(int flags) { argument
462 LLVMValue::bit_constant((flags & BARRIER_LOADLOAD) ? 1 : 0),
463 LLVMValue::bit_constant((flags & BARRIER_LOADSTORE) ? 1 : 0),
464 LLVMValue::bit_constant((flags & BARRIER_STORELOAD) ? 1 : 0),
465 LLVMValue::bit_constant((flags & BARRIER_STORESTORE) ? 1 : 0),
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DFileDispatcherImpl.c395 DWORD flags = 0; local
401 flags |= LOCKFILE_FAIL_IMMEDIATELY;
404 flags |= LOCKFILE_EXCLUSIVE_LOCK;
406 result = LockFileEx(h, flags, 0, lowNumBytes, highNumBytes, &o);
413 if (flags & LOCKFILE_FAIL_IMMEDIATELY) {
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBuffer.java50 * jbyte flags; // miscellaneous attribute flags
344 byte flags = buffer.get();
350 flags, unitsByte, varByte, dataOffset);
356 boolean supported = (flags & 0x01) != 0;
543 byte flags, byte unitsByte, byte varByte,
555 + Integer.toHexString(flags));
541 dump_entry_fixed(int entry_start, int nameOffset, int vectorLength, byte typeCodeByte, byte flags, byte unitsByte, byte varByte, int dataOffset) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeInfo.java135 (select.sym.flags() & SYNTHETIC) != 0) {
223 return (((JCVariableDecl)tree).mods.flags & ENUM) != 0;
692 /** If this tree is a declaration or a block, return its flags field,
695 public static long flags(JCTree tree) { method in class:TreeInfo
698 return ((JCVariableDecl) tree).mods.flags;
700 return ((JCMethodDecl) tree).mods.flags;
702 return ((JCClassDecl) tree).mods.flags;
704 return ((JCBlock) tree).flags;
710 /** Return first (smallest) flag in `flags':
711 * pre: flags !
713 firstFlag(long flags) argument
722 flagNames(long flags) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java864 public boolean imageUpdate(Image img, int flags, int x, int y, argument
873 if ((flags & (ABORT|ERROR)) != 0) {
903 if ((flags & ImageObserver.HEIGHT) != 0 && !getElement().
907 if ((flags & ImageObserver.WIDTH) != 0 && !getElement().
933 if ((flags & (FRAMEBITS|ALLBITS)) != 0) {
936 else if ((flags & SOMEBITS) != 0 && sIsInc) {
939 return ((flags & ALLBITS) == 0);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DMain.java206 * @param flags The array of command line arguments.
208 public Collection<File> processArgs(String[] flags) { // XXX sb protected argument
209 return processArgs(flags, null);
212 public Collection<File> processArgs(String[] flags, String[] classNames) { // XXX sb protected argument
214 while (ac < flags.length) {
215 String flag = flags[ac];
239 if (ac == flags.length) {
243 String operand = flags[ac];
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DAttributeWriter.java182 e.flags));
188 if ((e.flags & CharacterRangeTable_attribute.CRT_STATEMENT) != 0)
190 if ((e.flags & CharacterRangeTable_attribute.CRT_BLOCK) != 0)
192 if ((e.flags & CharacterRangeTable_attribute.CRT_ASSIGNMENT) != 0)
194 if ((e.flags & CharacterRangeTable_attribute.CRT_FLOW_CONTROLLER) != 0)
196 if ((e.flags & CharacterRangeTable_attribute.CRT_FLOW_TARGET) != 0)
198 if ((e.flags & CharacterRangeTable_attribute.CRT_INVOKE) != 0)
200 if ((e.flags & CharacterRangeTable_attribute.CRT_CREATE) != 0)
202 if ((e.flags & CharacterRangeTable_attribute.CRT_BRANCH_TRUE) != 0)
204 if ((e.flags
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRegion.java697 private void filterSpans(Region ra, Region rb, int flags) { argument
727 if ((flags & INCLUDE_B) == 0) break;
740 if ((flags & INCLUDE_A) == 0) break;
753 if ((flags & INCLUDE_A) != 0) {
766 if ((flags & INCLUDE_B) != 0) {
795 if ((flags & INCLUDE_B) == 0) break;
805 if ((flags & INCLUDE_A) == 0) break;
818 appendit = ((flags & INCLUDE_A) != 0);
822 appendit = ((flags & INCLUDE_B) != 0);
825 appendit = ((flags
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwrite.c135 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
311 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
418 (png_ptr->flags & PNG_FLAG_KEEP_UNSAFE_CHUNKS)))
1418 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_LEVEL;
1430 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_MEM_LEVEL;
1442 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_STRATEGY;
1470 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_WINDOW_BITS;
1485 png_ptr->flags |= PNG_FLAG_ZLIB_CUSTOM_METHOD;
1499 png_ptr->flags |= PNG_FLAG_ZTXT_CUSTOM_LEVEL;
1511 png_ptr->flags |
[all...]
H A Dpngrtran.c67 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
68 png_ptr->flags |= PNG_FLAG_CRC_CRITICAL_USE;
72 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
73 png_ptr->flags |= PNG_FLAG_CRC_CRITICAL_USE |
84 png_ptr->flags &= ~PNG_FLAG_CRC_CRITICAL_MASK;
95 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
96 png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_USE;
100 png_ptr->flags &= ~PNG_FLAG_CRC_ANCILLARY_MASK;
101 png_ptr->flags |= PNG_FLAG_CRC_ANCILLARY_USE |
106 png_ptr->flags
2823 png_do_read_filler(png_row_infop row_info, png_bytep row, png_uint_32 filler, png_uint_32 flags) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageWriter.java238 // we must declare unconditional presence of code flags.
245 // cost of a useless unconditional flags byte
743 // If there are many species of attributes, use 63-bit flags.
755 Utils.log.info("Note: Many "+Attribute.contextName(i)+" attributes forces 63-bit flags");
861 // Scratch variables for processing attributes and flags.
866 // Make note of which flags appear in the class file.
868 maxFlags[ctype] |= h.flags;
1032 int flags = ic.flags;
1033 assert((flags
[all...]
H A DAttribute.java292 * presence of attributes. That is, flags are a mix of modifier
301 protected int flags; // defined here for convenience field in class:Attribute.Holder
565 byte flags; // EF_SIGN, etc. field in class:Attribute.Layout.Element
573 boolean flagTest(byte mask) { return (flags & mask) != 0; }
607 + "<"+ (flags==0?"":""+flags)+kind+len
873 e.flags |= EF_DELTA;
884 e.flags |= EF_DELTA;
961 ce.flags |= EF_BACK;
1003 e.flags |
[all...]
/openjdk7/jdk/src/solaris/native/java/net/
H A DNetworkInterface.c148 static int getFlags(int sock, const char *ifname, int *flags);
560 int flags = 0; local
571 ret = getFlags(sock, name_utf, &flags);
581 return flags;
856 int flags = 0; local
912 if (getFlags(sock, name, &flags) < 0 || flags < 0) {
1286 static int getFlags(int sock, const char *ifname, int *flags) { argument
1297 *flags = (if2.ifr_flags & 0xffff);
1299 *flags
1545 int flags = 0; local
1675 getFlags(int sock, const char *ifname, int *flags) argument
1981 getFlags(int sock, const char *ifname, int *flags) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRE.java271 * standard POSIX regcomp flags</li>
396 int matchFlags; // Match behaviour flags
448 * (bytecode) data. Permits special flags to be passed in to modify matching
452 * @param matchFlags One or more of the RE match behaviour flags (RE.MATCH_*):
533 * Sets match behaviour flags which alter the way RE does matching.
534 * @param matchFlags One or more of the RE match behaviour flags (RE.MATCH_*):
548 * Returns the current match behaviour flags.
549 * @return Current match behaviour flags (RE.MATCH_*).
864 if ((program.flags & REProgram.OPT_HASBACKREFS) != 0)
887 if ((program.flags
1599 subst(String substituteIn, String substitution, int flags) argument
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DIndicRearrangementProcessor.cpp71 IndicRearrangementFlags flags = (IndicRearrangementFlags) SWAPW(entry->flags); local
73 if (flags & irfMarkFirst) {
77 if (flags & irfMarkLast) {
81 doRearrangementAction(glyphStorage, (IndicRearrangementVerb) (flags & irfVerbMask));
83 if (!(flags & irfDontAdvance)) {
H A DIndicRearrangementProcessor2.cpp69 IndicRearrangementFlags flags = (IndicRearrangementFlags) SWAPW(entry->flags); local
71 if (flags & irfMarkFirst) {
75 if (flags & irfMarkLast) {
79 doRearrangementAction(glyphStorage, (IndicRearrangementVerb) (flags & irfVerbMask));
81 if (!(flags & irfDontAdvance)) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethodData.java138 VM.Flag[] flags = VM.getVM().getCommandLineFlags();
139 for (int f = 0; f < flags.length; f++) {
140 VM.Flag flag = flags[f];

Completed in 111 milliseconds

<<11121314151617181920>>