/openjdk7/jdk/src/share/classes/sun/security/util/ |
H A D | PropertyExpander.java | 33 * A utility class to expand properties embedded in a string. 53 public static String expand(String value) method in class:PropertyExpander 56 return expand(value, false); 59 public static String expand(String value, boolean encodeURL) method in class:PropertyExpander 83 // do not expand ${{ ... }} 125 "unable to expand property " + 133 // no more to expand. copy in any extra
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | array.cpp | 57 void ResourceArray::expand(size_t esize, int i, int& size) { function in class:ResourceArray 73 template <MEMFLAGS F> void CHeapArray<F>::expand(size_t esize, int i, int& size) { function in class:CHeapArray
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/ |
H A D | GroupPattern.java | 59 Pattern expand(SchemaPatternBuilder b) { method in class:GroupPattern 60 Pattern ep1 = p1.expand(b); 61 Pattern ep2 = p2.expand(b);
|
H A D | InterleavePattern.java | 59 Pattern expand(SchemaPatternBuilder b) { method in class:InterleavePattern 60 Pattern ep1 = p1.expand(b); 61 Pattern ep2 = p2.expand(b);
|
H A D | AttributePattern.java | 71 Pattern expand(SchemaPatternBuilder b) { method in class:AttributePattern 72 Pattern ep = p.expand(b);
|
H A D | ChoicePattern.java | 58 Pattern expand(SchemaPatternBuilder b) { method in class:ChoicePattern 59 Pattern ep1 = p1.expand(b); 60 Pattern ep2 = p2.expand(b);
|
H A D | ListPattern.java | 66 Pattern expand(SchemaPatternBuilder b) { method in class:ListPattern 67 Pattern ep = p.expand(b);
|
H A D | OneOrMorePattern.java | 63 Pattern expand(SchemaPatternBuilder b) { method in class:OneOrMorePattern 64 Pattern ep = p.expand(b);
|
H A D | ElementPattern.java | 101 Pattern expand(SchemaPatternBuilder b) { method in class:ElementPattern 104 p = p.expand(b);
|
H A D | Pattern.java | 100 Pattern expand(SchemaPatternBuilder b) { method in class:Pattern
|
H A D | RefPattern.java | 106 Pattern expand(SchemaPatternBuilder b) { method in class:RefPattern 108 p = p.expand(b);
|
/openjdk7/langtools/test/tools/javac/nio/compileTest/ |
H A D | CompileTest.java | 54 expand(rtJar, rtDir); 133 void expand(File jar, File dir) throws IOException { method in class:CompileTest
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/ |
H A D | SerializationHandler.java | 120 * Default behavior is to expand DTD entities, 122 * @param expand true if DTD entities are to be expanded, 125 public void setDTDEntityExpansion(boolean expand); argument
|
/openjdk7/jdk/make/tools/src/build/tools/jarreorder/ |
H A D | JarReorder.java | 132 // Create set of all files and directories excluded, then expand 135 Set<String> allFilesExcluded = expand(null, excludeSet, processed); 153 Set<String> allFilesIncluded = expand(null, inputSet, processed); 239 private Set<String> expand(File dir, method in class:JarReorder 266 Set<String> subList = expand(f, dirInputSet, processed);
|
/openjdk7/jdk/src/share/classes/sun/security/jca/ |
H A D | ProviderConfig.java | 85 this.argument = expand(argument); 268 private static String expand(final String value) { method in class:ProviderConfig 276 return PropertyExpander.expand(value);
|
/openjdk7/jdk/src/share/classes/sun/text/ |
H A D | UCompactIntArray.java | 69 expand(); 135 private void expand() { method in class:UCompactIntArray
|
H A D | CompactByteArray.java | 131 expand(); 146 expand(); 316 private void expand() method in class:CompactByteArray
|
/openjdk7/jdk/src/solaris/classes/sun/security/smartcardio/ |
H A D | PlatformPCSC.java | 77 // expand $LIBISA to the system specific directory name for libraries 78 private static String expand(String lib) { method in class:PlatformPCSC 103 String lib = expand(System.getProperty(PROP_NAME, "").trim()); 107 lib = expand(LIB1); 112 lib = expand(LIB2);
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/ |
H A D | AugmentationsImpl.java | 56 fAugmentationsContainer = fAugmentationsContainer.expand(); 111 abstract public AugmentationsItemsContainer expand(); method in class:AugmentationsImpl.AugmentationsItemsContainer 185 public AugmentationsItemsContainer expand() { method in class:AugmentationsImpl.SmallContainer 269 public AugmentationsItemsContainer expand() { method in class:AugmentationsImpl.LargeContainer
|
/openjdk7/jdk/src/share/classes/com/sun/security/auth/login/ |
H A D | ConfigFile.java | 189 extra_config = PropertyExpander.expand(extra_config); 193 ("Unable.to.properly.expand.config", 236 config_url = PropertyExpander.expand 246 ("Unable.to.properly.expand.config", 442 value = expand(match("option value")); 652 private String expand(String value) method in class:ConfigFile 661 String s = PropertyExpander.expand(value);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/ |
H A D | PolicySourceModel.java | 300 * {@link #expand(PolicySourceModelContext)} and {@link #isExpanded()} for more details. 317 * {@link #expand(PolicySourceModelContext)} and {@link #containsPolicyReferences()} for more details. 330 * Please, notice that the method does not check if the referenced models are already expanded nor does the method try to expand unexpanded 339 public synchronized void expand(final PolicySourceModelContext context) throws PolicyException { method in class:PolicySourceModel
|
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/ |
H A D | TlsPrfGenerator.java | 208 expand(mdPRF, mdPRFLen, secret, 0, secret.length, labelBytes, 247 expand(md5, 16, secret, 0, seclen, labelBytes, seed, output, 251 expand(sha, 20, secret, off, seclen, labelBytes, seed, output, 267 private static void expand(MessageDigest digest, int hmacSize, method in class:TlsPrfGenerator
|
/openjdk7/jdk/test/java/util/zip/ |
H A D | zip.java | 101 expand(null, files, false); 120 expand(null, files, true); 290 void expand(File dir, String[] files, boolean isUpdate) { method in class:zip 314 expand(f, f.list(), isUpdate);
|
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | sparsePRT.cpp | 386 // We could expand multiple times in a pause -- only put on list once. 488 expand(); 531 void SparsePRT::expand() { function in class:SparsePRT
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | psOldGen.cpp | 203 expand(word_size*HeapWordSize); 211 expand(word_size*HeapWordSize); 218 void PSOldGen::expand(size_t bytes) { function in class:PSOldGen 235 // was not. A call to expand implies a best effort to expand by "bytes" 237 // the most that the generation can expand since it has some capacity to 365 expand(change_bytes); 368 // shrink doesn't grab this lock, expand does. Is that right?
|