Searched defs:_method (Results 1 - 25 of 50) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DSerializerFactoryImpl.java43 private String _method; field in class:SerializerFactoryImpl
48 _method = method;
49 if ( ! _method.equals( Method.XML ) &&
50 ! _method.equals( Method.HTML ) &&
51 ! _method.equals( Method.XHTML ) &&
52 ! _method.equals( Method.TEXT ) ) {
95 if ( _method.equals( Method.XML ) ) {
97 } else if ( _method.equals( Method.HTML ) ) {
99 } else if ( _method.equals( Method.XHTML ) ) {
101 } else if ( _method
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciCallProfile.hpp46 ciMethod* _method[MorphismLimit + 1]; // receivers methods member in class:ciCallProfile
54 _method[0] = NULL;
76 return _method[i];
H A DbcEscapeAnalyzer.hpp50 ciMethod* _method; member in class:BCEscapeAnalyzer
113 ciMethod* method() const { return _method; }
H A DciMethodBlocks.hpp39 ciMethod *_method; member in class:ciMethodBlocks
75 ciMethod *_method; member in class:ciBlock
126 ciMethod *method() const { return _method; }
H A DciStreams.hpp56 ciMethod* _method; // the method member in class:ciBytecodeStream
98 ciMethod* method() const { return _method; }
101 _method = m;
316 ciMethod* _method; member in class:ciExceptionHandlerStream
328 _method = method;
331 _method->code();
334 _end = _method->_handler_count;
343 _method = method;
346 _method->code();
349 _end = _method
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DOutputSettings.java38 private String _method = null; field in class:OutputSettings
H A DTransformerImpl.java126 private String _method = null; field in class:TransformerImpl
381 _method = (String) _properties.get(OutputKeys.METHOD);
388 if (_method != null) {
389 _tohFactory.setOutputMethod(_method);
962 translet._method = value;
1136 if (_translet._method != null)
1137 base.setProperty(OutputKeys.METHOD, _translet._method);
1411 _method = null;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DAttributeSet.java55 private String _method; field in class:AttributeSet
70 return _method;
145 _method = AttributeSetPrefix + getXSLTC().nextAttributeSetSerial();
160 methodGen = new AttributeSetMethodGenerator(_method, classGen);
H A DOutput.java56 private String _method; field in class:Output
80 Util.println("Output " + _method);
101 return _method;
165 _method = getAttribute("method");
166 if (_method.equals(Constants.EMPTYSTRING)) {
167 _method = null;
169 if (_method != null) {
170 _method = _method.toLowerCase();
171 if ((_method
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DscopeDesc.hpp40 methodOop _method; member in class:SimpleScopeDesc
49 _method = methodOop(buffer.read_oop());
53 methodOop method() { return _method; }
71 methodHandle method() const { return _method; }
97 methodHandle _method; member in class:ScopeDesc
/openjdk7/hotspot/src/share/vm/runtime/
H A Drframe.hpp82 methodHandle _method; // top method member in class:CompiledRFrame
91 methodHandle top_method() const { return _method; }
101 methodHandle _method; member in class:InterpretedRFrame
110 methodHandle top_method() const { return _method; }
H A Dvframe_hp.hpp95 methodOop _method; // must be GC'd member in class:jvmtiDeferredLocalVariableSet
102 methodOop method() const { return _method; }
H A Drelocator.hpp77 methodHandle _method; member in class:Relocator
97 methodHandle method() const { return _method; }
98 void set_method(methodHandle method) { _method = method; }
H A DvframeArray.hpp57 methodOop _method; // the method for this vframe member in class:vframeArrayElement
71 methodOop method(void) const { return _method; }
H A Dvframe.hpp289 methodOop _method; member in class:vframeStreamCommon
314 methodOop method() const { return _method; }
417 _method = methodOop(buffer.read_oop());
420 assert(_method->is_method(), "checking type of decoded method");
428 _method = nm()->method();
521 _method = method;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeStream.java32 private Method _method; field in class:BytecodeStream
45 _method = method;
52 Assert.that(0 <= beg_bci && beg_bci <= _method.getCodeSize(), "illegal beg_bci");
53 Assert.that(0 <= end_bci && end_bci <= _method.getCodeSize(), "illegal end_bci");
62 setInterval(beg_bci, (int) _method.getCodeSize());
75 int rawCode = Bytecodes.codeAt(_method, _bci);
81 Assert.that(false, "Failure occurred at bci " + _bci + " in method " + _method.externalNameAndSignature());
87 if (l == 0) l = Bytecodes.lengthAt(_method, _bci);
96 code = _method.getBytecodeOrBPAt(_bci + 1);
108 public Method method() { return _method; }
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeStream.hpp66 methodHandle _method; // read from method directly member in class:BaseBytecodeStream
79 BaseBytecodeStream(methodHandle method) : _method(method) {
80 set_interval(0, _method->code_size());
96 set_interval(beg_bci, _method->code_size());
102 methodHandle method() const { return _method; }
114 Bytecode bytecode() const { return Bytecode(_method(), bcp()); }
198 raw_code = Bytecodes::code_at(_method(), bcp);
206 if (l == 0) l = Bytecodes::length_at(_method(), bcp);
H A DoopMapCache.hpp86 methodOop _method; // the method for which the mask is valid member in class:InterpreterOopMap
103 methodOop method() const { return _method; }
104 void set_method(methodOop v) { _method = v; }
128 bool match(methodHandle method, int bci) { return _method == method() && _bci == bci; }
H A Dbytecode.hpp194 const methodHandle _method; // method containing the bytecode member in class:Bytecode_member_ref
196 Bytecode_member_ref(methodHandle method, int bci) : Bytecode(method(), method()->bcp_from(bci)), _method(method) {}
198 methodHandle method() const { return _method; }
199 constantPoolOop constants() const { return _method->constants(); }
200 constantPoolCacheOop cpcache() const { return _method->constants()->cache(); }
328 const methodHandle _method; member in class:Bytecode_loadconstant
333 Bytecode_loadconstant(methodHandle method, int bci): Bytecode(method(), method->bcp_from(bci)), _method(method) { verify(); }
336 assert(_method.not_null(), "must supply method");
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkState.hpp40 _method(NULL),
46 _method(state->_method),
54 llvm::Value* _method; member in class:SharkState
65 return &_method;
68 return _method;
72 _method = method;
H A DsharkCacheDecache.hpp363 : SharkCacher(function), _method(method) {}
366 llvm::Value* _method; member in class:SharkFunctionEntryCacher
370 return _method;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/output/
H A DTransletOutputHandlerFactory.java63 private String _method = null; field in class:TransletOutputHandlerFactory
98 _method = method;
158 if (_method == null)
162 else if (_method.equalsIgnoreCase("xml"))
168 else if (_method.equalsIgnoreCase("html"))
174 else if (_method.equalsIgnoreCase("text"))
211 if (_method == null)
213 _method = "xml"; // default case
216 if (_method.equalsIgnoreCase("xml"))
233 else if (_method
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.hpp165 static int method_offset_in_bytes() { return offset_of(vtableEntry, _method); }
166 methodOop method() const { return _method; }
169 methodOop _method; member in class:VALUE_OBJ_CLASS_SPEC
170 void set(methodOop method) { assert(method != NULL, "use clear"); _method = method; }
171 void clear() { _method = NULL; }
225 methodOop _method; member in class:VALUE_OBJ_CLASS_SPEC
228 methodOop method() const { return _method; }
230 void clear() { _method = NULL; }
236 static int method_offset_in_bytes() { return offset_of(itableMethodEntry, _method); }
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.hpp172 ciMethod* _method; member in class:MethodLiveness
173 ciMethod* method() const { return _method; }
/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.hpp45 ciMethod* _method; // The method being called. member in class:CallGenerator
48 CallGenerator(ciMethod* method) : _method(method) {}
52 ciMethod* method() const { return _method; }

Completed in 173 milliseconds

12