/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/ |
H A D | SerializerFactoryImpl.java | 43 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 D | ciCallProfile.hpp | 46 ciMethod* _method[MorphismLimit + 1]; // receivers methods member in class:ciCallProfile 54 _method[0] = NULL; 76 return _method[i];
|
H A D | bcEscapeAnalyzer.hpp | 50 ciMethod* _method; member in class:BCEscapeAnalyzer 113 ciMethod* method() const { return _method; }
|
H A D | ciMethodBlocks.hpp | 39 ciMethod *_method; member in class:ciMethodBlocks 75 ciMethod *_method; member in class:ciBlock 126 ciMethod *method() const { return _method; }
|
H A D | ciStreams.hpp | 56 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 D | OutputSettings.java | 38 private String _method = null; field in class:OutputSettings
|
H A D | TransformerImpl.java | 126 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 D | AttributeSet.java | 55 private String _method; field in class:AttributeSet 70 return _method; 145 _method = AttributeSetPrefix + getXSLTC().nextAttributeSetSerial(); 160 methodGen = new AttributeSetMethodGenerator(_method, classGen);
|
H A D | Output.java | 56 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 D | scopeDesc.hpp | 40 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 D | rframe.hpp | 82 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 D | vframe_hp.hpp | 95 methodOop _method; // must be GC'd member in class:jvmtiDeferredLocalVariableSet 102 methodOop method() const { return _method; }
|
H A D | relocator.hpp | 77 methodHandle _method; member in class:Relocator 97 methodHandle method() const { return _method; } 98 void set_method(methodHandle method) { _method = method; }
|
H A D | vframeArray.hpp | 57 methodOop _method; // the method for this vframe member in class:vframeArrayElement 71 methodOop method(void) const { return _method; }
|
H A D | vframe.hpp | 289 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 D | BytecodeStream.java | 32 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 D | bytecodeStream.hpp | 66 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 D | oopMapCache.hpp | 86 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 D | bytecode.hpp | 194 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 D | sharkState.hpp | 40 _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 D | sharkCacheDecache.hpp | 363 : 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 D | TransletOutputHandlerFactory.java | 63 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 D | klassVtable.hpp | 165 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 D | methodLiveness.hpp | 172 ciMethod* _method; member in class:MethodLiveness 173 ciMethod* method() const { return _method; }
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | callGenerator.hpp | 45 ciMethod* _method; // The method being called. member in class:CallGenerator 48 CallGenerator(ciMethod* method) : _method(method) {} 52 ciMethod* method() const { return _method; }
|