Searched defs:getIntAttribute (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFMetadata.java97 protected static int getIntAttribute(Node node, String name, method in class:GIFMetadata
135 protected static int getIntAttribute(Node node, String name, method in class:GIFMetadata
138 return getIntAttribute(node, name, -1, true, bounded, min, max);
285 int index = getIntAttribute(entry, "index", true, 0, 255);
289 red[index] = (byte)getIntAttribute(entry, "red", true, 0, 255);
290 green[index] = (byte)getIntAttribute(entry, "green", true, 0, 255);
291 blue[index] = (byte)getIntAttribute(entry, "blue", true, 0, 255);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DJ2DAnalyzer.java364 int numreps = getIntAttribute(line, "num-reps");
365 int numunits = getIntAttribute(line, "num-units");
445 public static int getIntAttribute(String line, String attrname) { method in class:J2DAnalyzer
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGMetadata.java1111 private int getIntAttribute(Node node, String name, method in class:PNGMetadata
1133 private int getIntAttribute(Node node, String name) method in class:PNGMetadata
1135 return getIntAttribute(node, name, -1, true);
1257 IHDR_width = getIntAttribute(node, "width");
1258 IHDR_height = getIntAttribute(node, "height");
1291 int index = getIntAttribute(PLTE_entry, "index");
1300 (byte)getIntAttribute(PLTE_entry, "red");
1302 (byte)getIntAttribute(PLTE_entry, "green");
1304 (byte)getIntAttribute(PLTE_entry, "blue");
1325 bKGD_index = getIntAttribute(bKGD_nod
[all...]

Completed in 35 milliseconds