Home
last modified time | relevance | path

Searched refs:Repr (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
Dunicodetext.h328 class Repr { // A byte-string.
335 Repr() : data_(NULL), size_(0), capacity_(0), ours_(true) {} in Repr() function
336 ~Repr() { if (ours_) delete[] data_; } in ~Repr()
350 Repr& operator=(const Repr&);
351 Repr(const Repr& other);
354 Repr repr_;
Dunicodetext.cc108 void UnicodeText::Repr::reserve(int new_capacity) { in reserve()
126 void UnicodeText::Repr::resize(int new_size) { in resize()
140 void UnicodeText::Repr::clear() { in clear()
147 void UnicodeText::Repr::Copy(const char* data, int size) { in Copy()
152 void UnicodeText::Repr::TakeOwnershipOf(char* data, int size, int capacity) { in TakeOwnershipOf()
161 void UnicodeText::Repr::PointTo(const char* data, int size) { in PointTo()
169 void UnicodeText::Repr::append(const char* bytes, int byte_length) { in append()
175 string UnicodeText::Repr::DebugString() const { in DebugString()
/external/llvm/utils/TableGen/
DFastISelEmitter.cpp78 char Repr; member in __anonf6ca9a5c0311::OperandsSignature::OpKind
81 OpKind() : Repr(OK_Invalid) {} in OpKind()
83 bool operator<(OpKind RHS) const { return Repr < RHS.Repr; } in operator <()
84 bool operator==(OpKind RHS) const { return Repr == RHS.Repr; } in operator ==()
86 static OpKind getReg() { OpKind K; K.Repr = OK_Reg; return K; } in getReg()
87 static OpKind getFP() { OpKind K; K.Repr = OK_FP; return K; } in getFP()
91 OpKind K; K.Repr = OK_Imm+V; return K; in getImm()
94 bool isReg() const { return Repr == OK_Reg; } in isReg()
95 bool isFP() const { return Repr == OK_FP; } in isFP()
96 bool isImm() const { return Repr >= OK_Imm; } in isImm()
[all …]