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

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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++/libcxx/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/chromium_org/third_party/leveldatabase/port/
port_chromium.h 67 typedef base::subtle::AtomicWord Rep;
68 Rep rep_;
71 explicit AtomicPointer(void* p) : rep_(reinterpret_cast<Rep>(p)) {}
76 ::base::subtle::Release_Store(&rep_, reinterpret_cast<Rep>(v));
82 ::base::subtle::NoBarrier_Store(&rep_, reinterpret_cast<Rep>(v));
  /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/chromium_org/third_party/leveldatabase/src/table/
table.cc 20 struct Table::Rep {
21 ~Rep() {
70 Rep* rep = new Table::Rep; local
71 rep->options = options;
72 rep->file = file;
73 rep->metaindex_handle = footer.metaindex_handle();
74 rep->index_block = index_block;
75 rep->cache_id = (options.block_cache ? options.block_cache->NewId() : 0)
    [all...]
table_builder.cc 20 struct TableBuilder::Rep {
47 Rep(const Options& opt, WritableFile* f)
64 : rep_(new Rep(options, file)) {
93 Rep* r = rep_;
124 Rep* r = rep_;
145 Rep* r = rep_;
178 Rep* r = rep_;
200 Rep* r = rep_;
257 Rep* r = rep_;
  /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 235 llvm::PointerIntPair<const Expr *, 1, bool> Rep;
237 WeakUseTy(const Expr *Use, bool IsRead) : Rep(Use, IsRead) {}
239 const Expr *getUseExpr() const { return Rep.getPointer(); }
240 bool isUnsafe() const { return Rep.getInt(); }
241 void markSafe() { Rep.setInt(false); }
244 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;
    [all...]

Completed in 1047 milliseconds