Searched refs:prop (Results 1 - 25 of 266) sorted by relevance

1234567891011

/openjdk10/nashorn/test/script/basic/
H A Dnashorn2.js32 var obj = { prop: [3, 4] };
33 print(obj.prop[0]);
34 obj.prop[0] = 44;
35 print(obj.prop[0]);
H A DNASHORN-678.js31 var prop = "toString"; variable
32 if (false[prop]() !== "false") {
H A DNASHORN-349.js39 var prop = 'foo'; variable
40 if (m[prop] !== 'hello') {
H A DJDK-8013874.js32 print("deepEqual: " + (actual.prop === expected.prop) + ", prop: " + expected.prop);
37 prop: 0
59 print("In loader, nb1.prop === nb2.prop " + (nb1.prop === nb2.prop));
65 print("In loader, nb1.prop
[all...]
H A Dstdin.js32 var prop = "in"; variable
33 print(Java.typeName(java.lang.System[prop].class));
H A Dassign_builtin_func_props.js50 var prop = globalProps[i];
51 if (typeof this[prop] == 'function') {
52 assignAll(this[prop].prototype);
53 assignAll(this[prop]);
H A Djsobject.js43 function checkPropGetter(obj, prop, expected) {
44 if (obj[prop] != expected) {
45 fail(prop + " does not have value: " + expected);
60 function checkPropSetter(obj, prop, newValue) {
61 obj[prop] = newValue;
62 checkPropGetter(obj, prop, newValue);
H A DJDK-8011365.js50 var prop = Array.prototype[funcName];
51 if (prop instanceof Function) {
54 prop.call(null);
64 prop.call(undefined);
H A DJDK-8062132.js38 for (var prop in proto) {
39 if (proto.hasOwnProperty(prop)) {
40 C.prototype[prop] = proto[prop];
H A DJDK-8026302.js44 for (var prop in obj) {
45 var desc = Object.getOwnPropertyDescriptor(obj, prop);
H A DJDK-8146147.js32 var prop = 'ISO3Language'; variable
45 checkLang(locale[prop]);
/openjdk10/nashorn/test/script/sandbox/
H A Dproperty.js40 var prop = java.lang.System.getProperty("user.dir");
41 fail("can read user.dir " + prop);
/openjdk10/hotspot/test/runtime/modules/
H A DIgnoreModulePropertiesTest.java43 public static void testProperty(String prop, String value) throws Exception { argument
45 "-D" + prop + "=" + value, "-version");
51 if (System.getProperty(prop) != null) {
53 "Unexpected non-null value for property " + prop);
61 String prop, String result) throws Exception {
66 testProperty(prop, value);
60 testOption(String option, String value, String prop, String result) argument
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/jgss/krb5/
H A DMicToken_v2.java48 MessageProp prop) throws GSSException {
50 tokenBytes, tokenOffset, tokenLen, prop);
53 public MicToken_v2(Krb5Context context, InputStream is, MessageProp prop) argument
55 super(Krb5Token.MIC_ID_v2, context, is, prop);
77 public MicToken_v2(Krb5Context context, MessageProp prop, argument
84 if (prop == null) prop = new MessageProp(0, false);
85 genSignAndSeqNumber(prop, data, pos, len);
88 public MicToken_v2(Krb5Context context, MessageProp prop, InputStream data) argument
97 if (prop
46 MicToken_v2(Krb5Context context, byte[] tokenBytes, int tokenOffset, int tokenLen, MessageProp prop) argument
[all...]
H A DMicToken.java39 MessageProp prop) throws GSSException {
41 tokenBytes, tokenOffset, tokenLen, prop);
45 InputStream is, MessageProp prop)
47 super(Krb5Token.MIC_ID, context, is, prop);
69 public MicToken(Krb5Context context, MessageProp prop, argument
76 if (prop == null) prop = new MessageProp(0, false);
77 genSignAndSeqNumber(prop, null, data, pos, len, null);
80 public MicToken(Krb5Context context, MessageProp prop, argument
89 if (prop
37 MicToken(Krb5Context context, byte[] tokenBytes, int tokenOffset, int tokenLen, MessageProp prop) argument
44 MicToken(Krb5Context context, InputStream is, MessageProp prop) argument
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DDefaultFieldRenderer.java66 public FieldOutline generate(ClassOutlineImpl outline, CPropertyInfo prop) { argument
67 return decideRenderer(outline,prop).generate(outline,prop);
70 private FieldRenderer decideRenderer(ClassOutlineImpl outline, CPropertyInfo prop) { argument
72 if (prop instanceof CReferencePropertyInfo) {
73 CReferencePropertyInfo p = (CReferencePropertyInfo)prop;
82 if(!prop.isCollection()) {
87 if(prop.isUnboxable())
H A DSinglePrimitiveAccessField.java37 protected SinglePrimitiveAccessField(ClassOutlineImpl context, CPropertyInfo prop) { argument
38 super(context, prop,true);
H A DConstFieldRenderer.java50 public FieldOutline generate(ClassOutlineImpl outline, CPropertyInfo prop) { argument
51 if(prop.defaultValue.compute(outline.parent())==null)
52 return fallback.generate(outline, prop);
54 return new ConstField(outline,prop);
H A DUntypedListFieldRenderer.java55 public FieldOutline generate(ClassOutlineImpl context, CPropertyInfo prop) { argument
57 return new DummyListField(context, prop, coreList);
60 return new ContentListField(context, prop, coreList);
62 return new UntypedListField(context, prop, coreList);
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBProperty.java61 JAXBProperty( Property prop ) {
62 this.name = prop.name();
63 this.type = new JAXBTypeAndAnnotation(prop.type());
64 this.elementName = prop.elementName();
65 this.rawTypeName = prop.rawName();
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DArrayProperty.java46 protected ArrayProperty(JAXBContextImpl context, RuntimePropertyInfo prop) { argument
47 super(context,prop);
49 assert prop.isCollection();
51 Utils.REFLECTION_NAVIGATOR.erasure(prop.getRawType()),prop.id(),prop.getAdapter());
53 acc = prop.getAccessor().optimize(context);
/openjdk10/jdk/src/java.base/share/classes/sun/net/
H A DResourceManager.java56 String prop = GetPropertyAction
60 if (prop != null) {
61 defmax = Integer.parseInt(prop);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DErrorReporter.java68 void error( Locator loc, String prop, Object... args ) { argument
69 errorReceiver.error( loc, Messages.format(prop,args) );
72 void warning( Locator loc, String prop, Object... args ) { argument
74 Messages.format(prop,args), loc ));
80 private String format( String prop, Object[] args ) {
86 String fmt = ResourceBundle.getBundle(packageName+".Messages").getString(prop);
/openjdk10/nashorn/samples/
H A Dastviewer.js57 for (var prop in ast) {
58 var node = ast[prop];
70 var subitem = treeItemForASTNode(node, prop);
72 var subitem = new TreeItem(prop + ": " + node);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/
H A Dparser.js52 function (prop, value) {
53 if (typeof(value) == 'string' && prop == "value") {

Completed in 254 milliseconds

1234567891011