Lines Matching refs:stack

143     protected ContextStack stack;       // Easy access for subclasses.
601 protected static Type getType (sun.tools.java.Type key, ContextStack stack) {
602 return getType(key.toString(),stack);
608 protected static Type getType (String key, ContextStack stack) {
609 Type result = (Type) stack.getEnv().allTypes.get(key);
612 stack.traceExistingType(result);
621 protected static void removeType (String key, ContextStack stack) {
622 Type value = (Type) stack.getEnv().allTypes.remove(key);
623 stack.getEnv().invalidTypes.put(value,key);
629 protected static void removeType (sun.tools.java.Type key, ContextStack stack) {
631 Type old = (Type) stack.getEnv().allTypes.remove(theKey);
632 putInvalidType(old,theKey,stack);
638 protected static void putType (sun.tools.java.Type key, Type value, ContextStack stack) {
639 stack.getEnv().allTypes.put(key.toString(),value);
645 protected static void putType (String key, Type value, ContextStack stack) {
646 stack.getEnv().allTypes.put(key,value);
652 protected static void putInvalidType (Type key, String value, ContextStack stack) {
653 stack.getEnv().invalidTypes.put(key,value);
669 protected static void updateAllInvalidTypes (ContextStack stack) {
670 BatchEnvironment env = stack.getEnv();
715 stack = null;
768 protected Type(ContextStack stack, int fullTypeCode) {
769 this.env = stack.getEnv();
770 this.stack = stack;
820 protected static void classNotFound(ContextStack stack,
822 classNotFound(false,stack,e);
829 ContextStack stack,
831 if (!quiet) stack.getEnv().error(0, "rmic.class.not.found", e.name);
832 stack.traceCallStack();
841 * @param stack The context stack.
849 ContextStack stack,
854 stack.getEnv().error(0,message,
859 String error = stack.getEnv().errorString(message,arg0,arg1,arg2);
860 stack.traceln(error);
872 * @param stack The context stack.
879 ContextStack stack,
881 return failedConstraint(constraintNum,quiet,stack,arg0,arg1,null);
891 * @param stack The context stack.
897 ContextStack stack,
899 return failedConstraint(constraintNum,quiet,stack,arg0,null,null);
905 * @param stack The context stack.
913 ContextStack stack) {
914 return failedConstraint(constraintNum,quiet,stack,null,null,null);
978 failedConstraint(27,false,stack,getQualifiedName());