/openjdk7/jdk/src/share/classes/sun/security/pkcs11/ |
H A D | TemplateManager.java | 48 * The template manager is responsible for reading the attribute configuration 68 final Template template; field in class:TemplateManager.KeyAndTemplate 70 KeyAndTemplate(TemplateKey key, Template template) { argument 72 this.template = template; 76 // primitive templates contains the individual template configuration 80 // composite templates is a cache of the exact configuration template for 83 // primitive template entries. the result is then stored in this map 92 // add a template. Called by Config. 96 Template template 201 add(Template template) argument [all...] |
/openjdk7/jdk/make/sun/management/ |
H A D | Makefile | 52 aclfile: $(MGMT_LIBDIR)/snmp.acl.template 54 jmxremotefiles: $(MGMT_LIBDIR)/jmxremote.password.template $(MGMT_LIBDIR)/jmxremote.access 60 $(MGMT_LIBDIR)/snmp.acl.template: $(MGMT_LIB_SRC)/snmp.acl.template 64 $(MGMT_LIBDIR)/jmxremote.password.template: $(MGMT_LIB_SRC)/jmxremote.password.template
|
/openjdk7/jdk/make/tools/generate_nimbus/ |
H A D | Makefile | 50 TEMPLATE_FILES = Defaults.template \ 51 PainterImpl.template \ 52 StateImpl.template
|
/openjdk7/jdk/src/share/classes/sun/security/util/ |
H A D | HostnameChecker.java | 237 * Returns true if name matches against template.<p> 243 * The <code>template</code> parameter 246 private boolean isMatched(String name, String template) { argument 248 return matchAllWildcards(name, template); 250 return matchLeftmostWildcard(name, template); 258 * Returns true if name matches against template.<p> 268 String template) { 270 template = template.toLowerCase(); 272 StringTokenizer templateSt = new StringTokenizer(template, " 267 matchAllWildcards(String name, String template) argument 297 matchLeftmostWildcard(String name, String template) argument 327 matchWildCards(String name, String template) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/ |
H A D | LocationPathPattern.java | 51 public void setTemplate(final Template template) { argument 52 _template = template; 53 _priority = template.getPriority(); 54 _importPrecedence = template.getImportPrecedence(); 55 _position = template.getPosition(); 72 * template. This method is called for templates that are in the same 76 * o) then check the position - the template that occured last wins
|
H A D | TestSeq.java | 44 * A test sequence may have a default template, which will be 70 * Default template for this test sequence 134 final Template template = (_patterns.size() == 0) ? _default 136 return template.getPriority(); 144 final Template template = (_patterns.size() == 0) ? _default 146 return template.getPosition(); 179 * this test sequence. Note that a single template can occur 194 * Get the instruction handle to a template's code. This is 195 * used when a single template occurs in several test 199 private InstructionHandle getTemplateHandle(Template template) { argument [all...] |
H A D | Mode.java | 154 * Stores ranges of template precendences for the compilation 215 public void addTemplate(Template template) { argument 216 _templates.addElement(template); 275 // Get the next template 276 final Template template = (Template)templates.nextElement(); 279 * Add this template to a table of named templates if it has a name. 283 if (template.isNamed() && !template.disabled()) { 284 _namedTemplates.put(template, this); 287 // Add this template t 301 flattenAlternative(Pattern pattern, Template template, Hashtable keys) argument 514 compileNamedTemplate(Template template, ClassGenerator classGen) argument 1505 getTemplateInstructionHandle(Template template) argument [all...] |
H A D | ApplyImports.java | 88 Template template = getTemplate(); 89 _modeName = template.getModeName(); 90 _precedence = template.getImportPrecedence(); 107 * Translate call-template. A parameter frame is pushed only if 108 * some template in the stylesheet uses parameters. 123 // Push a new parameter frame in case imported template might expect
|
/openjdk7/jdk/test/java/nio/Buffer/ |
H A D | genBasic.sh | 29 java build.tools.spp.Spp -K$1 -Dtype=$1 -DType=$2 -DFulltype=$3 <Basic-X.java.template >Basic$2.java
|
H A D | genCopyDirectMemory.sh | 29 java build.tools.spp.Spp -K$1 -Dtype=$1 -DType=$2 -DFulltype=$3<CopyDirect-X-Memory.java.template >CopyDirect$2Memory.java
|
/openjdk7/jdk/make/java/version/ |
H A D | Makefile | 36 $(SHARE_SRC)/classes/sun/misc/Version.java.template
|
/openjdk7/jdk/make/tools/swing-beans/ |
H A D | GenSwingBeanInfo.java | 39 * A utlity for generating a BeanInfo source file from a template and a 75 * @param templateFilename Location of the BeanInfo template 105 * Load the contents of the BeanInfo template into a string and 109 String template = "<no template>"; 122 template = buffer.toString(); 126 messageAndExit("GenSwingBeanInfo: Couldn't load template: " + templateFilename + e); 128 return template; 421 // Dump the template to out, substituting values for 426 String template 503 printDescriptors(PrintStream out, String s, String template, int tokenStart) argument [all...] |
/openjdk7/make/scripts/ |
H A D | update_copyright_year.sh | 101 hg log --rev $1 -v --template '{files}\n' | expand \ 123 hg log --rev $1 -v --template '{files}\n' 124 hg log --rev $1 -v --template '{files}\n' | expand \ 142 hg log --no-merges -v -d "${year}-01-01 to ${year}-12-31" --template '{node}\n' > ${all_changesets} 153 hg log --rev ${changeset} --template '{desc}\n' > ${desc}
|
/openjdk7/jdk/make/java/java/ |
H A D | Makefile | 369 -template $(CHARACTERDATA)/CharacterDataLatin1.java.template \ 376 -template $(CHARACTERDATA)/CharacterData00.java.template \ 383 -template $(CHARACTERDATA)/CharacterData01.java.template \ 390 -template $(CHARACTERDATA)/CharacterData02.java.template \ 397 -template $(CHARACTERDATA)/CharacterData0E.java.template \ [all...] |
/openjdk7/langtools/test/tools/javac/varargs/warning/ |
H A D | Warn4.java | 143 String template; field in class:Warn4.Signature 146 Signature(String template, Warning[][] warnings) { argument 147 this.template = template; 236 String meth1 = vararg_meth.template.replace("#arity", "..."); 240 String meth2 = client_meth.template.replace("#arity", "");
|
/openjdk7/jdk/make/java/nio/ |
H A D | genBuffer.sh | 164 binops=`dirname $SRC`/`basename $SRC .java.template`-bin.java.template
|
/openjdk7/jdk/make/sun/nio/cs/ |
H A D | Makefile | 106 $(GENCSDATASRC)/SingleByte-X.java.template \ 107 $(GENCSDATASRC)/DoubleByte-X.java.template \
|
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | DllUtil.h | 51 template <class FunctionType> class Function {
|
/openjdk7/jdk/test/java/util/Formatter/ |
H A D | genBasic.sh | 30 # then $SPP -K$1 -Dtype=$1 -DType=$2 -Kprim<Basic-X.java.template >Basic$2.java 31 # else $SPP -K$1 -Dtype=$1 -DType=$2 -K$3 <Basic-X.java.template >Basic$2.java 33 java build.tools.spp.Spp -K$1 -Dtype=$1 -DType=$2 -K$3 -K$4 -K$5 -K$6 <Basic-X.java.template >Basic$2.java
|
/openjdk7/jdk/src/share/native/sun/font/layout/ |
H A D | LETableReference.h | 245 template<class T> 252 template<class T> inline 264 * template<> inline size_t LETableVarSizer<FeatureListTable>::getSize() { return sizeof(FeatureListTable) - (sizeof(le_uint16)*ANY_NUMBER); } 268 #define LE_VAR_ARRAY(x,y) template<> inline size_t LETableVarSizer<x>::getSize() { return sizeof(x) - (sizeof(((const x*)0)->y)); } 274 #define LE_CORRECT_SIZE(x,y) template<> inline size_t LETableVarSizer<x>::getSize() { return y; } 287 template<class T> 371 template<class T>
|
/openjdk7/corba/make/ |
H A D | Makefile | 143 SRC_ZIP_FILES = $(shell $(FIND) $(SRC_CLASSES_DIR) \( -name \*-template \) -prune -o -type f -print ) 148 ( cd $(SRC_CLASSES_DIR) ; $(FIND) . \( -name \*-template \) -prune -o -type f -print | $(ZIP) -q $$abs_src_zip -@ ) ; \
|
/openjdk7/jdk/src/share/classes/sun/net/www/ |
H A D | MimeLauncher.java | 66 protected String getTempFileName(URL url, String template) { argument 67 String tempFilename = template;
|
/openjdk7/langtools/test/tools/javac/generics/diamond/7030687/ |
H A D | ParserTest.java | 122 String template = "class Test {\n" + field in class:ParserTest.JavaSource 130 source = template.replace("#T", qualifierArity.getType(typeArgumentKinds));
|
/openjdk7/langtools/test/tools/javac/multicatch/7030606/ |
H A D | DisjunctiveTypeWellFormednessTest.java | 143 String template = "class Test {\n" + field in class:DisjunctiveTypeWellFormednessTest.JavaSource 153 source = template.replace("#T", Alternative.makeDisjunctiveType(alternatives));
|
/openjdk7/langtools/test/tools/javac/processing/model/type/ |
H A D | TestUnionType.java | 90 public static final String template = field in class:TestUnionType.TestFileObject 110 return template
|