Searched defs:where (Results 126 - 150 of 153) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DStatement.java47 Statement(int op, long where) { argument
48 super(op, where);
96 env.error(e.where, "invalid.label");
148 env.error(where, "nested.duplicate.label", labels[i]);
160 env.error(where, "nested.duplicate.label", labels[i]);
171 /** This is called in contexts where declarations are valid. */
178 env.error(where, "stat.not.reached");
197 s = new CompoundStatement(where, args);
253 asm.add(where, opc_istore + save.getTypeCodeOffset(), num);
260 asm.add(where, opc_pop
[all...]
H A DContext.java393 public Expression findOuterLink(Environment env, long where, argument
404 return findOuterLink(env, where, reqc, f, false);
417 public Expression findOuterLink(Environment env, long where, argument
425 env.error(where, "undef.var", Identifier.lookup(nm,idThis));
427 env.error(where, "no.outer.arg", reqc, f.getClassDeclaration());
429 env.error(where, "no.static.meth.access",
432 env.error(where, "no.static.field.access", f.getName(),
442 Expression e = new ThisExpression(where, this);
467 thise = new ThisExpression(where, this);
479 thise = new ThisExpression(where, l
[all...]
H A DExpression.java46 Expression(int op, long where, Type type) { argument
47 super(op, where);
144 env.error(where, "invalid.type.expr");
149 * Convert an expresion to a type in a context where a qualified
155 env.error(where, "invalid.type.expr");
207 env.error(where, "invalid.lhs.assignment");
248 env.error(where, "invalid.arg", opNames[outside.op]);
250 env.error(where, "invalid.lhs.assignment");
379 // happen in cases where isConstant() is able to classify
424 asm.add(where, whenTru
[all...]
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java43 * A test case where we instantiate an ExceptionalWombatMBean (or a
45 * the methods indicated by {@code where}
49 public final EnumSet<WHERE> where; field in class:PostExceptionTest.Case
50 public Case(Throwable t,EnumSet<WHERE> where) { argument
51 this.t=t; this.where=where;
61 public static Case caze(Throwable t, EnumSet<WHERE> where) { argument
62 return new Case(t,where);
102 failures+=test(mbs,n,how,caze.t,caze.where);
114 // mbs: The MBeanServer where th
122 test(MBeanServer mbs, ObjectName name, CREATE how, Throwable t, EnumSet<WHERE> where) argument
422 create(Throwable t, EnumSet<WHERE> where, MBeanServer server, ObjectName name) argument
460 private final EnumSet<WHERE> where; field in class:PostExceptionTest.ExceptionalWombat
463 ExceptionalWombat(Throwable t, EnumSet<WHERE> where) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DLocation.java191 Location(Where where, Type type, int offset) { argument
192 setWhere(where);
198 int where = (value & WHERE_MASK) >> WHERE_SHIFT;
199 if (where == WHERE_ON_STACK) {
201 } else if (where == WHERE_IN_REGISTER) {
342 private void setWhere(Where where) { argument
343 value |= ((where.getValue() << WHERE_SHIFT) & WHERE_MASK);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapContent.java44 * to take advantage of common behavior where most changes are
121 * @param where the starting position >= 0, < length()
127 public UndoableEdit insertString(int where, String str) throws BadLocationException { argument
128 if (where > length() || where < 0) {
132 replace(where, 0, chars, chars.length);
133 return new InsertUndo(where, str.length());
139 * @param where the starting position >= 0, where + nitems < length()
145 public UndoableEdit remove(int where, in argument
165 getString(int where, int len) argument
183 getChars(int where, int len, Segment chars) argument
[all...]
H A DAbstractDocument.java785 * returns will give better performance for situations where large
1327 * where order of delivery is not guaranteed and all listeners
1608 * @param where offset into the sequence to make the insertion >= 0
1616 public UndoableEdit insertString(int where, String str) throws BadLocationException; argument
1621 * @param where The offset into the sequence to make the
1630 public UndoableEdit remove(int where, int nitems) throws BadLocationException; argument
1635 * @param where Offset into the sequence to fetch >= 0.
1641 public String getString(int where, int len) throws BadLocationException; argument
1646 * @param where the starting offset >= 0
1652 public void getChars(int where, in argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Difg.cpp79 // IFG is triangular, so do the inserts where 'a' < 'b'.
442 static void lower_pressure( LRG *lrg, uint where, Block *b, uint *pressure, uint *hrp_index ) { argument
447 hrp_index[1] = where;
458 hrp_index[0] = where;
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DParser.java236 public void defineField(long where, ClassDefinition c, argument
256 defineField(where, doc, mod, t, nm.id, argIds, expIds, val);
263 protected void defineField(long where, String doc, int mod, Type t, argument
H A DEnvironment.java113 // If the name is of the form 'ClassName.N$localName', where N is
231 public boolean resolve(long where, ClassDefinition c, Type t) { argument
240 def = getQualifiedClassDefinition(where, nm, c, false);
244 error(where, "cant.access.class", def);
247 def.noteUsedBy(c, where, env);
249 error(where, "ambig.class", ee.name1, ee.name2);
257 env.error(where, "class.and.package",
261 env.error(where, "io.exception", "package check");
264 // error(where, "class.not.found", e.name, "declaration");
265 error(where, "clas
290 resolveByName(long where, ClassDefinition c, Identifier nm) argument
294 resolveExtendsByName(long where, ClassDefinition c, Identifier nm) argument
298 resolveByName(long where, ClassDefinition c, Identifier nm, boolean isExtends) argument
340 getQualifiedClassDefinition(long where, Identifier nm, ClassDefinition ctxClass, boolean isExtends) argument
580 makeClassDefinition(Environment origEnv, long where, IdentifierToken name, String doc, int modifiers, IdentifierToken superClass, IdentifierToken interfaces[], ClassDefinition outerClass) argument
595 makeMemberDefinition(Environment origEnv, long where, ClassDefinition clazz, String doc, int modifiers, Type type, Identifier name, IdentifierToken argNames[], IdentifierToken expIds[], Object value) argument
874 error(Object source, long where, String err, Object arg1, Object arg2, Object arg3) argument
877 error(long where, String err, Object arg1, Object arg2, Object arg3) argument
880 error(long where, String err, Object arg1, Object arg2) argument
883 error(long where, String err, Object arg1) argument
886 error(long where, String err) argument
[all...]
H A DMemberDefinition.java49 protected long where; field in class:MemberDefinition
67 public MemberDefinition(long where, ClassDefinition clazz, int modifiers, argument
73 this.where = where;
153 return where;
537 * `method' is visible to the class where this override is occurring.
553 * null, it reports the errors in the class where `this' is
H A DClassDefinition.java48 protected long where; field in class:ClassDefinition
94 protected ClassDefinition(Object source, long where, ClassDeclaration declaration, argument
97 this.where = where;
161 return where;
194 // There are obscure cases where null is the right answer,
214 * 'SourceClass', where it overrides this one.
776 * <accessor>.<field>, where <accessor> has the type <accessorType>?
917 public void noteUsedBy(ClassDefinition ref, long where, Environment env) { argument
920 env.error(where, "war
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A Dsa.js893 function where(javaThread) { function
/openjdk7/hotspot/src/share/vm/ci/
H A DciObjectFactory.cpp722 void ciObjectFactory::insert_non_perm(ciObjectFactory::NonPermObject* &where, oop key, ciObject* obj) { argument
723 assert(&where != &emptyBucket, "must not try to fill empty bucket");
724 NonPermObject* p = new (arena()) NonPermObject(where, key, obj);
725 assert(where == p && is_equal(p, key) && p->object() == obj, "entry must match");
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp447 size_t where, int hole_sz, typeArrayOop src) {
457 memcpy(dst_addr, src_addr, where);
458 memcpy(dst_addr + where + hole_sz,
459 src_addr + where, src->length() - where);
525 // check and update any Uninitialized type's bci (no matter where it is).
446 insert_hole_at( size_t where, int hole_sz, typeArrayOop src) argument
H A Dfprofiler.cpp243 void update(TickPosition where) { argument
244 switch(where) {
282 void update(TickPosition where) { ticks.update(where);} argument
393 interpretedNode(methodOop method, TickPosition where) : ProfilerNode() { argument
395 update(where);
430 compiledNode(methodOop method, TickPosition where) : ProfilerNode() { argument
432 update(where);
466 stubNode(methodOop method, const char* name, TickPosition where) : ProfilerNode() { argument
469 update(where);
508 adapterNode(TickPosition where) argument
535 runtimeStubNode(const CodeBlob* stub, const char* name, TickPosition where) argument
580 unknown_compiledNode(const CodeBlob* cb, TickPosition where) argument
615 vmNode(const TickPosition where) argument
620 vmNode(const char* name, const TickPosition where) argument
664 interpreted_update(methodOop method, TickPosition where) argument
681 compiled_update(methodOop method, TickPosition where) argument
698 stub_update(methodOop method, const char* name, TickPosition where) argument
715 adapter_update(TickPosition where) argument
732 runtime_stub_update(const CodeBlob* stub, const char* name, TickPosition where) argument
750 unknown_compiled_update(const CodeBlob* cb, TickPosition where) argument
767 vm_update(TickPosition where) argument
771 vm_update(const char* name, TickPosition where) argument
945 record_interpreted_tick(JavaThread* thread, frame fr, TickPosition where, int* ticks) argument
971 record_compiled_tick(JavaThread* thread, frame fr, TickPosition where) argument
[all...]
H A Dos.cpp537 void report_heap_error(void* memblock, void* bad, const char* where) { argument
539 tty->print_cr("## memory stomp: byte at " PTR_FORMAT " %s object " PTR_FORMAT, bad, where, memblock);
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java47 * The stream where error message are printed.
915 long where,
993 new SourceClass(toplevelEnv, where, c, doc,
1021 public MemberDefinition makeMemberDefinition(Environment origEnv, long where, argument
1036 SourceMember f = new SourceMember(where, clazz, doc, modifiers,
1082 * The filename where the last errors have occurred
1104 boolean insertError(long where, String message) { argument
1108 || errors.where > where) {
1111 ErrorMessage newMsg = new ErrorMessage(where, messag
914 makeClassDefinition(Environment toplevelEnv, long where, IdentifierToken name, String doc, int modifiers, IdentifierToken superClass, IdentifierToken interfaces[], ClassDefinition outerClass) argument
1254 reportError(Object src, long where, String err, String msg) argument
1350 error(Object source, long where, String err, Object arg1, Object arg2, Object arg3) argument
[all...]
H A DSourceClass.java100 public SourceClass(Environment env, long where, argument
105 super(env.getSource(), where,
118 env.error(where, "static.class", this);
131 env.error(where, "inner.interface");
133 env.error(where, "static.inner.class", this);
142 env.error(where, "private.class", this);
146 env.error(where, "protected.class", this);
151 env.error(where, "warn.public.local.class", this);
181 env.error(where, "inner.redefined", thisName);
222 thisArg = new LocalMember(where, thi
482 noteUsedBy(ClassDefinition ref, long where, Environment env) argument
636 checkSourceFile(Environment env, long where) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/interceptor/
H A DDefaultMBeanServerInterceptor.java335 // Includes case where getMBeanInfo() returns null
380 this. This will not happen to code where it is clear for
982 private static void throwMBeanRegistrationException(Throwable t, String where) argument
986 "RuntimeException thrown " + where);
989 "Error thrown " + where);
994 "Exception thrown " + where);
1117 if one is supplied where it shouldn't be). */
1535 * unusual case where the user creates a custom
1583 * unusual case where the user creates a custom
1635 * unusual case where th
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.cpp1417 Condition cond, Label* where) {
1424 jcc(cond, *where);
1414 increment_mask_and_jump(Address counter_addr, int increment, int mask, Register scratch, bool preloaded, Condition cond, Label* where) argument
H A Dinterp_masm_x86_64.cpp1477 Condition cond, Label* where) {
1484 jcc(cond, *where);
1474 increment_mask_and_jump(Address counter_addr, int increment, int mask, Register scratch, bool preloaded, Condition cond, Label* where) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java130 * HREF where commentTagsToString inserts a {&#064;docRoot} where one was
135 * destination directory from the directory where the file is being
173 // Insert docrootparent absolute path where {@docRoot}/.. was located
191 // Insert relative path where {@docRoot} was located
208 * @param where Position in the file
213 public void printNoFramesTargetHyperLink(String link, String where, argument
220 + getHyperLinkString(link, where, label, strong, "", "", target) + "');");
225 println(" " + getHyperLinkString(link, where, label, strong, "", "", target));
1869 * @param context the id of the context where th
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp2423 Condition cond, Label *where) {
2432 br(cond, false, Assembler::pn, *where);
2420 increment_mask_and_jump(Address counter_addr, int increment, int mask, Register scratch1, Register scratch2, Condition cond, Label *where) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintJob.cpp1484 * its unnecessary as the driver performs adequate compression where
1706 POINT where; local
1707 ::GetCurrentPositionEx((HDC)printDC, &where);
1709 return (jint) where.x;
1724 POINT where; local
1725 ::GetCurrentPositionEx((HDC)printDC, &where);
1727 return (jint) where.y;
2381 * bottom of the DIB, which is where the first scan line is.

Completed in 139 milliseconds

1234567