Searched refs:origin (Results 76 - 84 of 84) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/awt/
H A DGridBagLayout.java63 * display area, where the cell at the origin of the grid has address
550 * Determines the origin of the layout area, in the graphics coordinate
554 * is distinct from the grid origin given by the cell coordinates (0,0).
556 * @return the graphics origin of the cell in the top-left
562 Point origin = new Point(0,0);
564 origin.x = layoutInfo.startx;
565 origin.y = layoutInfo.starty;
567 return origin;
765 * where 0 represents alignment along the origin, 1 is aligned
766 * the furthest away from the origin, 0.
[all...]
H A DContainer.java1904 * where 0 represents alignment along the origin, 1 is aligned
1905 * the furthest away from the origin, 0.5 is centered, etc.
1924 * where 0 represents alignment along the origin, 1 is aligned
1925 * the furthest away from the origin, 0.5 is centered, etc.
4183 private void recursiveRelocateHeavyweightChildren(Point origin) { argument
4190 final Point newOrigin = new Point(origin);
4197 peer.setBounds(origin.x + comp.getX(), origin.y + comp.getY(),
4279 final Point origin = new Point(getX(), getY());
4284 origin
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java874 Point origin = new Point(0, 0);
880 origin);
888 origin);
896 origin);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java509 //todo: test against origin needed? or replace with substitution?
2062 MethodSymbol get(MethodSymbol ms, TypeSymbol origin, boolean checkResult, Filter<Symbol> implFilter) { argument
2069 Entry e = cache.get(origin);
2070 CompoundScope members = membersClosure(origin.type, true);
2073 MethodSymbol impl = implementationInternal(ms, origin, checkResult, implFilter);
2074 cache.put(origin, new Entry(impl, implFilter, checkResult, members.getMark()));
2082 private MethodSymbol implementationInternal(MethodSymbol ms, TypeSymbol origin, boolean checkResult, Filter<Symbol> implFilter) { argument
2083 for (Type t = origin.type; t.tag == CLASS || t.tag == TYPEVAR; t = supertype(t)) {
2091 e.sym.overrides(ms, origin, Types.this, checkResult))
2101 public MethodSymbol implementation(MethodSymbol ms, TypeSymbol origin, boolea argument
[all...]
H A DType.java1230 public UndetVar(Type origin) { argument
1231 super(UNDETVAR, origin);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java950 Point2D.Float origin = new Point2D.Float(0, 0);
951 double scaleX = unitVectorX.distance(origin);
952 double scaleY = unitVectorY.distance(origin);
/openjdk7/jdk/make/common/shared/
H A DPlatform.gmk242 ifeq ($(origin ARCH), undefined)
H A DSanity.gmk579 ifeq ($(origin MAKEFLAGS),environment)
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp1201 nonstatic_field(Flag, origin, FlagValueOrigin) \

Completed in 93 milliseconds

1234