Searched defs:form (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DMacOSXNativeDispatcher.java40 static native char[] normalizepath(char[] path, int form); argument
/openjdk7/jdk/src/share/classes/java/text/
H A DNormalizer.java45 * text into an equivalent composed or decomposed form, allowing for easier
54 * In Unicode, this can be encoded as a single character (the "composed" form):
60 * or as two separate characters (the "decomposed" form):
154 * @param form The normalization form; one of
160 * @throws NullPointerException If <code>src</code> or <code>form</code>
163 public static String normalize(CharSequence src, Form form) { argument
164 return NormalizerBase.normalize(src.toString(), form);
170 * @param form The normalization form; on
180 isNormalized(CharSequence src, Form form) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DLocalAttribute.java40 public LocalAttribute form(String value); method in interface:LocalAttribute
H A DLocalElement.java40 public LocalElement form(String value); method in interface:LocalElement
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DMacOSXNativeDispatcher.c39 jint form)
51 CFStringNormalize(csref, form);
37 Java_sun_nio_fs_MacOSXNativeDispatcher_normalizepath(JNIEnv* env, jclass this, jcharArray path, jint form) argument
/openjdk7/jdk/src/share/classes/sun/text/
H A DNormalizer.java52 * @param form The normalization form; one of
60 * @throws NullPointerException If <code>src</code> or <code>form</code>
64 java.text.Normalizer.Form form,
66 return NormalizerBase.normalize(src.toString(), form, option);
72 * @param form The normalization form; one of
81 * @throws NullPointerException If <code>src</code> or <code>form</code>
85 java.text.Normalizer.Form form,
87 return NormalizerBase.isNormalized(src.toString(), form, optio
63 normalize(CharSequence src, java.text.Normalizer.Form form, int option) argument
84 isNormalized(CharSequence src, java.text.Normalizer.Form form, int option) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DSimpleMethodHandle.java38 private SimpleMethodHandle(MethodType type, LambdaForm form) { argument
39 super(type, form);
42 /*non-public*/ static SimpleMethodHandle make(MethodType type, LambdaForm form) { argument
43 return new SimpleMethodHandle(type, form);
H A DMethodHandle.java421 /*private*/ final LambdaForm form; field in class:MethodHandle
422 // form is not private so that invokers can easily fetch it
439 /*non-public*/ MethodHandle(MethodType type, LambdaForm form) { argument
441 form.getClass(); // explicit NPE
443 this.form = form;
445 form.prepare(); // TO DO: Try to delay this step until just before invocation.
1262 return form;
1312 LambdaForm form2 = form.bindImmediate(pos + 1, basicType, value); // adjust pos to form
[all...]
H A DMethodTypeForm.java58 // Cached lambda form information, for basic types only:
90 public LambdaForm setCachedLambdaForm(int which, LambdaForm form) { argument
92 return lambdaForms[which] = form;
196 lambdaForms = null; // could be basicType.form().lambdaForms;
262 return erased.form();
H A DDirectMethodHandle.java51 private DirectMethodHandle(MethodType mtype, LambdaForm form, MemberName member) { argument
52 super(mtype, form);
204 LambdaForm lform = mtype.form().cachedLambdaForm(which);
207 return mtype.form().setCachedLambdaForm(which, lform);
376 private Constructor(MethodType mtype, LambdaForm form, MemberName constructor, argument
378 super(mtype, form, constructor);
399 private Accessor(MethodType mtype, LambdaForm form, MemberName member, argument
401 super(mtype, form, member);
437 private StaticAccessor(MethodType mtype, LambdaForm form, MemberName member, argument
439 super(mtype, form, membe
[all...]
H A DInvokerBytecodeGenerator.java113 private InvokerBytecodeGenerator(String className, LambdaForm form, MethodType invokerType) { argument
114 this(form, form.names.length,
115 className, form.debugName, invokerType);
117 Name[] names = form.names;
503 * @param form
507 static MemberName generateCustomizedCode(LambdaForm form, MethodType invokerType) { argument
508 InvokerBytecodeGenerator g = new InvokerBytecodeGenerator("MH", form, invokerType);
527 // iterate over the form's names, generating bytecode instructions for each
582 mv.visitFieldInsn(Opcodes.GETFIELD, MH, "form", LF_SI
[all...]
H A DBoundMethodHandle.java56 /* non-public */ BoundMethodHandle(MethodType type, LambdaForm form) { argument
57 super(type, form);
64 static MethodHandle bindSingle(MethodType type, LambdaForm form, char xtype, Object x) { argument
69 if (true) return bindSingle(type, form, x); // Use known fast path.
70 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('L').constructor[0].invokeBasic(type, form, x);
72 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('I').constructor[0].invokeBasic(type, form, ValueConversions.widenSubword(x));
74 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('J').constructor[0].invokeBasic(type, form, (long) x);
76 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('F').constructor[0].invokeBasic(type, form, (float) x);
78 return (BoundMethodHandle) SpeciesData.EMPTY.extendWithType('D').constructor[0].invokeBasic(type, form, (double) x);
86 static MethodHandle bindSingle(MethodType type, LambdaForm form, Objec argument
90 cloneExtend(MethodType type, LambdaForm form, char xtype, Object x) argument
[all...]
H A DMethodType.java94 private MethodTypeForm form; // erased form, plus cached data about primitives field in class:MethodType
108 /*trusted*/ MethodTypeForm form() { return form; } method in class:MethodType
112 void setForm(MethodTypeForm f) { form = f; }
283 MethodTypeForm form = MethodTypeForm.findForm(mt1);
284 mt1.form = form;
499 return form.hasPrimitives();
520 return form
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DElementDecl.java68 this.form = _form;
118 private Boolean form; field in class:ElementDecl
120 return form;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DattributeDeclBody.java114 if(($ai = $runtime.getAttributeIndex("","form"))>=0) {
192 if(($ai = $runtime.getAttributeIndex("","form"))>=0) {
264 if(($__uri.equals("") && $__local.equals("form"))) {
355 if(($__uri.equals("") && $__local.equals("form"))) {
409 if(($ai = $runtime.getAttributeIndex("","form"))>=0) {
484 form = ((Boolean)$__result__).booleanValue();
516 private boolean form; field in class:attributeDeclBody
525 if(!formSpecified) form = $runtime.attributeFormDefault;
527 if(!isLocal) form = true;
530 if(form
[all...]
H A DelementDeclBody.java230 if(($ai = $runtime.getAttributeIndex("","form"))>=0) {
254 if(((($ai = $runtime.getAttributeIndex("","final"))>=0 && (((((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("key")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("keyref"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("unique"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("complexType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("simpleType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation")))) || ((($ai = $runtime.getAttributeIndex("","name"))>=0 && (((((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("key")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("keyref"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("unique"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("complexType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("simpleType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation")))) || ((($ai = $runtime.getAttributeIndex("","form"))>=0 && (((((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("key")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("keyref"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("unique"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("complexType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("simpleType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation")))) || ((($ai = $runtime.getAttributeIndex("","block"))>=0 && (((((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("key")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("keyref"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("unique"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("complexType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("simpleType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation")))) || ((($ai = $runtime.getAttributeIndex("","fixed"))>=0 && (((((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("key")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("keyref"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("unique"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("complexType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("simpleType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation")))) || ((($ai = $runtime.getAttributeIndex("","abstract"))>=0 && (((((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("key")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("keyref"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("unique"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("complexType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("simpleType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation")))) || (($ai = $runtime.getAttributeIndex("","default"))>=0 && (((((($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("key")) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("keyref"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("unique"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("complexType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("simpleType"))) || ($__uri.equals("http://www.w3.org/2001/XMLSchema") && $__local.equals("annotation"))))))))))) {
397 if(($ai = $runtime.getAttributeIndex("","form"))>=0) {
421 if((($ai = $runtime.getAttributeIndex("","final"))>=0 || (($ai = $runtime.getAttributeIndex("","name"))>=0 || (($ai = $runtime.getAttributeIndex("","form"))>=0 || (($ai = $runtime.getAttributeIndex("","block"))>=0 || (($ai = $runtime.getAttributeIndex("","fixed"))>=0 || (($ai = $runtime.getAttributeIndex("","abstract"))>=0 || ($ai = $runtime.getAttributeIndex("","default"))>=0))))))) {
551 if(($__uri.equals("") && $__local.equals("form"))) {
573 if((($__uri.equals("") && $__local.equals("final")) || (($__uri.equals("") && $__local.equals("name")) || (($__uri.equals("") && $__local.equals("form")) || (($__uri.equals("") && $__local.equals("block")) || (($__uri.equals("") && $__local.equals("fixed")) || (($__uri.equals("") && $__local.equals("abstract")) || ($__uri.equals("") && $__local.equals("default"))))))))) {
743 if(($__uri.equals("") && $__local.equals("form"))) {
939 if(($ai = $runtime.getAttributeIndex("","form"))>=0) {
995 if(($ai = $runtime.getAttributeIndex("","form"))>=0) {
1048 form
1124 private boolean form; field in class:elementDeclBody
[all...]
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerOutputStream.java42 * in the form of a byte array; there is no advance limit on the size of
112 * explicit tagging the form is always constructed.
161 * @param i the integer in the form of a BigInteger.
172 * @param i the integer in the form of an Integer.
555 * @params form if true, the value is constructed, otherwise it is
559 public void putTag(byte tagClass, boolean form, byte val) { argument
561 if (form) {
H A DDerValue.java272 // indefinite form is encoded by sending a length field with a
904 * @params form if true, the value is constructed, otherwise it
908 public static byte createTag(byte tagClass, boolean form, byte val) { argument
910 if (form) {
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.cpp318 const Form *FormDict::Insert(const char *name, Form *form) { argument
319 return (Form*)_form.Insert((void*)name, (void*)form);
350 static void dumpform(const void* form) { fflush(stdout); ((Form*)form)->dump(); } argument
H A DarchDesc.cpp121 // Form *form = (Form *)_globalNames[rule];
122 // if (form->is_instruction()) {
414 // const Form *form = operands[_result];
415 // OpClassForm *opcForm = form ? form->is_opclass() : NULL;
449 const Form *form = _globalNames[oper->_matrule->_opType]; local
450 if ((form) && form->is_operand() &&
451 (form->ideal_only() == false)) {
461 const Form *form local
475 const Form *form = _globalNames[rule->_opType]; local
560 Form *form; local
896 Form *form = (Form*)_globalNames[result]; local
[all...]
H A Doutput_h.cpp153 } // Done with register form
455 const Form* form = oper._localNames[rep_var]; local
456 if (form == NULL) {
459 assert(form, "replacement variable was not found in local names");
461 OperandForm *op = form->is_operand();
526 const Form* form = oper._localNames[rep_var]; local
527 if (form == NULL) {
530 assert(form, "replacement variable was not found in local names");
532 OperandForm *op = form->is_operand();
607 const Form *form local
1607 Form *form = (Form*)_globalNames[comp->_type]; local
[all...]
H A Ddfa.cpp295 const Form *form = _globalNames[result_type]; local
296 OperandForm *op = form ? form->is_operand() : NULL;
337 Form *form = (Form *)_globalNames[rule]; local
338 if ( ! form->is_instruction()) {
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerBase.java48 * decomposed form, allowing for easier sorting and searching of text.
56 * "composed" form):
62 * or as two separate characters (the "decomposed" form):
112 * It is not a normalization form because it does not provide for uniqueness of
116 * The form is defined such that the "raw decomposition", the recursive
559 * normalized form of a given string.
583 * normalized form of the given text.
596 * normalized form of the given text.
1572 * normalized form of a given string.
1584 * Normalizes a <code>String</code> using the given normalization form
1589 normalize(String str, Normalizer.Form form) argument
1600 normalize(String str, Normalizer.Form form, int options) argument
1648 isNormalized(String str, Normalizer.Form form) argument
1665 isNormalized(String str, Normalizer.Form form, int options) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFormattedFloatingDecimal.java49 private Form form; field in class:FormattedFloatingDecimal
51 private FormattedFloatingDecimal( boolean negSign, int decExponent, char []digits, int n, boolean e, int precision, Form form )
59 this.form = form;
472 public FormattedFloatingDecimal( double d, int precision, Form form )
480 this.form = form;
539 public FormattedFloatingDecimal( float f, int precision, Form form )
547 this.form = form;
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DFormatter.java551 * <td> The result should use a conversion-dependent alternate form
761 * <td> Requires the output use an alternate form. The definition of the
762 * form is specified by the conversion.
1262 * form. No localization is applied.
3663 public BigDecimalLayout(BigInteger intVal, int scale, BigDecimalLayoutForm form) { argument
3664 layout(intVal, scale, form);
3703 private void layout(BigInteger intVal, int scale, BigDecimalLayoutForm form) { argument
3718 if (form == BigDecimalLayoutForm.SCIENTIFIC) {
3732 if (form == BigDecimalLayoutForm.SCIENTIFIC)
3738 if (form
[all...]

Completed in 320 milliseconds

12