Searched defs:function (Results 1 - 25 of 38) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkMemoryManager.hpp53 void set_entry_for_function(const llvm::Function* function, argument
55 _entry_map[function] = entry;
57 SharkEntry* get_entry_for_function(const llvm::Function* function) { argument
58 return _entry_map[function];
H A DsharkContext.cpp155 SharkFreeQueueItem(llvm::Function* function, SharkFreeQueueItem *next) argument
156 : _function(function), _next(next) {}
163 llvm::Function* function() const { function in class:SharkFreeQueueItem
171 void SharkContext::push_to_free_queue(Function* function) { argument
172 _free_queue = new SharkFreeQueueItem(function, _free_queue);
180 Function *function = item->function(); local
183 return function;
H A DsharkEntry.hpp49 llvm::Function* function() const { function in class:SharkEntry
60 void set_function(llvm::Function* function) { argument
61 _function = function;
H A DsharkFunction.hpp51 SharkFunction function(env, builder, flow, name);
52 return function.function();
72 llvm::Function* function() const { function in class:SharkFunction
115 SharkContext::current(), name, function(), block_insertion_point());
H A DsharkCompiler.cpp184 Function *function = SharkFunction::build(env, &builder, flow, name); local
191 generate_native_code(entry, function, name);
241 generate_native_code(entry, wrapper->function(), name);
256 Function* function,
261 function->dump();
266 context()->add_function(function);
295 memory_manager()->set_entry_for_function(function, entry);
296 code = (address) execution_engine()->getPointerToFunction(function);
299 entry->set_function(function);
326 entry->context()->push_to_free_queue(entry->function());
255 generate_native_code(SharkEntry* entry, Function* function, const char* name) argument
334 Function *function = context()->pop_from_free_queue(); local
[all...]
H A DsharkFunction.cpp42 // Create the function
49 Function::arg_iterator ai = function()->arg_begin();
90 set_block_insertion_point(&function()->front());
146 _continue_block(function()->CreateBlock("not_zero")) {
179 SharkFunction* function() const { function in class:DeferredZeroCheck
180 return block()->function();
H A DsharkIntrinsics.cpp185 void SharkIntrinsics::do_Math_1to1(Value *function) { argument
191 function, state()->pop()->jdouble_value())));
195 void SharkIntrinsics::do_Math_2to1(Value *function) { argument
205 builder()->CreateCall2(function, x, y)));
H A DsharkNativeWrapper.hpp105 // The LLVM function we are building.
107 llvm::Function* function() const { function in class:SharkNativeWrapper
142 return llvm::BasicBlock::Create(SharkContext::current(), name, function());
H A DsharkStateScanner.hpp38 SharkStateScanner(SharkFunction* function) argument
39 : SharkTargetInvariants(function), _stack(function->stack()) {}
H A DsharkCacheDecache.hpp51 SharkCacherDecacher(SharkFunction* function) argument
52 : SharkStateScanner(function) {}
65 SharkDecacher(SharkFunction* function, int bci) argument
66 : SharkCacherDecacher(function), _bci(bci) {}
202 SharkJavaCallDecacher(SharkFunction* function, int bci, ciMethod* callee) argument
203 : SharkDecacher(function, bci), _callee(callee) {}
240 SharkVMCallDecacher(SharkFunction* function, int bci) argument
241 : SharkDecacher(function, bci) {}
270 SharkTrapDecacher(SharkFunction* function, int bci) argument
271 : SharkDecacher(function, bc
300 SharkCacher(SharkFunction* function) argument
329 SharkJavaCallCacher(SharkFunction* function, ciMethod* callee) argument
350 SharkVMCallCacher(SharkFunction* function) argument
362 SharkFunctionEntryCacher(SharkFunction* function, llvm::Value* method) argument
392 SharkNormalEntryCacher(SharkFunction* function, llvm::Value* method) argument
398 SharkOSREntryCacher(SharkFunction* function, llvm::Value* method, llvm::Value* osr_buf) argument
[all...]
/openjdk7/hotspot/test/compiler/6851282/
H A DTest.java89 public T[] filter(Function<T, Boolean> function) { argument
94 if (function.apply(array[i])) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXSTerm.java57 <T> T apply( XSTermFunction<T> function );
58 <T,P> T apply( XSTermFunctionWithParam<T,P> function, P param ); argument
H A DXSWildcard.java65 <T> T apply(XSWildcardFunction<T> function); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DXPathImpl.java64 public <T> T apply(XSFunction<T> function) { argument
65 return function.xpath(this);
H A DNotationImpl.java60 public Object apply(XSFunction function) { argument
61 return function.notation(this);
H A DIdentityConstraintImpl.java73 public <T> T apply(XSFunction<T> function) { argument
74 return function.identityConstraint(this);
H A DModelGroupDeclImpl.java73 public Object apply( XSTermFunction function ) {
74 return function.modelGroupDecl(this);
77 public <T,P> T apply(XSTermFunctionWithParam<T, P> function, P param) { argument
78 return function.modelGroupDecl(this,param);
81 public Object apply( XSFunction function ) {
82 return function.modelGroupDecl(this);
H A DModelGroupImpl.java100 public Object apply( XSTermFunction function ) {
101 return function.modelGroup(this);
104 public <T,P> T apply(XSTermFunctionWithParam<T, P> function, P param) { argument
105 return function.modelGroup(this,param);
108 public Object apply( XSFunction function ) {
109 return function.modelGroup(this);
H A DWildcardImpl.java108 public Object apply( XSWildcardFunction function ) {
109 return function.any(this);
131 public Object apply( XSWildcardFunction function ) {
132 return function.other(this);
162 public Object apply( XSWildcardFunction function ) {
163 return function.union(this);
173 public Object apply( XSTermFunction function ) {
174 return function.wildcard(this);
177 public <T,P> T apply(XSTermFunctionWithParam<T, P> function, P param) { argument
178 return function
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A DDllUtil.h54 dll(dll), name(name), function(NULL) {}
57 if (!function) {
58 function = (FunctionType)dll->GetProcAddress(name);
60 return function;
67 FunctionType function; member in class:DllUtil::Function
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dgui.js50 * Swing invokeLater - invokes given function in AWT event thread
52 Function.prototype.invokeLater = function() {
57 run: function() {
64 * Swing invokeAndWait - invokes given function in AWT event thread
67 Function.prototype.invokeAndWait = function() {
72 run: function() {
81 function isEventThread() {
94 function fileDialog(curDir, save) {
96 function _fileDialog() {
128 function colorDialo
[all...]
H A Dscriptpad.js70 function main() {
71 function createEditor() {
95 function checkDocChanged() {
113 function setDocListener() {
117 equals: function(o) { return this === o; },
118 toString: function() { return "doc listener"; },
119 changeUpdate: function() { docChanged = true; },
120 insertUpdate: function() { docChanged = true; },
121 removeUpdate: function() { docChanged = true; },
130 function actionNe
[all...]
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_CommonUtils.c31 static void alsaDebugOutput(const char *file, int line, const char *function, int err, const char *fmt, ...) { argument
35 printf("%s:%d function %s: error %d: %s\n", file, line, function, err, snd_strerror(err));
H A DPLATFORM_API_LinuxOS_ALSA_CommonUtils.c31 static void alsaDebugOutput(const char *file, int line, const char *function, int err, const char *fmt, ...) { argument
35 printf("%s:%d function %s: error %d: %s\n", file, line, function, err, snd_strerror(err));
/openjdk7/jdk/src/solaris/native/sun/jdga/
H A Djdgadevice.h51 * The device-independent function Solaris_JDga_LibInit() is called in the
67 * be performed for the function "SolarisJDgaDevOpen", which must
70 * - The function SolarisJDgaDevOpen() will then be called with a
94 * - The function SolarisJDgaDevOpen() must also return a structure
95 * containing function pointers as given in the SolarisJDgaDevFunc
99 * these function pointers may be specified as NULL pointers.
123 * SolarisJDgaDevOpen() function
129 struct _SolarisJDgaDevFuncList* function; /* Device function pointers */ member in struct:__anon1039
165 * numbers and the function pointer
[all...]

Completed in 56 milliseconds

12