Searched defs:ge (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/java2d/
H A DHeadlessGraphicsEnvironment.java64 private GraphicsEnvironment ge; field in class:HeadlessGraphicsEnvironment
66 public HeadlessGraphicsEnvironment(GraphicsEnvironment ge) { argument
67 this.ge = ge;
89 return ge.createGraphics(img); }
91 public Font[] getAllFonts() { return ge.getAllFonts(); }
94 return ge.getAvailableFontFamilyNames(); }
97 return ge.getAvailableFontFamilyNames(l); }
101 return ge;
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyFile.java488 PolicyParser.GrantEntry ge = enum_.nextElement();
489 addGrantEntry(ge, keyStore);
530 CodeSource getCodeSource(PolicyParser.GrantEntry ge, KeyStore keyStore) argument
534 if (ge.signedBy != null) {
535 certs = getCertificates(keyStore, ge.signedBy);
541 ge.signedBy + ", ignoring.");
549 if (ge.codeBase != null)
550 location = new URL(ge.codeBase);
554 if (ge.principals == null || ge
568 addGrantEntry(PolicyParser.GrantEntry ge, KeyStore keyStore) argument
[all...]
H A DPolicyParser.java189 GrantEntry ge = parseGrantEntry();
191 if (ge != null)
192 add(ge);
204 public void add(GrantEntry ge) argument
206 grantEntries.addElement(ge);
214 public boolean remove(GrantEntry ge) argument
216 return grantEntries.removeElement(ge);
280 GrantEntry ge = enum_.nextElement();
281 ge.write(out);
638 * ge
[all...]
/openjdk7/langtools/test/tools/javap/4870651/
H A DTest.java57 abstract <G extends Exception> void ge() throws G; method in class:Test
/openjdk7/hotspot/src/share/vm/opto/
H A Dsubnode.hpp266 enum mask { eq = 0, ne = 4, le = 5, ge = 7, lt = 3, gt = 1, illegal = 8 }; enumerator in enum:VALUE_OBJ_CLASS_SPEC::mask
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.cpp1129 BasicBlock *ge = builder()->CreateBlock(ip, "fcmp_ge"); local
1140 builder()->CreateCondBr(builder()->CreateFCmpULT(a, b), lt, ge);
1142 builder()->SetInsertPoint(ge);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java650 PolicyParser.GrantEntry ge = enum_.nextElement();
651 addGrantEntry(ge, keyStore, newInfo);
767 private CodeSource getCodeSource(PolicyParser.GrantEntry ge, KeyStore keyStore, argument
771 if (ge.signedBy != null) {
772 certs = getCertificates(keyStore, ge.signedBy, newInfo);
778 ge.signedBy + "' - ignoring entry");
786 if (ge.codeBase != null)
787 location = new URL(ge.codeBase);
797 private void addGrantEntry(PolicyParser.GrantEntry ge, argument
802 debug.println(" signedBy " + ge
[all...]
H A DPolicyParser.java202 GrantEntry ge = parseGrantEntry();
204 if (ge != null)
205 add(ge);
226 public void add(GrantEntry ge) argument
228 grantEntries.addElement(ge);
236 public boolean remove(GrantEntry ge) argument
238 return grantEntries.removeElement(ge);
335 GrantEntry ge = enum_.nextElement();
336 ge.write(out);
839 * ge
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dfontpath.c192 jobject ge = (*env)->CallStaticObjectMethod(env, geCls, getLocalGE); local
196 if ((*env)->IsInstanceOf(env, ge, sgeCls)) {
200 isLocal = (*env)->CallBooleanMethod(env, ge, isDisplayLocal);
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java220 PolicyParser.GrantEntry ge = enum_.nextElement();
223 if (ge.signedBy != null) {
225 String signers[] = parseSigners(ge.signedBy);
240 ge.principals.listIterator(0);
257 ge.permissionElements();
293 PolicyEntry pEntry = new PolicyEntry(this, ge);
752 PolicyEntry(PolicyTool tool, PolicyParser.GrantEntry ge) argument
763 if (ge.codeBase != null)
764 location = new URL(ge.codeBase);
771 System.out.println(" Signers = " + ge
[all...]

Completed in 94 milliseconds