Searched refs:where (Results 151 - 175 of 249) sorted by relevance

12345678910

/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeReferenceError.java51 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
55 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
H A DNativeRangeError.java51 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
55 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
H A DNativeSyntaxError.java51 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
55 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
H A DNativeTypeError.java51 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
55 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
H A DNativeURIError.java50 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
54 @Property(attributes = Attribute.NOT_ENUMERABLE, where = Where.PROTOTYPE)
H A DNativeRegExp.java386 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "input")
397 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "multiline")
407 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "lastMatch")
418 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "lastParen")
429 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "leftContext")
440 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "rightContext")
451 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "$1")
462 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "$2")
473 @Getter(where = Where.CONSTRUCTOR, attributes = Attribute.CONSTANT, name = "$3")
484 @Getter(where
[all...]
H A DNativeObject.java157 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
177 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
204 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
225 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
249 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
267 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
285 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
311 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
326 @Function(attributes = Attribute.NOT_ENUMERABLE, where = Where.CONSTRUCTOR)
348 @Function(attributes = Attribute.NOT_ENUMERABLE, where
[all...]
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/asm/
H A DAssembler.java75 public void add(long where, int opc) { argument
76 add(new Instruction(where, opc, null));
78 public void add(long where, int opc, Object obj) { argument
79 add(new Instruction(where, opc, obj));
82 public void add(long where, int opc, Object obj, boolean flagCondInverted) { argument
83 add(new Instruction(where, opc, obj, flagCondInverted));
86 public void add(boolean flagNoCovered, long where, int opc, Object obj) { argument
87 add(new Instruction(flagNoCovered, where, opc, obj));
90 public void add(long where, int opc, boolean flagNoCovered) { argument
91 add(new Instruction(where, op
[all...]
H A DInstruction.java42 long where; field in class:Instruction
57 public Instruction(long where, int opc, Object value, boolean flagCondInverted) { argument
58 this.where = where;
67 public Instruction(boolean flagNoCovered, long where, int opc, Object value) { argument
68 this.where = where;
77 public Instruction(long where, int opc, boolean flagNoCovered) { argument
78 this.where = where;
87 Instruction(long where, int opc, Object value) argument
[all...]
/openjdk9/jdk/test/java/nio/charset/spi/
H A Dbasic.sh99 for where in app; do
102 echo "LC_ALL=$LC_ALL where=$where security=$security"
104 if [ $where = app ]; then
/openjdk9/jdk/src/java.naming/share/classes/com/sun/jndi/toolkit/dir/
H A DSearchFilter.java379 // used for substring comparisons (where proto has "*" wildcards
491 * If obj is a byte array, encode each item as \xx, where xx is hex encoding
508 // binary data must be encoded as \hh where hh is a hex char
559 int where = val.indexOf(ch, start);
561 if (where == start || where == -1 || val.charAt(where-1) != '\\')
562 return where;
565 start = where + 1;
587 int where
[all...]
/openjdk9/hotspot/test/gc/stress/
H A DTestGCOld.java80 = " where <size> is the live storage in megabytes";
101 private static int where = 0; // roving index into trees field in class:TestGCOld
256 trees[where++] = makeTree(treeHeight);
257 if (where == trees.length) where = 0;
262 replaceTree(trees[where++], newTree);
263 if (where == trees.length) where = 0;
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DConditionalExpression.java46 public ConditionalExpression(long where, Expression cond, Expression left, Expression right) { argument
47 super(COND, where, Type.tError, left, right);
148 cond = new NotExpression(where, cond);
199 asm.add(where, opc_goto, l2);
210 asm.add(where, opc_goto, l2);
H A DForStatement.java49 public ForStatement(long where, Statement init, Expression cond, Expression inc, Statement body) { argument
50 super(FOR, where);
102 return new CompoundStatement(where, body).inline(env, ctx);
168 asm.add(where, opc_goto, l2);
184 asm.add(where, opc_goto, l1);
H A DAssignOpExpression.java48 public AssignOpExpression(int op, long where, Expression left, Expression right) { argument
49 super(op, where, left, right);
65 env.error(where, "incompatible.type",
103 right = new ConvertExpression(where, Type.tInt, right);
234 asm.add(where, opc_iinc, operands);
H A DWhileStatement.java47 public WhileStatement(long where, Expression cond, Statement body) { argument
48 super(WHILE, where);
114 asm.add(where, opc_goto, newctx.contLabel);
H A DCommaExpression.java42 public CommaExpression(long where, Expression left, Expression right) { argument
43 super(COMMA, where, (right != null) ? right.type : Type.tVoid, left, right);
H A DDoStatement.java47 public DoStatement(long where, Statement body, Expression cond) { argument
48 super(DO, where);
H A DUplevelReference.java365 long where, MemberDefinition conField) {
372 next.codeArguments(env, ctx, asm, where, conField);
381 long where, MemberDefinition conField) {
394 next.codeInitialization(env, ctx, asm, where, conField);
364 codeArguments(Environment env, Context ctx, Assembler asm, long where, MemberDefinition conField) argument
380 codeInitialization(Environment env, Context ctx, Assembler asm, long where, MemberDefinition conField) argument
/openjdk9/hotspot/test/gc/arguments/
H A DTestMaxNewSize.java98 private static String getFlagValue(String flag, String where) { argument
99 Matcher m = Pattern.compile(flag + "\\s+:?=\\s+\\d+").matcher(where);
/openjdk9/jdk/test/java/nio/file/
H A DTestUtil.java33 static Path createTemporaryDirectory(String where) throws IOException { argument
34 Path dir = FileSystems.getDefault().getPath(where);
/openjdk9/hotspot/src/share/vm/interpreter/
H A Dbytecode.cpp88 void Bytecode::assert_constant_size(int size, int where, Bytecodes::Code bc, bool is_wide) { argument
99 if (have_fmt != need_fmt || where + size != length) {
100 tty->print_cr("assert_constant_size %d @%d: bc=%d%s %d != %d", size, where, bc, (is_wide?"/wide":""), have_fmt, need_fmt);
103 assert(where + size == length, "assert_constant_size oob");
/openjdk9/jdk/test/com/sun/jdi/
H A DRedefineIntConstantToLong.sh92 cmd where
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/
H A DLinkFactoryImpl.java84 if (classLinkInfo.where == null || classLinkInfo.where.length() == 0) {
98 filename.fragment(classLinkInfo.where),
110 typeElement.getQualifiedName().toString(), classLinkInfo.where,
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/execution/
H A DDemultiplexInput.java103 * @param where a description of the context of the exception
105 private void debug(Throwable ex, String where) { argument

Completed in 150 milliseconds

12345678910