Searched refs:isDefined (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAttributeSet.java104 public boolean isDefined(Object attrName); method in interface:AttributeSet
H A DLabelView.java147 if (attr.isDefined(StyleConstants.Background)) {
H A DSimpleAttributeSet.java105 public boolean isDefined(Object attrName) { method in class:SimpleAttributeSet
357 public boolean isDefined(Object attrName) { method in class:SimpleAttributeSet.EmptyAttributeSet
H A DStyleContext.java885 * @see AttributeSet#isDefined
887 public boolean isDefined(Object key) { method in class:StyleContext.SmallAttributeSet
1299 if (isDefined(StyleConstants.NameAttribute)) {
1402 * @see AttributeSet#isDefined
1404 public boolean isDefined(Object attrName) { method in class:StyleContext.NamedStyle
1405 return attributes.isDefined(attrName);
H A DAbstractDocument.java753 (a == null || !a.isDefined(StyleConstants.ComposedTextAttribute))) {
1861 * @see AttributeSet#isDefined
1863 public boolean isDefined(Object attrName) { method in class:AbstractDocument.AbstractElement
1864 return attributes.isDefined(attrName);
2089 if (attributes.isDefined(ElementNameAttribute)) {
H A DGlyphView.java153 if (attr.isDefined(StyleConstants.Background)) {
H A DUtilities.java876 (as.isDefined(StyleConstants.ComposedTextAttribute)));
/openjdk7/jdk/test/javax/swing/text/DefaultStyledDocument/6636983/
H A Dbug6636983.java68 if (a.isDefined(StyleConstants.ComposedTextAttribute)) {
73 if (a.isDefined(SwingUtilities2.IMPLIED_CR)) {
74 throw new RuntimeException("a.isDefined(SwingUtilities2.IMPLIED_CR) is true");
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DMockAttributeSet.java50 public boolean isDefined(Object name) method in class:MockAttributeSet
/openjdk7/jdk/test/sun/nio/cs/
H A DTestISCII91.java63 if (Character.isDefined((char) c) && !Character.isISOControl((char) c) && encoder.canEncode((char) c)) {
H A DTestIBMBugs.java167 if (!Character.isDefined((char)c)) continue;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMuxingAttributeSet.java148 * @see AttributeSet#isDefined
150 public boolean isDefined(Object key) { method in class:MuxingAttributeSet
153 if (as[i].isDefined(key)) {
H A DStyleSheet.java215 if (attr.isDefined(HTML.Attribute.ID)) {
220 else if (attr.isDefined(HTML.Attribute.CLASS)) {
242 if (attr.isDefined(HTML.Attribute.ID)) {
246 else if (attr.isDefined(HTML.Attribute.CLASS)) {
564 if (tag != null && old.isDefined(tag)) {
704 if (tag != null && old.isDefined(tag)) {
786 * @see AttributeSet#isDefined
788 public boolean isDefined(Object key) { method in class:StyleSheet.LargeConversionSet
793 return super.isDefined(cssKey);
796 return super.isDefined(ke
844 public boolean isDefined(Object key) { method in class:StyleSheet.SmallConversionSet
2700 public boolean isDefined(Object key) { method in class:StyleSheet.ViewAttributeSet
[all...]
H A DImageView.java297 if (anchorAttr != null && anchorAttr.isDefined
621 if (attr.isDefined(name)) { // does not check parents!
904 getAttributes().isDefined(HTML.Attribute.HEIGHT)) {
908 getAttributes().isDefined(HTML.Attribute.WIDTH)) {
H A DHTMLDocument.java449 else if (attr.isDefined(StyleConstants.ComposedTextAttribute)) {
453 if (attr.isDefined(IMPLIED_CR)) {
1452 if (attr != null && attr.isDefined(attribute)) {
1480 if (check.isDefined(attribute) &&
1955 if (a.isDefined(tag) ||
2599 if (isStyleCSS && a.isDefined(HTML.Attribute.STYLE)) {
2695 if (isStyleCSS && a.isDefined(HTML.Attribute.STYLE)) {
2916 (foundInsertTag || !a.isDefined(IMPLIED)))) {
3109 if (attr.isDefined(IMPLIED)) {
3147 if (attr.isDefined(IMPLIE
[all...]
H A DMinimalHTMLWriter.java266 s.isDefined(StyleConstants.NameAttribute)) {
H A DTableView.java161 if (a.isDefined(HTML.Attribute.COLSPAN)) {
182 if (a.isDefined(HTML.Attribute.ROWSPAN)) {
H A DHTMLEditorKit.java1189 if (elem.getAttributes().isDefined(HTML.Attribute.ROWS)) {
1191 } else if (elem.getAttributes().isDefined(HTML.Attribute.COLS)) {
H A DHTMLWriter.java739 if (attr != null && attr.isDefined(t)) {
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDeclaration.java93 public boolean isDefined() { method in class:ClassDeclaration
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DBeanValidator.java101 if (!ignore && isDefined(type, "equals", Object.class)) {
110 if (Comparable.class.isAssignableFrom(type) && isDefined(type, "compareTo", Object.class)) {
235 private boolean isDefined(Class type, String name, Class... params) { method in class:BeanValidator
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java336 Assert.that(isDefined(code), "illegal code " + code);
368 public static boolean isDefined (int code) { return 0 <= code && code < number_of_codes && flags(code, false) != 0; } method in class:Bytecodes
369 public static boolean wideIsDefined(int code) { return isDefined(code) && flags(code, true) != 0; }
811 if (isDefined(i)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJPackage.java340 public boolean isDefined(String classLocalName) { method in class:JPackage
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java422 ((!attributes.isDefined(a.name)) &&
423 (!attributes.isDefined(HTML.getAttributeKey(a.name)))))) {
1462 if (attributes.isDefined(attname)) {
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java5494 * the {@link #isDefined(int)} method.
5507 public static boolean isDefined(char ch) { method in class:Character
5508 return isDefined((int)ch);
5531 public static boolean isDefined(int codePoint) { method in class:Character

Completed in 161 milliseconds

12