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

/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp37 class MethodMatcher : public CHeapObj<mtCompiler> { class in inherits:CHeapObj
54 MethodMatcher* _next;
63 MethodMatcher(Symbol* class_name, Mode class_mode,
65 Symbol* signature, MethodMatcher* next);
66 MethodMatcher(Symbol* class_name, Symbol* method_name, MethodMatcher* next);
69 MethodMatcher* find(methodHandle method) {
72 for (MethodMatcher* current = this; current != NULL; current = current->_next) {
86 MethodMatcher* next() const { return _next; }
118 MethodMatcher function in class:MethodMatcher
128 MethodMatcher::MethodMatcher(Symbol* class_name, Mode class_mode, function in class:MethodMatcher
[all...]

Completed in 751 milliseconds