Searched refs:global (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/script/util/
H A DBindingsImpl.java32 * global and local scopes.
39 //get method delegates to global if key is not defined in
41 protected Bindings global = null; field in class:BindingsImpl
47 global = n;
70 } else if (global != null) {
71 return global.get(key);
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DageTable.hpp49 // constructor. "global" indicates that this is the global age table
51 ageTable(bool global = true);
H A DageTable.cpp36 ageTable::ageTable(bool global) { argument
40 if (UsePerfData && global) {
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DPrintGenerator.java55 private boolean global = false; field in class:PrintGenerator
93 global = true;
153 case IDL: theType.println(out,qualified,true,global);
157 theType.println(out,qualified,true,global);
H A DPrimitiveType.java137 * @param global If true, prepends "::".
139 public String getQualifiedIDLName(boolean global) { argument
H A DType.java205 * @param global If true, prepends "::".
207 public String getQualifiedIDLName(boolean global) { argument
208 if (global && getIDLModuleNames().length > 0) {
H A DCompoundType.java176 * @param global If true, prepends "::".
178 public String getQualifiedIDLExceptionName (boolean global) { argument
180 global &&
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpRequestTree.java129 // global code in either noSuchInstance or noSuchObject,
182 // Only genErr will abort the GET and be returned as global
231 SnmpMibSubRequestImpl(SnmpMibRequest global, Vector<SnmpVarBind> sublist, argument
234 this.global = global;
236 this.version = global.getVersion();
244 final private SnmpMibRequest global; field in class:SnmpRequestTree.SnmpMibSubRequestImpl
281 // XXX not sure we must also add the varbind in the global
285 global.addVarBind(varbind);
310 return global
[all...]
/openjdk7/jdk/test/java/util/logging/
H A DTestAppletLoggerContext.java113 TestExc global = new TestExc(); field in class:TestAppletLoggerContext.Bridge.JavaAWTAccessStub
116 public Object getContext() { return active ? global : null; }
126 public Object get(Object o) { return global.get(o); }
128 public void put(Object o, Object o1) { global.put(o, o1); }
130 public void remove(Object o) { global.remove(o); }
228 + "Test adding a new logger named \"global\" in that"
285 testParent(LogManager.getLogManager().getLogger("global"));
295 testParent(LogManager.getLogManager().getLogger("global"));
306 testParent(LogManager.getLogManager().getLogger("global"));
316 testParent(LogManager.getLogManager().getLogger("global"));
[all...]
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DMaxRetries.java73 rewriteUdpPrefLimit(10, -1); // global rules
142 * Set udp_preference_limit for global and realm
144 private static void rewriteUdpPrefLimit(int global, int realm) argument
154 // Reconfig global setting
155 if (global != -1) {
156 fw.write("udp_preference_limit = " + global + "\n");
172 * Set max_retries and timeout value for realm. The global value is always
185 // Reconfig global setting
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dsolaris_sparc.s41 .global Fetch32PFI, Fetch32Resume
70 .global SpinPause
80 .global _Copy_conjoint_jlongs_atomic
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicToolBarUI.java966 Point global = new Point(origin.x+ position.x,
968 Point dragPoint = new Point(global.x- offset.x,
969 global.y- offset.y);
974 Point comparisonPoint = new Point(global.x-dockingPosition.x,
975 global.y-dockingPosition.y);
1013 Point global = new Point(origin.x+ position.x,
1015 setFloatingLocation(global.x-offset.x,
1016 global.y-offset.y);
1019 Point comparisonPoint = new Point(global.x-dockingPosition.x,
1020 global
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DMain.java667 Attributes global = m.getMainAttributes();
668 if (global.getValue(Attributes.Name.MANIFEST_VERSION) == null) {
669 global.put(Attributes.Name.MANIFEST_VERSION, VERSION);
674 Attributes global = m.getMainAttributes();
675 if (global.getValue(new Attributes.Name("Created-By")) == null) {
678 global.put(new Attributes.Name("Created-By"), jdkVersion + " (" +
684 Attributes global = m.getMainAttributes();
687 global.put(Attributes.Name.MAIN_CLASS, mainApp);
692 Attributes global = m.getMainAttributes();
693 if ((global
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A Dmanagement.cpp1609 // Returns a String array of all VM global flag names
1641 // can't be determined, true otherwise. If false is returned, then *global
1643 bool add_global_entry(JNIEnv* env, Handle name, jmmVMGlobal *global, Flag *flag, TRAPS) { argument
1650 global->name = (jstring)JNIHandles::make_local(env, flag_name());
1653 global->value.z = flag->get_bool() ? JNI_TRUE : JNI_FALSE;
1654 global->type = JMM_VMGLOBAL_TYPE_JBOOLEAN;
1656 global->value.j = (jlong)flag->get_intx();
1657 global->type = JMM_VMGLOBAL_TYPE_JLONG;
1659 global->value.j = (jlong)flag->get_uintx();
1660 global
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLogManager.java40 * There is a single global LogManager object that is used to
52 * The global LogManager object can be retrieved using LogManager.getLogManager().
94 * The global logging properties may include:
149 // The global LogManager object
166 // Have we initialized global (root) handlers yet?
197 // since by design the global manager's userContext and
200 // the global manager's default contexts here.
205 // Adding the global Logger. Doing so in the Logger.<clinit>
207 Logger.global.setLogManager(manager);
208 // Make sure the global logge
[all...]
H A DLogger.java202 * GLOBAL_LOGGER_NAME is a name for the global logger.
206 public static final String GLOBAL_LOGGER_NAME = "global";
209 * Return global logger object with the name Logger.GLOBAL_LOGGER_NAME.
211 * @return global logger object
215 return global;
219 * The "global" Logger object is provided as a convenience to developers
232 * The preferred way to get the global logger object is via the call
237 * or <code>Logger.getLogger("global")</code>.
240 public static final Logger global = new Logger(GLOBAL_LOGGER_NAME); field in class:Logger
285 // This constructor is used only to create the global Logge
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXChoicePeer.java786 Point global = XChoicePeer.this.toGlobal(0,0);
802 x = global.x;
803 y = global.y + XChoicePeer.this.height;
961 Point global = e.getLocationOnScreen();
963 global.x -= x;
964 global.y -= y;
965 return global;
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DRhinoScriptEngine.java53 * user defined engine level global variables. These are
96 Scriptable global = ScriptableObject.getTopLevelScope(scope);
97 Scriptable globalProto = global.getPrototype();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DEmergencySoundbank.java674 SF2GlobalRegion global = new SF2GlobalRegion();
675 layer.setGlobalZone(global);
851 SF2GlobalRegion global = new SF2GlobalRegion();
852 layer.setGlobalZone(global);
1878 SF2GlobalRegion global = new SF2GlobalRegion();
1879 layer.setGlobalZone(global);
1956 SF2GlobalRegion global = new SF2GlobalRegion();
1957 layer.setGlobalZone(global);
1996 SF2GlobalRegion global = new SF2GlobalRegion();
1997 layer.setGlobalZone(global);
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDT.cpp755 // GetData() returns a global ref.
776 jobject global = NULL; local
778 global = env->NewGlobalRef(ret);
787 return global;
942 jobject global = NULL; local
944 global = env->NewGlobalRef(retObj);
949 return global;
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s59 .global x; \
68 ! %l0 to %l7 hold local data. g-registers %g0 to %g7 hold global data.
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME207 These names can be #defined to refer to some other global
222 These names can be #defined to refer to some other global
240 These names can be #defined to refer to some other global
246 This name can be #defined to refer to some other global
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_64.s25 # Darwin uses _ prefixed global symbols
H A Dbsd_x86_32.s26 # Darwin uses _ prefixed global symbols
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStylesheet.java91 * Contains global variables and parameters defined in the stylesheet.
450 * Returns true if this stylesheet has global vars or params.
1227 * initialize global variables and global parameters. The current node
1392 public int addVariable(Variable global) { argument
1393 _globals.addElement(global);

Completed in 105 milliseconds

12