Searched defs:placeholder (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DMaskFormatter.java90 * the placeholder string will be used, or the placeholder character will
91 * be used. Precedence is given to the placeholder string. For example:
100 * result. The placeholder String is only used on the initial format,
101 * on subsequent formats only the placeholder character will be used.
181 private char placeholder; field in class:MaskFormatter
194 placeholder = ' ';
278 * the mask. A null value implies the placeholder char should be used.
280 * @param placeholder String used when formatting if the value does not
283 public void setPlaceholder(String placeholder) { argument
309 setPlaceholderCharacter(char placeholder) argument
486 append(StringBuilder result, String value, int[] index, String placeholder, MaskCharacter[] mask) argument
865 append(StringBuilder buff, String formatting, int[] index, String placeholder) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.java189 final String placeholder; field in class:InvokerBytecodeGenerator.CpPatch
191 CpPatch(int index, String placeholder, Object value) { argument
193 this.placeholder = placeholder;
197 return "CpPatch/index="+index+",placeholder="+placeholder+",value="+value;
209 throw new InternalError("observed CP placeholder twice: " + cpPlaceholder);
211 // insert placeholder in CP and remember the patch
/openjdk7/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp261 // when resolving a class that has an existing placeholder with
270 // resolve_super_or_fail creates placeholder: T1, Base (super Super)
271 // 2. resolve_instance_class_or_null does not find SD or placeholder for Super
275 // 3.1 resolve_super_or_fail creates placeholder: T1, Super (super Base)
276 // 3.3 resolve_instance_class_or_null Base, finds placeholder for Base
280 // 4.1 resolve_super_or_fail creates placeholder: T2, Super (super Base)
281 // 4.2 resolve_instance_class_or_null Base, finds placeholder for Base (super Super)
285 // where the placeholder entry is created which claims this
295 // Make sure there's a placeholder for the *child* before resolving.
299 // or have a placeholder)
544 PlaceholderEntry* placeholder; local
631 PlaceholderEntry* placeholder; local
[all...]

Completed in 40 milliseconds