Searched refs:identity (Results 26 - 50 of 54) sorted by relevance

123

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLSchemaMessages_ko.properties45 AbsentKeyValue = ID \uC81C\uC57D \uC870\uAC74 \uC624\uB958(cvc-identity-constraint.4.2.1): \"{0}\" \uC694\uC18C\uC5D0 \uAC12\uC774 \uC5C6\uB294 \uD0A4\uAC00 \uC788\uC2B5\uB2C8\uB2E4.
51 KeyMatchesNillable = ID \uC81C\uC57D \uC870\uAC74 \uC624\uB958(cvc-identity-constraint.4.2.3): \"{0}\" \uC694\uC18C\uC5D0 nillable\uC774 true\uB85C \uC124\uC815\uB41C \uC694\uC18C\uC640 \uC77C\uCE58\uD558\uB294 \uD0A4\uAC00 \uC788\uC2B5\uB2C8\uB2E4.
H A DXMLSchemaMessages_zh_CN.properties45 AbsentKeyValue = \u8EAB\u4EFD\u7EA6\u675F\u6761\u4EF6\u9519\u8BEF (cvc-identity-constraint.4.2.1): \u5143\u7D20 \"{0}\" \u7684\u4E00\u4E2A\u5173\u952E\u5B57\u6CA1\u6709\u503C\u3002
51 KeyMatchesNillable = \u8EAB\u4EFD\u7EA6\u675F\u6761\u4EF6\u9519\u8BEF (cvc-identity-constraint.4.2.3): \u5143\u7D20 \"{0}\" \u5177\u6709\u4E00\u4E2A\u4E0E nillable \u8BBE\u7F6E\u4E3A\u201C\u771F\u201D\u7684\u5143\u7D20\u5339\u914D\u7684\u5173\u952E\u5B57\u3002
H A DXMLSchemaMessages_zh_TW.properties45 AbsentKeyValue = \u8B58\u5225\u9650\u5236\u689D\u4EF6\u932F\u8AA4 (cvc-identity-constraint.4.2.1): \u5143\u7D20 \"{0}\" \u5177\u6709\u7684\u91D1\u9470\u6C92\u6709\u503C\u3002
51 KeyMatchesNillable = \u8B58\u5225\u9650\u5236\u689D\u4EF6\u932F\u8AA4 (cvc-identity-constraint.4.2.3): \u5143\u7D20 \"{0}\" \u5177\u6709\u7684\u91D1\u9470\uFF0C\u7B26\u5408 nillable \u8A2D\u70BA\u771F\u7684\u5143\u7D20\u3002
H A DXMLSchemaMessages_pt_BR.properties45 AbsentKeyValue = Erro de Restri\u00E7\u00E3o de identidade (cvc-identity-constraint.4.2.1): o elemento \"{0}\" tem uma chave sem valor.
51 KeyMatchesNillable = Erro de restri\u00E7\u00E3o de identidade (cvc-identity-constraint.4.2.3): o elemento \"{0}\" tem uma chave que corresponde a um elemento o qual tem anul\u00E1vel definido como verdadeiro.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDAbstractIDConstraintTraverser.java25 import com.sun.org.apache.xerces.internal.impl.xs.identity.Field;
26 import com.sun.org.apache.xerces.internal.impl.xs.identity.IdentityConstraint;
27 import com.sun.org.apache.xerces.internal.impl.xs.identity.Selector;
57 new Object[]{"identity constraint", "(annotation?, selector, field+)"},
69 reportSchemaError("s4s-elt-must-match.2", new Object[]{"identity constraint", "(annotation?, selector, field+)"}, icElem);
82 reportSchemaError("s4s-elt-must-match.1", new Object[]{"identity constraint", "(annotation?, selector, field+)", SchemaSymbols.ELT_SELECTOR}, sElem);
137 reportSchemaError("s4s-elt-must-match.2", new Object[]{"identity constraint", "(annotation?, selector, field+)"}, sElem);
142 reportSchemaError("s4s-elt-must-match.1", new Object[]{"identity constraint", "(annotation?, selector, field+)", SchemaSymbols.ELT_FIELD}, fElem);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DConvertingMethod.java215 boolean identity = true;
218 identity &= DefaultMXBeanMappingFactory.isIdentity(paramMappings[i]);
220 paramConversionIsIdentity = identity;
/openjdk7/jdk/test/javax/management/mxbean/
H A DRandomMXBeanTest.java48 public int identity(int x); method in interface:RandomMXBeanTest.StupidMXBean
56 public int identity(int x) { method in class:RandomMXBeanTest.StupidImpl
141 System.out.println("One = " + proxy.identity(1));
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DValueConversions.java396 static <T> T identity(T x) { method in class:ValueConversions
400 static <T> T[] identity(T[] x) { method in class:ValueConversions
409 static int identity(int x) { method in class:ValueConversions
413 static byte identity(byte x) { method in class:ValueConversions
417 static short identity(short x) { method in class:ValueConversions
421 static boolean identity(boolean x) { method in class:ValueConversions
425 static char identity(char x) { method in class:ValueConversions
434 static long identity(long x) { method in class:ValueConversions
438 static float identity(float x) { method in class:ValueConversions
442 static double identity(doubl method in class:ValueConversions
573 public static MethodHandle identity() { method in class:ValueConversions
577 public static MethodHandle identity(Class<?> type) { method in class:ValueConversions
584 public static MethodHandle identity(Wrapper wrap) { method in class:ValueConversions
[all...]
/openjdk7/jdk/test/java/lang/invoke/6998541/
H A DTest6998541.java45 private static final String NAME = "identity";
496 private static boolean identity(boolean v) { return v; } method in class:Test6998541
497 private static byte identity(byte v) { return v; } method in class:Test6998541
498 private static char identity(char v) { return v; } method in class:Test6998541
499 private static short identity(short v) { return v; } method in class:Test6998541
500 private static int identity(int v) { return v; } method in class:Test6998541
501 private static long identity(long v) { return v; } method in class:Test6998541
502 private static float identity(float v) { return v; } method in class:Test6998541
503 private static double identity(double v) { return v; } method in class:Test6998541
504 private static void identity() {} method in class:Test6998541
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DIdentityConstraint.java21 package com.sun.org.apache.xerces.internal.impl.xs.identity;
33 * Base class of Schema identity constraint.
69 // number of annotations in this identity constraint
87 /** Returns the identity constraint name. */
190 * {identity-constraint category} One of key, keyref or unique.
214 * {referenced key} Required if {identity-constraint category} is keyref,
215 * forbidden otherwise. An identity-constraint definition with
216 * {identity-constraint category} equal to key or unique.
H A DSelector.java21 package com.sun.org.apache.xerces.internal.impl.xs.identity;
33 * Schema identity constraint selector.
74 } // getXPath():com.sun.org.apache.xerces.internal.v1.schema.identity.XPath
76 /** Returns the identity constraint. */
106 * Schema identity constraint selector XPath expression.
244 /** Returns the identity constraint. */
H A DField.java21 package com.sun.org.apache.xerces.internal.impl.xs.identity;
33 * Schema identity constraint field.
71 } // getXPath():com.sun.org.apache.xerces.internal.impl.v1.schema.identity.XPath
73 /** Returns the identity constraint. */
H A DXPathMatcher.java21 package com.sun.org.apache.xerces.internal.impl.xs.identity;
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokeGeneric.java139 MethodHandle caster = ValueConversions.identity(type);
H A DMethodHandleImpl.java285 MethodHandle identity = MethodHandles.identity(needReturn);
286 MethodType needConversion = identity.type().changeParameterType(0, haveReturn);
287 fn = makePairwiseConvert(identity, needConversion, level);
301 names[names.length - 1] = new Name(ValueConversions.identity(), names[1]);
302 LambdaForm form = new LambdaForm("identity", lambdaType.parameterCount(), names);
H A DMethodHandles.java105 * When the {@code Lookup} factory object is created, the identity of the lookup class is
1640 * <p>The returned method handle is equivalent to {@code identity(type).bindTo(value)}.
1654 return insertArguments(identity(type), 0, w.convert(value, type));
1656 return identity(type).bindTo(type.cast(value));
1668 MethodHandle identity(Class<?> type) { method in class:MethodHandles
1672 return ValueConversions.identity();
1674 return ValueConversions.identity(Wrapper.forPrimitiveType(type));
1866 * Null arguments in the array are treated as identity functions,
/openjdk7/jdk/src/macosx/native/apple/security/
H A DKeystoreImpl.m113 SecIdentityRef identity,
126 // identity
134 CFArrayAppendValue(certArray, identity);
136 /* the single element in certs-to-be-evaluated comes from the identity */
137 ortn = SecIdentityCopyCertificate(identity, &certRef);
290 // Get the cert from the identity, then generate a chain.
445 // Search for these first, because a certificate that's found here as part of an identity will show up
507 // Don't bother labeling keys. They become part of an identity, and are not an accessible part of the keychain.
/openjdk7/jdk/test/java/lang/invoke/
H A DRicochetTest.java107 MethodHandle idreturn = filterReturnValue(list8ints, identity(Object.class));
145 MethodHandle id = identity(int[].class);
174 MethodHandle id = identity(byte[].class);
203 MethodHandle id = identity(long[].class);
335 // make a complicated identity function and pass something through it
339 identity(vret).asType(methodType(ret, vret));
H A DMethodHandlesTest.java1864 filter = MethodHandles.identity(rtype);
2391 MethodHandles.identity(String.class),
2392 MethodHandles.identity(CharSequence.class),
2393 MethodHandles.identity(Iterable.class)
2536 MethodHandle identity = Surprise.REF_IDENTITY, surprise0 = boo.asMethodHandle(), surprise = surprise0;
2541 identity = identity.asType(MethodType.methodType(int.class, Object.class));
2545 identity = identity.asType(MethodType.methodType(Integer.class, Object.class));
2559 identity
[all...]
H A DInvokeGenericTest.java515 mh = MethodHandles.identity(int.class);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSElementDecl.java24 import com.sun.org.apache.xerces.internal.impl.xs.identity.IdentityConstraint;
77 // identity constraints
189 // reset identity constraints
278 * {identity-constraint definitions} A set of constraint definitions.
H A DXMLSchemaValidator.java43 import com.sun.org.apache.xerces.internal.impl.xs.identity.Field;
44 import com.sun.org.apache.xerces.internal.impl.xs.identity.FieldActivator;
45 import com.sun.org.apache.xerces.internal.impl.xs.identity.IdentityConstraint;
46 import com.sun.org.apache.xerces.internal.impl.xs.identity.KeyRef;
47 import com.sun.org.apache.xerces.internal.impl.xs.identity.Selector;
48 import com.sun.org.apache.xerces.internal.impl.xs.identity.UniqueOrKey;
49 import com.sun.org.apache.xerces.internal.impl.xs.identity.ValueStore;
50 import com.sun.org.apache.xerces.internal.impl.xs.identity.XPathMatcher;
1252 // identity constraint information
1255 * Stack of active XPath matchers for identity constraint
[all...]
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextTests.java154 AffineTransform identity = new AffineTransform();
209 identity,
/openjdk7/jdk/test/sun/invoke/util/
H A DValueConversionsTest.java159 assertEquals(caster.type(), ValueConversions.identity().type());
180 //System.out.println("identity");
181 MethodHandle id = ValueConversions.identity();
184 // compiler bug: ValueConversions.identity().invokeExact("bar");
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseIterators.java46 * @param dtmIdentity The DTM identity ID for this DTM.
68 * @param dtmIdentity The DTM identity ID for this DTM.
1088 * The node identity of _startNode for this iterator
1257 /* _currentNode precedes candidates. This is the identity, not the handle! */
1852 * Tell if this node identity is a descendant. Assumes that
1862 * @param identity The index number of the node in question.
1865 protected boolean isDescendant(int identity) argument
1867 return (_parent(identity) >= _startNode) || (_startNode == identity);

Completed in 151 milliseconds

123