Searched refs:POS (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DPositiveExpression.java42 super(POS, where, right.type, right);
H A DUnaryExpression.java88 case POS:
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeInfo.java59 private Name[] opname = new Name[JCTree.MOD - JCTree.POS + 1];
65 opname[JCTree.POS - JCTree.POS] = names.fromString("+");
66 opname[JCTree.NEG - JCTree.POS] = names.hyphen;
67 opname[JCTree.NOT - JCTree.POS] = names.fromString("!");
68 opname[JCTree.COMPL - JCTree.POS] = names.fromString("~");
69 opname[JCTree.PREINC - JCTree.POS] = names.fromString("++");
70 opname[JCTree.PREDEC - JCTree.POS] = names.fromString("--");
71 opname[JCTree.POSTINC - JCTree.POS] = names.fromString("++");
72 opname[JCTree.POSTDEC - JCTree.POS]
[all...]
H A DPretty.java932 case JCTree.POS: return "+";
H A DJCTree.java271 public static final int POS = ERRONEOUS + 1; // + field in class:JCTree
272 public static final int NEG = POS + 1; // -
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp254 TypeInt::POS = TypeInt::make(0,max_jint, WidenMin); // Non-neg values member in class:TypeInt
270 TypeLong::POS = TypeLong::make(0,max_jlong, WidenMin); // Non-neg values member in class:TypeLong
337 TypeAryPtr::RANGE = TypeAryPtr::make( TypePtr::BotPTR, TypeAry::make(Type::BOTTOM,TypeInt::POS), NULL /* current->env()->Object_klass() */, false, arrayOopDesc::length_offset_in_bytes());
339 TypeAryPtr::NARROWOOPS = TypeAryPtr::make(TypePtr::BotPTR, TypeAry::make(TypeNarrowOop::BOTTOM, TypeInt::POS), NULL /*ciArrayKlass::make(o)*/, false, Type::OffsetBot);
348 TypeAryPtr::OOPS = TypeAryPtr::make(TypePtr::BotPTR, TypeAry::make(TypeInstPtr::BOTTOM,TypeInt::POS), NULL /*ciArrayKlass::make(o)*/, false, Type::OffsetBot);
350 TypeAryPtr::BYTES = TypeAryPtr::make(TypePtr::BotPTR, TypeAry::make(TypeInt::BYTE ,TypeInt::POS), ciTypeArrayKlass::make(T_BYTE), true, Type::OffsetBot);
351 TypeAryPtr::SHORTS = TypeAryPtr::make(TypePtr::BotPTR, TypeAry::make(TypeInt::SHORT ,TypeInt::POS), ciTypeArrayKlass::make(T_SHORT), true, Type::OffsetBot);
352 TypeAryPtr::CHARS = TypeAryPtr::make(TypePtr::BotPTR, TypeAry::make(TypeInt::CHAR ,TypeInt::POS), ciTypeArrayKlass::make(T_CHAR), true, Type::OffsetBot);
353 TypeAryPtr::INTS = TypeAryPtr::make(TypePtr::BotPTR, TypeAry::make(TypeInt::INT ,TypeInt::POS), ciTypeArrayKlass::make(T_INT), true, Type::OffsetBot);
354 TypeAryPtr::LONGS = TypeAryPtr::make(TypePtr::BotPTR, TypeAry::make(TypeLong::LONG ,TypeInt::POS), ciTypeArrayKlas
1088 const TypeInt *TypeInt::POS; // Positive 32-bit integers or zero member in class:TypeInt
1343 const TypeLong *TypeLong::POS; // >=0 member in class:TypeLong
[all...]
H A Ddivnode.cpp889 Node *cmov1= phase->transform( new (phase->C) CMoveINode(bol1, phase->intcon(1), divisor, TypeInt::POS) );
990 return TypeInt::POS;
995 if( !i2->get_con() ) return TypeInt::POS;
1163 return TypeLong::POS;
1168 if( !i2->get_con() ) return TypeLong::POS;
H A Dtype.hpp453 static const TypeInt *POS; member in class:TypeInt
498 static const TypeLong *POS; member in class:TypeLong
H A Dcallnode.hpp753 fields[AllocSize] = TypeInt::POS;
H A Dmemnode.hpp281 LoadRangeNode( Node *c, Node *mem, Node *adr, const TypeInt *ti = TypeInt::POS )
H A Dcompile.cpp1328 if (ta->size() != TypeInt::POS) {
1329 const TypeAry *tary = TypeAry::make(ta->elem(), TypeInt::POS);
3073 arg1->as_Type()->type()->join(TypeInt::POS)->empty()) {
H A DgraphKit.cpp1148 alen = _gvn.transform( new (C) LoadRangeNode(0, immutable_memory(), r_adr, TypeInt::POS));
3301 // Try to get a better type than POS for the size
3813 TypeAry::make(TypeInt::CHAR,TypeInt::POS),
3836 TypeAry::make(TypeInt::CHAR,TypeInt::POS),
H A Dlibrary_call.cpp898 if (_gvn.type(index)->higher_equal(TypeInt::POS)) // [0,maxint]
905 Node* ccast = new (C) CastIINode(index, TypeInt::POS);
/openjdk7/langtools/test/tools/javac/Diagnostics/6769027/
H A DT6769027.java264 POS(5, "Test.java:1:6: ", "/Test.java:1: error: "); enum constant in enum:T6769027.PositionKind
449 boolean shouldPrintSource = posKind == PositionKind.POS &&
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DConstants.java403 int POS = 35; // +x field in interface:Constants
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java1848 case JCTree.POS:
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java2947 return JCTree.POS;

Completed in 159 milliseconds