Searched defs:outside (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DExprExpression.java63 Vset vset, Hashtable exp, Expression outside) {
64 vset = right.checkAssignOp(env, ctx, vset, exp, outside);
62 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
H A DArrayAccessExpression.java120 Vset vset, Hashtable exp, Expression outside) {
119 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
H A DFieldExpression.java741 // outside of the package in public subclasses. In these
948 Vset vset, Hashtable exp, Expression outside) {
947 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
H A DIdentifierExpression.java266 Vset vset, Hashtable exp, Expression outside) {
265 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
H A DExpression.java246 Vset vset, Hashtable exp, Expression outside) {
247 if (outside instanceof IncDecExpression)
248 env.error(where, "invalid.arg", opNames[outside.op]);
245 checkAssignOp(Environment env, Context ctx, Vset vset, Hashtable exp, Expression outside) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_ScrollPane.cpp151 RECT outside; local
153 ::GetWindowRect(GetHWnd(), &outside); local
165 if (insets != NULL && (inside.top-outside.top) != 0) {
166 (env)->SetIntField(insets, AwtInsets::topID, inside.top - outside.top);
167 (env)->SetIntField(insets, AwtInsets::leftID, inside.left - outside.left);
168 (env)->SetIntField(insets, AwtInsets::bottomID, outside.bottom - inside.bottom);
169 (env)->SetIntField(insets, AwtInsets::rightID, outside.right - inside.right);
H A Dawt_Window.cpp1327 RECT outside; local
1332 ::GetWindowRect(GetHWnd(), &outside); local
1335 if (outside.right - outside.left > 0 && outside.bottom - outside.top > 0) {
1337 m_insets.top = inside.top - outside.top;
1338 m_insets.bottom = outside.bottom - inside.bottom + extraBottomInsets;
1339 m_insets.left = inside.left - outside.left;
1340 m_insets.right = outside
2753 RECT outside; local
2760 ::GetWindowRect(GetHWnd(), &outside); local
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaInternalFrameUI.java757 public CompoundUIBorder(final Border inside, final Border outside) { super(inside, outside); } argument

Completed in 2149 milliseconds