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

  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/
hours.pass.cpp 21 typedef D::rep Rep;
23 static_assert(std::is_signed<Rep>::value, "");
24 static_assert(std::is_integral<Rep>::value, "");
25 static_assert(std::numeric_limits<Rep>::digits >= 22, "");
microseconds.pass.cpp 21 typedef D::rep Rep;
23 static_assert(std::is_signed<Rep>::value, "");
24 static_assert(std::is_integral<Rep>::value, "");
25 static_assert(std::numeric_limits<Rep>::digits >= 54, "");
milliseconds.pass.cpp 21 typedef D::rep Rep;
23 static_assert(std::is_signed<Rep>::value, "");
24 static_assert(std::is_integral<Rep>::value, "");
25 static_assert(std::numeric_limits<Rep>::digits >= 44, "");
minutes.pass.cpp 21 typedef D::rep Rep;
23 static_assert(std::is_signed<Rep>::value, "");
24 static_assert(std::is_integral<Rep>::value, "");
25 static_assert(std::numeric_limits<Rep>::digits >= 28, "");
nanoseconds.pass.cpp 21 typedef D::rep Rep;
23 static_assert(std::is_signed<Rep>::value, "");
24 static_assert(std::is_integral<Rep>::value, "");
25 static_assert(std::numeric_limits<Rep>::digits >= 63, "");
seconds.pass.cpp 21 typedef D::rep Rep;
23 static_assert(std::is_signed<Rep>::value, "");
24 static_assert(std::is_integral<Rep>::value, "");
25 static_assert(std::numeric_limits<Rep>::digits >= 34, "");
rep.h 4 class Rep
8 _LIBCPP_CONSTEXPR Rep() : data_(-1) {}
9 explicit _LIBCPP_CONSTEXPR Rep(int i) : data_(i) {}
12 bool _LIBCPP_CONSTEXPR operator==(const Rep& r) const {return data_ == r.data_;}
14 Rep& operator*=(Rep x) {data_ *= x.data_; return *this;}
15 Rep& operator/=(Rep x) {data_ /= x.data_; return *this;}
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.duration/time.duration.special/
max.pass.cpp 20 #include "../../rep.h"
26 typedef typename D::rep Rep;
27 Rep max_rep = std::chrono::duration_values<Rep>::max();
32 typedef typename D::rep Rep;
33 constexpr Rep max_rep = std::chrono::duration_values<Rep>::max();
42 test<std::chrono::duration<Rep> >();
    [all...]
min.pass.cpp 20 #include "../../rep.h"
26 typedef typename D::rep Rep;
27 Rep min_rep = std::chrono::duration_values<Rep>::min();
32 typedef typename D::rep Rep;
33 constexpr Rep min_rep = std::chrono::duration_values<Rep>::min();
42 test<std::chrono::duration<Rep> >();
    [all...]
zero.pass.cpp 19 #include "../../rep.h"
25 typedef typename D::rep Rep;
26 Rep zero_rep = std::chrono::duration_values<Rep>::zero();
31 typedef typename D::rep Rep;
32 constexpr Rep zero_rep = std::chrono::duration_values<Rep>::zero();
41 test<std::chrono::duration<Rep> >();
    [all...]
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 46 Representation Rep;
65 if (!Rep.empty() && Rep.back() == Val)
68 assert((Rep.empty() || Rep.back().first < Val.first) &&
70 Rep.push_back(Val);
74 iterator I = std::lower_bound(Rep.begin(), Rep.end(), Val, Compare());
75 if (I != Rep.end() && I->first == Val.first) {
80 Rep.insert(I, Val)
    [all...]
  /external/llvm/lib/IR/
AutoUpgrade.cpp 176 Value *Rep;
180 Rep = Builder.CreateICmpEQ(CI->getArgOperand(0), CI->getArgOperand(1),
183 Rep = Builder.CreateSExt(Rep, CI->getType(), "");
186 Rep = Builder.CreateICmpSGT(CI->getArgOperand(0), CI->getArgOperand(1),
189 Rep = Builder.CreateSExt(Rep, CI->getType(), "");
258 Rep = Builder.CreateCall3(VPCOM, CI->getArgOperand(0),
293 Rep = Builder.CreateShuffleVector(Op0, Op0, ConstantVector::get(Idxs));
299 CI->replaceAllUsesWith(Rep);
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 11 template <typename U> struct Rep {
13 Rep(U count) : count_(count) {}
15 friend Num operator*(const Num &a, const Rep &n) {
54 Num<int>::Rep<char> n = (char) 10;
  /external/clang/include/clang/Sema/
ScopeInfo.h 230 llvm::PointerIntPair<const Expr *, 1, bool> Rep;
232 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {}
234 const Expr *getUseExpr() const { return Rep.getPointer(); }
235 bool isUnsafe() const { return Rep.getInt(); }
236 void markSafe() { Rep.setInt(false); }
239 return Rep == Other.Rep;
  /external/llvm/include/llvm/ADT/
DenseMap.h 785 // First stash the large side's rep and move the small side across.
876 // Now make this map use the large rep, and move all the entries back
977 LargeRep Rep = {
980 return Rep;

Completed in 562 milliseconds