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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIProperty.java141 BIConversion conv = getConv();
142 if(conv==null)
145 return Collections.<BIDeclaration>singleton(conv);
150 if(baseType!=null && baseType.conv!=null)
151 baseType.conv.setParent(parent);
308 NameConverter conv = getBuilder().getNameConverter();
310 name = conv.toConstantName(use.getDecl().getName());
312 name = conv.toPropertyName(use.getDecl().getName());
732 return baseType.conv;
746 BIConversion conv; field in class:BIProperty.BaseTypeBean
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp205 Convert* conv = x->value()->as_Convert(); local
206 if (conv) {
209 switch (conv->op()) {
210 case Bytecodes::_i2b: if (type == T_BYTE) value = conv->value(); break;
211 case Bytecodes::_i2s: if (type == T_SHORT || type == T_BYTE) value = conv->value(); break;
212 case Bytecodes::_i2c: if (type == T_CHAR || type == T_BYTE) value = conv->value(); break;
215 if (value != NULL && in_current_block(conv)) {
256 Convert* conv = x->value()->as_Convert(); local
257 if (conv) {
260 switch (conv
517 Convert* conv = value->as_Convert(); local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.cpp263 Node *conv = lshift->in(1); local
264 if( conv->Opcode() != Op_ConvF2I ) { return false; }
281 convf2i = (ConvF2INode*)conv;
H A DloopTransform.cpp2482 Node* conv = NULL; local
2493 conv = value;
2507 } else if (n->Opcode() == Op_ConvI2L && conv == NULL) {
2510 conv = n;
2566 if (conv) ok.set(conv->_idx);

Completed in 320 milliseconds