Searched refs:bt (Results 1 - 25 of 66) sorted by relevance

123

/openjdk7/langtools/test/tools/javac/generics/
H A DT4695847.java35 static <T> int size(T4695847<T> bt) { argument
36 if (bt==null)
39 return 1+size(bt.next);
41 static <T> int size2(T4695847<T> bt) { argument
42 return (bt==null) ? 0 : 1+size(bt.next);
/openjdk7/jdk/test/java/beans/Introspector/6976577/
H A DTest6976577.java41 Class<?> bt = Accessor.getBeanType();
45 PropertyDescriptor pd = new PropertyDescriptor("boolean", bt);
50 IndexedPropertyDescriptor ipd = new IndexedPropertyDescriptor("indexed", bt);
57 EventSetDescriptor esd = new EventSetDescriptor(bt, "test", lt, "process");
/openjdk7/langtools/test/tools/javac/generics/wildcards/pos/
H A DBoundsCollision.java36 void f(Box<T> bt) { } argument
/openjdk7/hotspot/src/share/vm/opto/
H A Dvectornode.cpp33 int VectorNode::opcode(int sopc, BasicType bt) { argument
36 switch (bt) {
45 assert(bt == T_LONG, "must be");
48 assert(bt == T_FLOAT, "must be");
51 assert(bt == T_DOUBLE, "must be");
54 switch (bt) {
63 assert(bt == T_LONG, "must be");
66 assert(bt == T_FLOAT, "must be");
69 assert(bt == T_DOUBLE, "must be");
72 switch (bt) {
165 implemented(int opc, uint vlen, BasicType bt) argument
248 make(Compile* C, int opc, Node* n1, Node* n2, uint vlen, BasicType bt) argument
303 BasicType bt = opd_t->array_element_basic_type(); local
326 shift_count(Compile* C, Node* shift, Node* cnt, uint vlen, BasicType bt) argument
345 make(Compile* C, Node* s, uint vlen, BasicType bt) argument
381 BasicType bt = n1->vect_type()->element_basic_type(); local
405 make(Compile* C, int opc, Node* ctl, Node* mem, Node* adr, const TypePtr* atyp, uint vlen, BasicType bt) argument
419 make(Compile* C, Node* v, uint position, BasicType bt) argument
[all...]
H A Dparse3.cpp178 BasicType bt = field->layout_type(); local
185 if( bt == T_OBJECT ) {
200 type = Type::get_const_basic_type(bt);
203 Node* ld = make_load(NULL, adr, type, bt, adr_type, is_vol);
206 if (type2size[bt] == 1)
257 BasicType bt = field->layout_type(); local
259 Node* val = type2size[bt] == 1 ? pop() : pop_pair();
261 if (bt == T_DOUBLE) val = dstore_rounding(val);
265 if (bt == T_OBJECT) {
272 store = store_oop_to_object( control(), obj, adr, adr_type, val, field_type, bt);
[all...]
H A Dmatcher.hpp253 static const int vector_width_in_bytes(BasicType bt);
256 static const int max_vector_size(const BasicType bt);
257 static const int min_vector_size(const BasicType bt);
258 static const bool vector_size_supported(const BasicType bt, int size) { argument
259 return (Matcher::max_vector_size(bt) >= size &&
260 Matcher::min_vector_size(bt) <= size);
H A DgraphKit.hpp103 Node* zerocon(BasicType bt) const { return _gvn.zerocon(bt); }
488 Node* make_load(Node* ctl, Node* adr, const Type* t, BasicType bt, argument
491 return make_load(ctl, adr, t, bt, adr->bottom_type()->is_ptr(),
494 Node* make_load(Node* ctl, Node* adr, const Type* t, BasicType bt, const TypePtr* adr_type, bool require_atomic_access = false) { argument
497 return make_load(ctl, adr, t, bt, C->get_alias_index(adr_type),
501 Node* make_load(Node* ctl, Node* adr, const Type* t, BasicType bt, int adr_idx, bool require_atomic_access = false);
505 Node* store_to_memory(Node* ctl, Node* adr, Node* val, BasicType bt, argument
510 return store_to_memory(ctl, adr, val, bt,
516 Node* store_to_memory(Node* ctl, Node* adr, Node* val, BasicType bt,
542 store_oop_to_object(Node* ctl, Node* obj, Node* adr, const TypePtr* adr_type, Node* val, const TypeOopPtr* val_type, BasicType bt) argument
552 store_oop_to_array(Node* ctl, Node* obj, Node* adr, const TypePtr* adr_type, Node* val, const TypeOopPtr* val_type, BasicType bt) argument
[all...]
H A DidealKit.cpp279 const BasicType bt = n->bottom_type()->basic_type(); local
280 const Type* ct = Type::get_const_basic_type(bt);
352 BasicType bt,
361 if (require_atomic_access && bt == T_LONG) {
364 ld = LoadNode::make(_gvn, ctl, mem, adr, adr_type, t, bt);
369 Node* IdealKit::store(Node* ctl, Node* adr, Node *val, BasicType bt, argument
377 if (require_atomic_access && bt == T_LONG) {
380 st = StoreNode::make(_gvn, ctl, mem, adr, adr_type, val, bt);
391 BasicType bt,
349 load(Node* ctl, Node* adr, const Type* t, BasicType bt, int adr_idx, bool require_atomic_access) argument
390 storeCM(Node* ctl, Node* adr, Node *val, Node* oop_store, int oop_adr_idx, BasicType bt, int adr_idx) argument
H A Dmacro.hpp65 const Type* value_type, BasicType bt);
67 Node* value, BasicType bt);
H A Dvectornode.hpp56 static VectorNode* shift_count(Compile* C, Node* shift, Node* cnt, uint vlen, BasicType bt);
57 static VectorNode* make(Compile* C, int opc, Node* n1, Node* n2, uint vlen, BasicType bt);
59 static int opcode(int opc, BasicType bt);
60 static bool implemented(int opc, uint vlen, BasicType bt);
375 Node* adr, const TypePtr* atyp, uint vlen, BasicType bt);
470 static PackNode* make(Compile* C, Node* s, uint vlen, BasicType bt);
555 static Node* make(Compile* C, Node* v, uint position, BasicType bt);
H A DidealKit.hpp219 BasicType bt,
227 BasicType bt,
237 BasicType bt,
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodType.hpp39 BasicType bt = java_lang_Class::primitive_type(klass_oop); local
40 return ciType::make(bt);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DMapPropertyInfoImpl.java63 T bt = nav().getBaseClass(raw, nav().asDecl(Map.class) );
64 assert bt!=null; // Map property is only for Maps
66 if(nav().isParameterizedType(bt)) {
67 keyType = nav().getTypeArgument(bt,0);
68 valueType = nav().getTypeArgument(bt,1);
/openjdk7/jdk/test/java/awt/event/KeyEvent/CorrectTime/
H A DCorrectTime.java45 static Button bt = new Button("press button"); field in class:CorrectTime
59 add(bt);
64 bt.addKeyListener(this);
82 testComponent(bt);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/
H A DMixedExtendedComplexTypeBuilder.java47 XSType bt = ct.getBaseType();
48 if (bt.isComplexType() &&
49 bt.asComplexType().isMixed() &&
H A DMixedComplexTypeBuilder.java46 XSType bt = ct.getBaseType();
47 if(bt ==schemas.getAnyType() && ct.isMixed())
51 if (bt.isComplexType() &&
52 !bt.asComplexType().isMixed() &&
H A DMultiWildcardComplexTypeBuilder.java48 XSType bt = ct.getBaseType();
49 if (bt ==schemas.getAnyType() && ct.getContentType() != null) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/cosnaming/
H A DNamingContextDataStore.java53 * @param bt Type of binding (as object or as context).
56 void Bind(NameComponent n, org.omg.CORBA.Object obj, BindingType bt) argument
H A DTransientNamingContext.java120 * @param bt The type of the binding (i.e., as object or as context).
125 BindingType bt)
132 Binding b = new Binding(name,bt);
124 Bind(NameComponent n, org.omg.CORBA.Object obj, BindingType bt) argument
H A DNamingContextImpl.java551 * @param bt Type of binding (as object or as context).
574 org.omg.CosNaming.BindingType bt)
605 if ( bt.value() == BindingType.ncontext.value() ) {
612 if ( bt.value() == BindingType.nobject.value() ) {
627 impl.Bind(n[0],obj,bt);
638 switch (bt.value()) {
570 doBind(NamingContextDataStore impl, NameComponent[] n, org.omg.CORBA.Object obj, boolean rebind, org.omg.CosNaming.BindingType bt) argument
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImagingLib.java176 ByteLookupTable bt = (ByteLookupTable) table;
177 if (lookupByteRaster(src, dst, bt.getTable()) > 0) {
241 ByteLookupTable bt = (ByteLookupTable) table;
242 if (lookupByteBI(src, dst, bt.getTable()) > 0) {
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodTypeForm.java139 Class<?> bt = rt;
145 bt = int.class;
152 if (epts == bpts && bt == rt) {
155 this.basicType = MethodType.makeImpl(bt, bpts, true);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DMethodGen.java837 BranchTarget bt = (BranchTarget) branchTargets.pop();
838 return bt;
845 BranchTarget bt = new BranchTarget(target, stackDepth);
846 visitedTargets.put(target, bt);
848 return bt;
920 BranchTarget bt = branchTargets.pop();
921 if (bt != null) {
922 ih = bt.target;
923 stackDepth = bt.stackDepth;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DNamingContextImpl.java521 * @param bt Type of binding (as object or as context).
543 org.omg.CosNaming.BindingType bt)
573 if ( bt.value() == BindingType.ncontext.value() ) {
579 if ( bt.value() == BindingType.nobject.value() ) {
591 impl.Bind(n[0],obj,bt);
602 switch (bt.value()) {
843 * @param bt Type of binding (as object or as context).
855 public void Bind(NameComponent n, org.omg.CORBA.Object obj, BindingType bt) argument
866 if( bt.value() == BindingType._nobject ) {
870 value = new InternalBindingValue(bt, or
539 doBind(NamingContextDataStore impl, NameComponent[] n, org.omg.CORBA.Object obj, boolean rebind, org.omg.CosNaming.BindingType bt) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DmethodHandles.cpp429 BasicType bt = char2type(sig->byte_at(0)); local
430 if (is_subword_type(bt)) {
433 assert(bt == T_OBJECT || bt == T_ARRAY, "is_basic_type_signature was false");
444 BasicType bt = ss.type(); local
452 } else if (bt == T_OBJECT || bt == T_ARRAY) {
455 if (is_subword_type(bt))
456 bt = T_INT;
457 buffer.put(type2char(bt));
[all...]

Completed in 5889 milliseconds

123