Searched defs:func (Results 1 - 25 of 51) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/6464451/
H A DBigFinally.java35 static public int func(int i) { method in class:BigFinally
H A DDeepNestedFinally.java35 static public int func(int i) { method in class:DeepNestedFinally
H A DManyExitsInTry.java35 static public int func(int i) { method in class:ManyExitsInTry
/openjdk7/langtools/test/tools/javac/BadOptimization/
H A DDeadCode2.java45 static int[] func() { return (int[])null; } method in class:DeadCode2
52 try { int i = func()[m = 7]; }
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DHasPositionalPredChecker.java63 * @param func The function reference object.
66 public boolean visitFunction(ExpressionOwner owner, Function func) argument
68 if((func instanceof FuncPosition) ||
69 (func instanceof FuncLast))
/openjdk7/jdk/test/sun/management/jmxremote/bootstrap/
H A DTestLogger.java94 public void error(String func, String msg) { argument
97 func,msg);
100 public void trace(String func, String msg) { argument
103 func,msg);
106 public void trace(String func, Throwable t) { argument
109 func,t.toString(),t);
112 public void trace(String func, String msg, Throwable t) { argument
115 func,msg,t);
118 public void debug(String func, String msg) { argument
121 func,ms
124 debug(String func, Throwable t) argument
130 debug(String func, String msg, Throwable t) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.cpp80 void *func = os::dll_lookup(lib_handle, "VerifyClassCodesForMajorVersion"); local
81 OrderAccess::release_store_ptr(&_verify_byte_codes_fn, func);
82 if (func == NULL) {
84 func = os::dll_lookup(lib_handle, "VerifyClassCodes");
85 OrderAccess::release_store_ptr(&_verify_byte_codes_fn, func);
245 verify_byte_codes_fn_new_t func =
247 result = (*func)(env, cls, message, (int)message_len,
250 verify_byte_codes_fn_t func =
252 result = (*func)(env, cls, message, (int)message_len);
/openjdk7/jdk/src/share/back/
H A Dbag.c147 bagEnumerateOver(struct bag *theBag, bagEnumerateFunction func, void *arg) argument
154 if (!(func)((void *)items, arg)) {
H A DdebugLoop.c96 jvmtiStartFunction func; local
106 func = &reader;
107 (void)spawnNewThread(func, NULL, "JDWP Command Reader");
130 CommandHandler func; local
155 func = debugDispatch_getHandler(cmd->cmdSet,cmd->cmd);
156 if (func == NULL) {
172 replyToSender = func(&in, &out);
H A Dtransport.c413 jvmtiStartFunction func; local
490 func = &acceptThread;
491 error = spawnNewThread(func, (void*)info, threadName);
539 func = &attachThread;
540 err = spawnNewThread(func, (void*)trans, threadName);
/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.hpp47 AttachOperationFunction func; member in struct:AttachOperationFunctionInfo
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_FuncArray.c865 AnyFunc* func = vis_func_pair_array[i].func_c; local
866 j = HASH_FUNC(func);
870 hash_table[j] = func;
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.c65 FlushFunc *func)
85 gcinfo->Flush = func;
63 AccelGlyphCache_Init(jint width, jint height, jint cellWidth, jint cellHeight, FlushFunc *func) argument
H A DDrawGlyphList.c173 NativePrimitive *pPrim, DrawGlyphListFunc *func) {
220 (*func)(&rasInfo,
240 DrawGlyphListLCDFunc *func) {
288 (*func)(&rasInfo,
170 drawGlyphList(JNIEnv *env, jobject self, jobject sg2d, jobject sData, GlyphBlitVector *gbv, jint pixel, jint color, NativePrimitive *pPrim, DrawGlyphListFunc *func) argument
235 drawGlyphListLCD(JNIEnv *env, jobject self, jobject sg2d, jobject sData, GlyphBlitVector *gbv, jint pixel, jint color, jboolean rgbOrder, int contrast, NativePrimitive *pPrim, DrawGlyphListLCDFunc *func) argument
/openjdk7/jdk/src/share/classes/sun/management/snmp/util/
H A DMibLogger.java108 public void config(String func, String msg) { argument
111 func,msg);
114 public void config(String func, Throwable t) { argument
117 func,t.toString(),t);
120 public void config(String func, String msg, Throwable t) { argument
123 func,msg,t);
126 public void error(String func, String msg) { argument
129 func,msg);
132 public void info(String func, String msg) { argument
135 func,ms
138 info(String func, Throwable t) argument
144 info(String func, String msg, Throwable t) argument
150 warning(String func, String msg) argument
156 warning(String func, Throwable t) argument
162 warning(String func, String msg, Throwable t) argument
168 trace(String func, String msg) argument
174 trace(String func, Throwable t) argument
180 trace(String func, String msg, Throwable t) argument
186 debug(String func, String msg) argument
192 debug(String func, Throwable t) argument
198 debug(String func, String msg, Throwable t) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathVisitor.java146 * @param func The function reference object.
149 public boolean visitFunction(ExpressionOwner owner, Function func) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DClassLogger.java93 public final void debug(String func, String msg) { argument
94 finest(func,msg);
97 public final void debug(String func, Throwable t) { argument
98 finest(func,t);
101 public final void debug(String func, String msg, Throwable t) { argument
102 finest(func,msg,t);
105 public final void trace(String func, String msg) { argument
106 finer(func,msg);
109 public final void trace(String func, Throwable t) { argument
110 finer(func,
113 trace(String func, String msg, Throwable t) argument
117 error(String func, String msg) argument
121 error(String func, Throwable t) argument
125 error(String func, String msg, Throwable t) argument
129 finest(String func, String msg) argument
134 finest(String func, Throwable t) argument
140 finest(String func, String msg, Throwable t) argument
146 finer(String func, String msg) argument
151 finer(String func, Throwable t) argument
157 finer(String func, String msg, Throwable t) argument
162 fine(String func, String msg) argument
167 fine(String func, Throwable t) argument
173 fine(String func, String msg, Throwable t) argument
179 config(String func, String msg) argument
184 config(String func, Throwable t) argument
190 config(String func, String msg, Throwable t) argument
196 info(String func, String msg) argument
201 info(String func, Throwable t) argument
207 info(String func, String msg, Throwable t) argument
213 warning(String func, String msg) argument
218 warning(String func, Throwable t) argument
224 warning(String func, String msg, Throwable t) argument
230 severe(String func, String msg) argument
235 severe(String func, Throwable t) argument
241 severe(String func, String msg, Throwable t) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/oql/
H A DOQLEngine.java251 public Object call(String func, Object[] args) throws Exception { argument
252 return invokeMethod.invoke(engine, new Object[] { func, args });
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DFunctionTable.java363 * @param func A Implementation of an XPath Function object.
366 public int installFunction(String name, Class func) argument
380 m_functions_customer[funcIndex - NUM_BUILT_IN_FUNCS] = func;
386 m_functions_customer[funcIndex-NUM_BUILT_IN_FUNCS] = func;
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJSAdapter.java93 Function func = getAdapteeFunction(GET_PROP);
94 if (func != null) {
95 return call(func, new Object[] { name });
103 Function func = getAdapteeFunction(GET_PROP);
104 if (func != null) {
105 return call(func, new Object[] { new Integer(index) });
113 Function func = getAdapteeFunction(HAS_PROP);
114 if (func != null) {
115 Object res = call(func, new Object[] { name });
124 Function func
316 call(Function func, Object[] args) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/resources/
H A Dhat.js61 function filterEnumeration(e, func, wrap) {
73 if (func(tmp, index, e)) {
1120 var func = code;
1121 if (typeof(func) != 'function') {
1122 func = new Function("it", "index", "array", "return " + code);
1129 if (func(it, index, array)) {
1137 if (func(it, index, array)) {
1184 var func = code;
1185 if (typeof(func) != 'function') {
1186 func
1397 if (code == undefined) { function
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Djava.cpp430 void register_on_exit_function(void (*func)(void)) { argument
431 ExitProc *entry = new ExitProc(func);
698 jdk_version_info_fn_t func = CAST_TO_FN_PTR(jdk_version_info_fn_t, local
701 if (func == NULL) {
705 (*func)(&info, sizeof(info));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DCommandProcessor.java1496 public void registerCommand(String cmd, String usage, final String func) { argument
1504 jsengine.call(func, args);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.hpp248 static void set_sched_getcpu(sched_getcpu_func_t func) { _sched_getcpu = func; } argument
249 static void set_numa_node_to_cpus(numa_node_to_cpus_func_t func) { _numa_node_to_cpus = func; } argument
250 static void set_numa_max_node(numa_max_node_func_t func) { _numa_max_node = func; } argument
251 static void set_numa_available(numa_available_func_t func) { _numa_available = func; } argument
252 static void set_numa_tonode_memory(numa_tonode_memory_func_t func) { _numa_tonode_memory = func; } argument
253 set_numa_interleave_memory(numa_interleave_memory_func_t func) argument
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.hpp233 static void set_sched_getcpu(sched_getcpu_func_t func) { _sched_getcpu = func; } argument
234 static void set_numa_node_to_cpus(numa_node_to_cpus_func_t func) { _numa_node_to_cpus = func; } argument
235 static void set_numa_max_node(numa_max_node_func_t func) { _numa_max_node = func; } argument
236 static void set_numa_available(numa_available_func_t func) { _numa_available = func; } argument
237 static void set_numa_tonode_memory(numa_tonode_memory_func_t func) { _numa_tonode_memory = func; } argument
238 set_numa_interleave_memory(numa_interleave_memory_func_t func) argument
[all...]

Completed in 159 milliseconds

123