Searched refs:fullName (Results 26 - 50 of 103) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeFont.java66 fullName = name;
121 int index = fullName.indexOf('.');
123 familyName = fullName.substring(0, index);
128 if (index+1 < fullName.length()) {
129 String styleStr = fullName.substring(index+1);
141 familyName = fullName;
154 fullName = physFont.fullName;
176 componentNames[0] = physFont.fullName;
457 " Name=" + fullName
[all...]
H A DType1Font.java304 if (familyName == null || fullName == null) {
372 while ((fullName == null || familyName == null || psName == null || fontType == null) && !eof) {
380 fullName = getString(bb);
439 //if we find fullName or familyName then use it as another name too
440 if (fullName != null) {
441 familyName = fullName2FamilyName(fullName);
443 fullName = familyName;
445 fullName = psName2FullName(psName);
679 return "** Type1 Font: Family="+familyName+ " Name="+fullName+
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCClassInfo.java162 public CClassInfo(Model model,JCodeModel cm, String fullName, Locator location, QName typeName, QName elementName, XSComponent source, CCustomizations customizations) { argument
165 int idx = fullName.indexOf('.');
168 this.shortName = model.allocator.assignClassName(parent,fullName);
170 this.parent = model.getPackage(cm._package(fullName.substring(0,idx)));
171 this.shortName = model.allocator.assignClassName(parent,fullName.substring(idx+1));
229 return fullName();
339 public String fullName() { method in class:CClassInfo
340 String r = parent.fullName();
499 return fullName();
H A DCArrayInfo.java92 public String fullName() { method in class:CArrayInfo
93 return itemType.getType().fullName()+"[]";
H A DCEnumLeafInfo.java196 public String fullName() { method in class:CEnumLeafInfo
197 return parent.fullName()+'.'+shortName;
/openjdk7/jdk/test/tools/launcher/
H A DClassPathWildCard.sh66 fullName=$1
67 fileName=`basename $fullName .java`
87 ) > $fullName
/openjdk7/jdk/make/tools/reorder/tools/
H A Dremove_mcount.c112 const char *fullName; local
129 fullName = argv[1];
134 fd = open(fullName, O_RDWR);
136 fail("Unable to open ELF file %s.\n", fullName);
H A Dmcount.c91 const char *fullName; member in struct:ElfInfo
178 static ElfInfo *createElfInfo(const char *fullName) argument
192 /*fprintf(stderr, "# mapfile info for %s.\n", fullName);*/
195 elfInfo->fullName = strdup(fullName);
196 p = rindex(elfInfo->fullName, '/');
197 elfInfo->baseName = (p == NULL) ? elfInfo->fullName : p + 1;
202 elfInfo->fd = open(fullName, O_RDONLY);
204 fail("Unable to open ELF file %s.\n", fullName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBTypeAndAnnotation.java64 return type.fullName();
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java398 ParseException.badAbstract (scanner, entry.fullName ());
525 ParseException.alreadyDerived (scanner, realParent.fullName (), entry.fullName ());
530 ParseException.nonAbstractParent (scanner, entry.fullName (), parent.fullName ());
533 entry.fullName(), parent.fullName() ) ;
535 ParseException.wrongType (scanner, parent.fullName (), "interface", entryName (parent));
541 throw ParseException.badState (scanner, entry.fullName ());
688 ParseException.badAbstract (scanner, entry.fullName ());
3111 updateSymbolTable( String fullName, SymtabEntry entry, boolean lcCheck ) argument
[all...]
H A DForwardEntry.java99 (ForwardEntry)Parser.symbolTable.get (interfaceEntry.fullName ());
H A DMethodEntry.java186 addExceptionName (e.fullName ());
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DKrb5InitCredential.java151 String fullName = tgt.getClient().getName();
152 name = Krb5NameElement.getInstance(fullName,
190 String fullName = cPrinc.getName();
191 credName = Krb5NameElement.getInstance(fullName,
193 client = new KerberosPrincipal(fullName);
H A DKrb5AcceptCredential.java93 String fullName = creds.getName();
94 name = Krb5NameElement.getInstance(fullName,
/openjdk7/jdk/src/share/classes/java/security/
H A DIdentity.java341 if (this.fullName().equals(i.fullName())) {
381 String fullName() { method in class:Identity
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DCompile.java379 String substr = (String)packages.get (entry.fullName ());
399 String fullName = prev == null ? pkg : prev.fullName () + '/' + pkg;
400 mod = (ModuleEntry)symbolTable.get (fullName);
406 if (prev != null) mod.module (prev.fullName ());
411 entry.module (mod.fullName ());
H A DTCOffsets.java76 tcs.put (entry.fullName (), new Integer (offset));
H A DTypedefGen.java251 else if (td.type () instanceof InterfaceEntry && td.type ().fullName ().equals ("org/omg/CORBA/Object"))
266 else if (tdtype instanceof InterfaceEntry && tdtype.fullName ().equals ("org/omg/CORBA/Object"))
298 else if (td.type () instanceof InterfaceEntry && td.type ().fullName ().equals ("org/omg/CORBA/Object"))
313 else if (tdtype instanceof InterfaceEntry && tdtype.fullName ().equals ("org/omg/CORBA/Object"))
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DServiceProxy.java138 String fullName = prefix + service.getName();
139 URL u = new URL(url, fullName);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DTerminal.java110 rep (constReference.fullName ());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJTypeVar.java53 public String fullName() { method in class:JTypeVar
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/
H A DPrivateObjectFactoryGenerator.java61 factory.fullName());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/nav/
H A DEagerNType.java71 public String fullName() { method in class:EagerNType
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/addon/episode/
H A DPluginImpl.java117 String fullName = co.implClass.fullName();
120 OutlineAdaptor.OutlineType.CLASS, fullName, packageName);
126 String fullName = eo.clazz.fullName();
129 OutlineAdaptor.OutlineType.ENUM, fullName, packageName);
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNBindingEnumeration.java232 String fullName = CNNameParser.cosNameToInsString(comps);
233 jbndg.setNameInNamespace(fullName);

Completed in 69 milliseconds

12345