HomeSort by relevance Sort by last modified time
    Searched defs:Promote (Results 1 - 3 of 3) sorted by null

  /art/runtime/jdwp/
object_registry.cc 136 Promote(*(it->second));
160 void ObjectRegistry::Promote(ObjectRegistryEntry& entry) {
  /external/clang/test/SemaTemplate/
nested-name-spec-template.cpp 5 template<typename T> struct Promote;
7 template<> struct Promote<short> {
11 template<> struct Promote<int> {
15 template<> struct Promote<float> {
19 Promote<short>::type *ret_intptr(int* ip) { return ip; }
20 Promote<int>::type *ret_intptr2(int* ip) { return ip; }
23 M::Promote<int>::type *ret_intptr3(int* ip) { return ip; }
24 M::template Promote<int>::type *ret_intptr4(int* ip) { return ip; } // expected-warning{{'template' keyword outside of a template}}
25 M::template Promote<int> pi; // expected-warning{{'template' keyword outside of a template}}
28 N::M::Promote<int>::type *ret_intptr5(int* ip) { return ip;
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 82 Promote, // This operation should be executed in a larger type.
302 /// legal (return 'Legal') or we need to promote it to a larger type (return
303 /// 'Promote'), or we need to expand it into multiple registers of smaller
314 /// to promote to. For integer types that are larger than the largest integer
431 getOperationAction(Op, VT) == Promote);
528 assert(Action != Promote && "Can't promote condition code!");
540 /// If the action for this operation is to promote, this method returns the
541 /// ValueType to promote to.
543 assert(getOperationAction(Op, VT) == Promote &
    [all...]

Completed in 204 milliseconds