/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | MessageUtils.java | 41 public static String subst(String patt, String arg) { method in class:MessageUtils 43 return subst(patt, args); 46 public static String subst(String patt, String arg1, String arg2) { method in class:MessageUtils 48 return subst(patt, args); 51 public static String subst(String patt, String arg1, String arg2, method in class:MessageUtils 54 return subst(patt, args); 57 public static String subst(String patt, String args[]) { method in class:MessageUtils 81 return subst(System.getProperty(propName), arg); 85 return subst(System.getProperty(propName), arg1, arg2); 90 return subst(Syste [all...] |
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/som/cff/ |
H A D | Messages.java | 332 Otherwise, return a new string with subst at the end. 336 @subst: string for the substitution. 339 String subst){ 348 result = result.substring (0, index) + subst + ending; 350 else result += " " + subst; 338 substituteString(String orig, int paramNum, String subst) argument
|
/openjdk7/langtools/test/tools/javac/types/ |
H A D | TypeHarness.java | 58 * checkSameType(A_Obj_Obj, subst(A_X_Y, 215 public Type subst(Type t, Mapping... maps) { method in class:TypeHarness 222 return types.subst(t, from.toList(), to.toList());
|
/openjdk7/jdk/test/java/lang/invoke/ |
H A D | RicochetTest.java | 623 return MethodHandles.explicitCastArguments(mh, subst(mh.type(), int.class, byte.class)); 625 private static MethodType subst(MethodType mt, Class<?> from, Class<?> to) { method in class:RicochetTest
|
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/ |
H A D | RE.java | 1536 * Flag bit that indicates that subst should replace all occurrences of this 1542 * Flag bit that indicates that subst should only replace the first occurrence 1548 * Flag bit that indicates that subst should replace backreferences 1557 * resulting String returned by subst would be "-foo-garply-wacky-". 1566 public String subst(String substituteIn, String substitution) method in class:RE 1568 return subst(substituteIn, substitution, REPLACE_ALL); 1576 * resulting String returned by subst would be "-foo-garply-wacky-". 1582 * returned by subst would be 1599 public String subst(String substituteIn, String substitution, int flags) method in class:RE
|
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_Instruction.hpp | 409 Instruction* subst() { return _subst == NULL ? this : _subst->subst(); } function in class:Instruction 447 void set_subst(Instruction* subst) { argument 448 assert(subst == NULL || 449 type()->base() == subst->type()->base() || 450 subst->type()->base() == illegalType, "type can't change"); 451 _subst = subst; 767 HASHING2(LoadField, !needs_patching() && !field()->is_volatile(), obj()->subst(), offset()) // cannot be eliminated if needs patching or if volatile 837 HASHING1(ArrayLength, true, array()->subst()) 892 HASHING2(LoadIndexed, true, array()->subst(), inde [all...] |
H A D | c1_GraphBuilder.cpp | 2342 // already substituted; subst can be phi itself -> simplify 2343 return simplify(v->subst()); 2359 Value subst = NULL; local 2375 if (new_opd != phi && new_opd != subst) { 2376 if (subst == NULL) { 2377 subst = new_opd; 2388 assert(subst != NULL, "illegal phi function"); 2391 phi->set_subst(subst); 2395 tty->print_cr("simplified phi function %c%d to %c%d (Block B%d)", phi->type()->tchar(), phi->id(), subst->type()->tchar(), subst [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/ |
H A D | Types.java | 238 Type res = subst(sym.type, from.toList(), to.toList()); 257 res = subst(res, opens, qs.toList()); 467 return subst(t.tsym.type, from.toList(), rewrite.toList()); 719 && visit(t.qtype, subst(forAll.qtype, forAll.tvars, t.tvars)); 1548 return subst(sym.type, ownerParams, baseParams); 1775 t.supertype_field = subst(supertype, formals, actuals); 1857 upperBounds(subst(interfaces, formals, actuals)); 2210 && visit(t.qtype, subst(forAll.qtype, forAll.tvars, t.tvars)); 2224 // <editor-fold defaultstate="collapsed" desc="subst"> 2225 public List<Type> subst(Lis method in class:Types 2237 public Type subst(Type t, List<Type> from, List<Type> to) { method in class:Types 2260 Type subst(Type t) { method in class:Types.Subst 2267 List<Type> subst(List<Type> ts) { method in class:Types.Subst [all...] |