Searched refs:flags (Results 1 - 25 of 573) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DAccessFlags.java31 public AccessFlags(long flags) { argument
32 this.flags = flags;
35 private long flags; field in class:AccessFlags
37 // Java access flags
38 public boolean isPublic () { return (flags & JVM_ACC_PUBLIC ) != 0; }
39 public boolean isPrivate () { return (flags & JVM_ACC_PRIVATE ) != 0; }
40 public boolean isProtected () { return (flags & JVM_ACC_PROTECTED ) != 0; }
41 public boolean isStatic () { return (flags & JVM_ACC_STATIC ) != 0; }
42 public boolean isFinal () { return (flags
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DDuplicateFormatFlagsException.java29 * Unchecked exception thrown when duplicate flags are provided in the format
42 private String flags; field in class:DuplicateFormatFlagsException
45 * Constructs an instance of this class with the specified flags.
48 * The set of format flags which contain a duplicate flag.
53 this.flags = f;
57 * Returns the set of flags which contains a duplicate flag.
59 * @return The flags
62 return flags;
66 return String.format("Flags = '%s'", flags);
H A DIllegalFormatFlagsException.java29 * Unchecked exception thrown when an illegal combination flags is given.
41 private String flags; field in class:IllegalFormatFlagsException
44 * Constructs an instance of this class with the specified flags.
47 * The set of format flags which contain an illegal combination
52 this.flags = f;
56 * Returns the set of flags which contains an illegal combination.
58 * @return The flags
61 return flags;
65 return "Flags = '" + flags + "'";
H A DUnknownFormatFlagsException.java41 private String flags; field in class:UnknownFormatFlagsException
44 * Constructs an instance of this class with the specified flags.
47 * The set of format flags which contain an unknown flag
52 this.flags = f;
56 * Returns the set of flags which contains an unknown flag.
58 * @return The flags
61 return flags;
66 return "Flags = " + flags;
H A DFormattable.java37 * stock's name depending on the flags and length constraints:
131 * @param flags
132 * The flags modify the output format. The value is interpreted as
133 * a bitmask. Any combination of the following flags may be set:
136 * FormattableFlags#ALTERNATE}. If no flags are set, the default
163 void formatTo(Formatter formatter, int flags, int width, int precision); argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DPeerEvent.java35 private long flags; field in class:PeerEvent
37 public PeerEvent(Object source, Runnable runnable, long flags) { argument
38 this(source, runnable, null, false, flags);
42 boolean catchExceptions, long flags) {
44 this.flags = flags;
48 return flags;
41 PeerEvent(Object source, Runnable runnable, Object notifier, boolean catchExceptions, long flags) argument
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsChannelFactory.java62 * Represents the flags from a user-supplied set of open options.
85 Flags flags = new Flags();
89 case READ : flags.read = true; break;
90 case WRITE : flags.write = true; break;
91 case APPEND : flags.append = true; break;
92 case TRUNCATE_EXISTING : flags.truncateExisting = true; break;
93 case CREATE : flags.create = true; break;
94 case CREATE_NEW : flags.createNew = true; break;
95 case DELETE_ON_CLOSE : flags.deleteOnClose = true; break;
96 case SPARSE : flags
219 open(String pathForWindows, String pathToCheck, Flags flags, long pSecurityDescriptor) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixChannelFactory.java54 * Represents the flags from a user-supplied set of open options.
69 Flags flags = new Flags();
73 case READ : flags.read = true; break;
74 case WRITE : flags.write = true; break;
75 case APPEND : flags.append = true; break;
76 case TRUNCATE_EXISTING : flags.truncateExisting = true; break;
77 case CREATE : flags.create = true; break;
78 case CREATE_NEW : flags.createNew = true; break;
79 case DELETE_ON_CLOSE : flags.deleteOnClose = true; break;
81 case SYNC : flags
181 open(int dfd, UnixPath path, String pathForPermissionCheck, Flags flags, int mode) argument
[all...]
H A DUnixCopyFile.java47 // The flags that control how a file is copied or moved
59 // flags that indicate if we should fail if attributes cannot be copied
65 Flags flags = new Flags();
66 flags.followLinks = true;
69 flags.replaceExisting = true;
73 flags.followLinks = false;
79 flags.copyBasicAttributes = true;
80 flags.copyPosixAttributes = true;
81 flags.copyNonPosixAttributes = true;
82 flags
127 copyDirectory(UnixPath source, UnixFileAttributes attrs, UnixPath target, Flags flags) argument
219 copyFile(UnixPath source, UnixFileAttributes attrs, UnixPath target, Flags flags, long addressToPollForCancel) argument
297 copyLink(UnixPath source, UnixFileAttributes attrs, UnixPath target, Flags flags) argument
325 copySpecial(UnixPath source, UnixFileAttributes attrs, UnixPath target, Flags flags) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_get.h67 return img->flags;
86 static int mlib_ImageTestFlags(const mlib_image *img, mlib_s32 flags) argument
88 return (img->flags & flags);
94 return (img->flags & MLIB_IMAGE_ALIGNED64);
100 return (img->flags & MLIB_IMAGE_ALIGNED8);
106 return (img->flags & MLIB_IMAGE_ALIGNED4);
112 return (img->flags & MLIB_IMAGE_ALIGNED2);
118 return (img->flags & MLIB_IMAGE_WIDTH8X);
124 return (img->flags
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DElemDesc.java28 * This class has a series of flags (bit values) that describe an HTML element
36 /** Bit flags to tell about this element type. */
40 * Table of attribute names to integers, which contain bit flags telling about
121 * Construct an ElemDesc from a set of bit flags.
124 * @param flags Bit flags that describe the basic properties of this element type.
126 ElemDesc(int flags) argument
128 m_flags = flags;
135 * @param flags Bit flags tha
139 is(int flags) argument
157 setAttr(String name, int flags) argument
174 isAttrFlagSet(String name, int flags) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DElemDesc.java38 /** Element's flags, describing the role this element plays during
116 * Construct an ElementDescription with an initial set of flags.
118 * @param flags Element flags
121 ElemDesc(int flags) argument
123 m_flags = flags;
127 * "is (this element described by these flags)".
131 * corresponding bits are set in our internal flags. Note that this
135 * @param flags Vector of flags t
143 is(int flags) argument
156 setAttr(String name, int flags) argument
176 isAttrFlagSet(String name, int flags) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DFlags.java34 /** Access flags and other modifiers for Java classes and members.
45 public static String toString(long flags) { argument
48 for (Flag s : asFlagSet(flags)) {
57 EnumSet<Flag> flags = EnumSet.noneOf(Flag.class);
58 if ((mask&PUBLIC) != 0) flags.add(Flag.PUBLIC);
59 if ((mask&PRIVATE) != 0) flags.add(Flag.PRIVATE);
60 if ((mask&PROTECTED) != 0) flags.add(Flag.PROTECTED);
61 if ((mask&STATIC) != 0) flags.add(Flag.STATIC);
62 if ((mask&FINAL) != 0) flags.add(Flag.FINAL);
63 if ((mask&SYNCHRONIZED) != 0) flags
277 asModifierSet(long flags) argument
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DNamedValue.java68 * System.out.println("This nv flag is " + nv.flags());
123 public abstract int flags(); method in class:NamedValue
H A DNVList.java112 * @param flags one of the argument mode flags
116 public abstract NamedValue add(int flags); argument
127 * @param flags one of the argument mode flags
131 public abstract NamedValue add_item(String item_name, int flags); argument
141 * @param flags one of the following argument passing modes:
147 public abstract NamedValue add_value(String item_name, Any val, int flags); argument
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzutil.c58 uLong flags; local
60 flags = 0;
63 case 4: flags += 1; break;
64 case 8: flags += 2; break;
65 default: flags += 3;
69 case 4: flags += 1 << 2; break;
70 case 8: flags += 2 << 2; break;
71 default: flags += 3 << 2;
75 case 4: flags += 1 << 4; break;
76 case 8: flags
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DFlagDumper.java33 VM.Flag[] flags = VM.getVM().getCommandLineFlags();
35 if (flags == null) {
38 for (int f = 0; f < flags.length; f++) {
39 out.print(flags[f].getName());
41 out.println(flags[f].getValue());
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_MECHANISM_INFO.java60 * CK_FLAGS flags;&nbsp;&nbsp;
88 * CK_FLAGS flags;
91 public long flags; field in class:CK_MECHANISM_INFO
94 long flags) {
97 this.flags = flags;
119 buffer.append("flags: ");
120 buffer.append(String.valueOf(flags));
122 buffer.append(Functions.mechanismInfoFlagsToString(flags));
93 CK_MECHANISM_INFO(long minKeySize, long maxKeySize, long flags) argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DHeader.java92 short flags = (short) getShort(msg, pos);
94 query = (flags & QR_BIT) == 0;
95 opcode = (flags & OPCODE_MASK) >>> OPCODE_SHIFT;
96 authoritative = (flags & AA_BIT) != 0;
97 truncated = (flags & TC_BIT) != 0;
98 recursionDesired = (flags & RD_BIT) != 0;
99 recursionAvail = (flags & RA_BIT) != 0;
100 rcode = (flags & RCODE_MASK);
/openjdk7/jdk/src/share/classes/sun/management/counter/
H A DAbstractCounter.java39 int flags; field in class:AbstractCounter
48 Variability variability, int flags,
53 this.flags = flags;
58 Variability variability, int flags) {
59 this(name, units, variability, flags, 0);
98 return (flags & Flags.SUPPORTED) == 0;
102 * return the flags associated with the counter.
105 return flags;
47 AbstractCounter(String name, Units units, Variability variability, int flags, int vectorLength) argument
57 AbstractCounter(String name, Units units, Variability variability, int flags) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DVMFlagsPanel.java32 /** Shows values of Java command line flags */
52 VM.Flag[] flags = VM.getVM().getCommandLineFlags();
55 if (flags == null) {
59 for (int f = 0; f < flags.length; f++) {
61 buf.append(flags[f].getName());
63 buf.append(flags[f].getValue());
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DAclEntry.java51 * <li><p> The {@link #flags flags} component is a set of {@link AclEntryFlag
52 * flags} to indicate how entries are inherited and propagated </p></li>
69 private final Set<AclEntryFlag> flags; field in class:AclEntry
78 Set<AclEntryFlag> flags)
83 this.flags = flags;
102 private Set<AclEntryFlag> flags; field in class:AclEntry.Builder
107 Set<AclEntryFlag> flags)
109 assert perms != null && flags !
75 AclEntry(AclEntryType type, UserPrincipal who, Set<AclEntryPermission> perms, Set<AclEntryFlag> flags) argument
104 Builder(AclEntryType type, UserPrincipal who, Set<AclEntryPermission> perms, Set<AclEntryFlag> flags) argument
214 setFlags(Set<AclEntryFlag> flags) argument
229 setFlags(AclEntryFlag... flags) argument
295 public Set<AclEntryFlag> flags() { method in class:AclEntry
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DShaderGen.c53 /** Evaluates to true if the given bit is set on the local flags variable. */
55 (((flags) & (flagbit)) != 0)
66 D3DShaderGen_WriteShader(char *source, char *target, char *name, int flags) argument
91 target, name, flags);
110 fprintf(stderr, "fxc failed for %s%d\n", name, flags);
130 D3DShaderGen_WritePixelShader(char *source, char *name, int flags) argument
132 D3DShaderGen_WriteShader(source, "ps_2_0", name, flags);
136 /** Extracts the CycleMethod enum value from the given flags variable. */
137 #define EXTRACT_CYCLE_METHOD(flags) \
138 ((flags)
209 D3DShaderGen_GenerateConvolveShader(int flags) argument
270 D3DShaderGen_GenerateRescaleShader(int flags) argument
334 D3DShaderGen_GenerateLookupShader(int flags) argument
421 D3DShaderGen_GenerateBasicGradShader(int flags) argument
629 D3DShaderGen_GenerateMultiGradShader(int flags, char *name, char *paintVars, char *distCode) argument
687 D3DShaderGen_GenerateLinearGradShader(int flags) argument
718 D3DShaderGen_GenerateRadialGradShader(int flags) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/util/
H A DPolicyUtils.java50 * Determines whether a mechanism's characteristics, as defined in flags,
52 * @param flags The mechanism's security characteristics
56 public static boolean checkPolicy(int flags, Map props) { argument
62 && (flags&NOPLAINTEXT) == 0) {
66 && (flags&NOACTIVE) == 0) {
70 && (flags&NODICTIONARY) == 0) {
74 && (flags&NOANONYMOUS) == 0) {
78 && (flags&FORWARD_SECRECY) == 0) {
82 && (flags&PASS_CREDENTIALS) == 0) {
/openjdk7/jdk/src/share/native/sun/java2d/
H A DShaderList.h69 jint flags; member in struct:_ShaderInfo
75 jint flags);
78 jint flags);

Completed in 107 milliseconds

1234567891011>>