HomeSort by relevance Sort by last modified time
    Searched refs:type_h (Results 1 - 4 of 4) sorted by null

  /external/clang/test/SemaTemplate/
ms-sizeof-missing-typename.cpp 9 template <typename T> int type_h() { return sizeof((T::type)); } // expected-error {{missing 'typename' prior to dependent type name 'X::type'}} function in namespace:basic
21 type_h<X>() + // expected-note-re {{in instantiation {{.*}} requested here}}
  /art/runtime/verifier/
register_line-inl.h 122 const RegType& type_h = GetRegisterType(verifier, vsrc + 1); local
124 if (!type_l.CheckWidePair(type_h)) {
126 << " type=" << type_l << "/" << type_h; local
128 SetRegisterTypeWide(verifier, vdst, type_l, type_h);
reg_type.h 110 // Check this is the low half, and that type_h is its matching high-half.
111 inline bool CheckWidePair(const RegType& type_h) const {
113 return ((IsImpreciseConstantLo() && type_h.IsPreciseConstantHi()) ||
114 (IsImpreciseConstantLo() && type_h.IsImpreciseConstantHi()) ||
115 (IsPreciseConstantLo() && type_h.IsPreciseConstantHi()) ||
116 (IsPreciseConstantLo() && type_h.IsImpreciseConstantHi()) ||
117 (IsDoubleLo() && type_h.IsDoubleHi()) ||
118 (IsLongLo() && type_h.IsLongHi()));
    [all...]
register_line.cc 184 const RegType& type_h = verifier->GetRegTypeCache()->GetFromId(result_[1]); local
189 DCHECK(type_l.CheckWidePair(type_h)); // Set should never allow this case
190 SetRegisterTypeWide(verifier, vdst, type_l, type_h); // also sets the high

Completed in 224 milliseconds