Searched defs:origin (Results 26 - 43 of 43) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/runtime/
H A Dglobals.cpp110 st->print("%9s %-40s %c= ", type, name, (origin != DEFAULT ? ':' : ' '));
312 return (f->origin == DEFAULT);
318 return (f->origin == ERGONOMIC);
324 return (f->origin == COMMAND_LINE);
330 *value = (result->origin == COMMAND_LINE);
342 bool CommandLineFlags::boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin) { argument
349 result->origin = origin;
353 void CommandLineFlagsEx::boolAtPut(CommandLineFlagWithType flag, bool value, FlagValueOrigin origin) { argument
357 faddr->origin
368 intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin) argument
379 intxAtPut(CommandLineFlagWithType flag, intx value, FlagValueOrigin origin) argument
394 uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin) argument
405 uintxAtPut(CommandLineFlagWithType flag, uintx value, FlagValueOrigin origin) argument
420 uint64_tAtPut(char* name, size_t len, uint64_t* value, FlagValueOrigin origin) argument
431 uint64_tAtPut(CommandLineFlagWithType flag, uint64_t value, FlagValueOrigin origin) argument
446 doubleAtPut(char* name, size_t len, double* value, FlagValueOrigin origin) argument
457 doubleAtPut(CommandLineFlagWithType flag, double value, FlagValueOrigin origin) argument
474 ccstrAtPut(char* name, size_t len, ccstr* value, FlagValueOrigin origin) argument
497 ccstrAtPut(CommandLineFlagWithType flag, ccstr value, FlagValueOrigin origin) argument
[all...]
H A Dglobals.hpp216 FlagValueOrigin origin; member in struct:Flag
312 static bool boolAtPut(char* name, size_t len, bool* value, FlagValueOrigin origin);
313 static bool boolAtPut(char* name, bool* value, FlagValueOrigin origin) { return boolAtPut(name, strlen(name), value, origin); } argument
317 static bool intxAtPut(char* name, size_t len, intx* value, FlagValueOrigin origin);
318 static bool intxAtPut(char* name, intx* value, FlagValueOrigin origin) { return intxAtPut(name, strlen(name), value, origin); } argument
322 static bool uintxAtPut(char* name, size_t len, uintx* value, FlagValueOrigin origin);
323 static bool uintxAtPut(char* name, uintx* value, FlagValueOrigin origin) { return uintxAtPut(name, strlen(name), value, origin); } argument
328 uint64_tAtPut(char* name, uint64_t* value, FlagValueOrigin origin) argument
333 doubleAtPut(char* name, double* value, FlagValueOrigin origin) argument
338 ccstrAtPut(char* name, ccstr* value, FlagValueOrigin origin) argument
[all...]
H A Darguments.cpp583 static bool set_bool_flag(char* name, bool value, FlagValueOrigin origin) { argument
584 return CommandLineFlags::boolAtPut(name, &value, origin);
587 static bool set_fp_numeric_flag(char* name, char* value, FlagValueOrigin origin) { argument
593 if (CommandLineFlags::doubleAtPut(name, &v, origin)) {
599 static bool set_numeric_flag(char* name, char* value, FlagValueOrigin origin) { argument
618 if (CommandLineFlags::intxAtPut(name, &intx_v, origin)) {
622 if (!is_neg && CommandLineFlags::uintxAtPut(name, &uintx_v, origin)) {
626 if (!is_neg && CommandLineFlags::uint64_tAtPut(name, &uint64_t_v, origin)) {
632 static bool set_string_flag(char* name, const char* value, FlagValueOrigin origin) { argument
633 if (!CommandLineFlags::ccstrAtPut(name, &value, origin)) retur
639 append_to_string_flag(char* name, const char* new_value, FlagValueOrigin origin) argument
667 parse_argument(const char* arg, FlagValueOrigin origin) argument
803 process_argument(const char* arg, jboolean ignore_unrecognized, FlagValueOrigin origin) argument
2131 parse_each_vm_init_arg(const JavaVMInitArgs* args, SysClassPath* scp_p, bool* scp_assembly_required_p, FlagValueOrigin origin) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDependencies.java349 public SimpleDependency(Location origin, Location target) { argument
350 this.origin = origin;
355 return origin;
369 return (origin.equals(o.origin) && target.equals(o.target));
374 return origin.hashCode() * 31 + target.hashCode();
379 return origin + ":" + target;
382 private Location origin; field in class:Dependencies.SimpleDependency
546 private Location origin; field in class:Dependencies.BasicDependencyFinder.Visitor
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTransTypes.java196 * local scope of origin.
201 * @param origin The class to which the bridge will be added
211 ClassSymbol origin,
215 Type origType = types.memberType(origin.type, meth);
225 origin);
231 JCExpression receiver = (impl.owner == origin)
232 ? make.This(origin.erasure(types))
233 : make.Super(types.supertype(origin.type).tsym.erasure(types), origin);
256 origin
208 addBridge(DiagnosticPosition pos, MethodSymbol meth, MethodSymbol impl, ClassSymbol origin, boolean hypothetical, ListBuffer<JCTree> bridges) argument
278 addBridgeIfNeeded(DiagnosticPosition pos, Symbol sym, ClassSymbol origin, ListBuffer<JCTree> bridges) argument
384 addBridges(DiagnosticPosition pos, TypeSymbol i, ClassSymbol origin, ListBuffer<JCTree> bridges) argument
399 addBridges(DiagnosticPosition pos, ClassSymbol origin, ListBuffer<JCTree> bridges) argument
[all...]
H A DCheck.java1362 * where `origin' is the class where checking started.
1379 * @param origin The class of which the overriding method
1385 ClassSymbol origin) {
1416 if ((origin.flags() & INTERFACE) == 0 &&
1426 Type mt = types.memberType(origin.type, m);
1427 Type ot = types.memberType(origin.type, other);
1442 m.owner != origin &&
1496 if (!isDeprecatedOverrideIgnorable(other, origin)) {
1501 private boolean isDeprecatedOverrideIgnorable(MethodSymbol m, ClassSymbol origin) { argument
1510 Type st = types.supertype(origin
1382 checkOverride(JCTree tree, MethodSymbol m, MethodSymbol other, ClassSymbol origin) argument
1749 checkOverride(JCTree tree, Type site, ClassSymbol origin, MethodSymbol m) argument
1762 checkNameClash(ClassSymbol origin, Symbol s1, Symbol s2) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java138 private int origin; field in class:VM.Flag
140 private Flag(String type, String name, Address addr, String kind, int origin) { argument
145 this.origin = origin;
165 return origin;
817 CIntField originFld = new CIntField(flagType.getCIntegerField("origin"), 0);
827 int origin = (int)originFld.getValue(flagAddr);
828 commandLineFlags[f] = new Flag(type, name, addr, kind, origin);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicToolBarUI.java952 protected void dragTo(Point position, Point origin) argument
966 Point global = new Point(origin.x+ position.x,
967 origin.y+position.y);
1002 protected void floatAt(Point position, Point origin) argument
1013 Point global = new Point(origin.x+ position.x,
1014 origin.y+position.y);
1162 Point origin = null; field in class:BasicToolBarUI.Handler
1177 if (origin == null)
1178 origin = evt.getComponent().getLocationOnScreen();
1179 floatAt(position, origin);
1326 protected Point origin = null; field in class:BasicToolBarUI.DockingListener
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A Djmm.h160 jmmVMGlobalOrigin origin; /* Default or non-default value */ member in struct:__anon475
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_p.h103 Widget origin; member in struct:WidgetInfo
326 extern void awt_addWidget(Widget w, Widget origin, void *peer, jlong event_mask);
H A Dawt_MToolkit.c531 if (cw->widget == widget || cw->origin == widget) {
539 awt_addWidget(Widget w, Widget origin, void *peer, jlong event_flags) argument
548 nw->origin = origin;
559 if (w != origin) {
560 XtAddEventHandler(origin,
570 if (w != origin) {
571 XtAddEventHandler(origin,
580 if (w != origin) {
581 XtAddEventHandler(origin,
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java403 * members of class `origin'? It is assumed that _other is a member
404 * of origin.
411 public boolean overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) { argument
1113 * override the erasure of the other when seen from class `origin'?
1115 public boolean binaryOverrides(Symbol _other, TypeSymbol origin, Types types) { argument
1130 other.isOverridableIn(origin) &&
1131 this.isMemberOf(origin, types) &&
1135 /** The implementation of this (abstract) symbol in class origin,
1138 * @param origin The class of which the implementation is a member.
1140 public MethodSymbol binaryImplementation(ClassSymbol origin, Type argument
1162 overrides(Symbol _other, TypeSymbol origin, Types types, boolean checkResult) argument
1196 isOverridableIn(TypeSymbol origin) argument
1220 implementation(TypeSymbol origin, Types types, boolean checkResult) argument
1231 implementation(TypeSymbol origin, Types types, boolean checkResult, Filter<Symbol> implFilter) argument
[all...]
H A DType.java1230 public UndetVar(Type origin) { argument
1231 super(UNDETVAR, origin);
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...]
/openjdk7/jdk/src/share/javavm/export/
H A Djmm.h160 jmmVMGlobalOrigin origin; /* Default or non-default value */ member in struct:__anon569
/openjdk7/jdk/src/share/classes/javax/swing/
H A DGroupLayout.java300 * aligned to the origin. For the horizontal axis with a left to
969 * where 0 represents alignment along the origin, 1 is aligned
970 * the furthest away from the origin, 0.5 is centered, etc.
986 * where 0 represents alignment along the origin, 1 is aligned
987 * the furthest away from the origin, 0.5 is centered, etc.
1064 int origin, int size) {
1079 group.setSize(axis, origin, size);
1225 String origin = "";
1229 origin = Integer.toString(cSpring.getOrigin()) + " ";
1232 origin
1063 calculateAutopadding(Group group, int axis, int sizeType, int origin, int size) argument
1370 setSize(int axis, int origin, int size) argument
1579 setSize(int axis, int origin, int size) argument
1595 setValidSize(int axis, int origin, int size) argument
2016 setValidSize(int axis, int origin, int size) argument
2036 setValidSizeNotPreferred(int axis, int origin, int size) argument
2579 setValidSize(int axis, int origin, int size) argument
2585 setChildSize(Spring spring, int axis, int origin, int size) argument
2695 setValidSize(int axis, int origin, int size) argument
2856 baselineLayout(int origin, int size) argument
2935 private int origin; field in class:GroupLayout.ComponentSpring
3048 setSize(int axis, int origin, int size) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
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...]
H A DPageAttributes.java34 * orientation, logical origin, print quality, and resolution of every
850 * The OriginType instance to use for specifying a physical origin.
854 * The OriginType instance to use for specifying a printable origin.
904 private OriginType origin; field in class:PageAttributes
939 * @param origin OriginType.PHYSICAL or OriginType.PRINTABLE
951 OriginType origin, PrintQualityType printQuality,
956 setOrigin(origin);
986 origin = obj.origin;
1141 return origin;
949 PageAttributes(ColorType color, MediaType media, OrientationRequestedType orientationRequested, OriginType origin, PrintQualityType printQuality, int[] printerResolution) argument
1154 setOrigin(OriginType origin) argument
[all...]

Completed in 358 milliseconds

12