Home
last modified time | relevance | path

Searched refs:rep_ (Results 1 – 9 of 9) sorted by relevance

/external/sfntly/cpp/src/test/tinyxml/
Dtinystr.h66 TiXmlString () : rep_(&nullrep_) in TiXmlString()
71 TiXmlString ( const TiXmlString & copy) : rep_(0) in TiXmlString()
78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0) in TiXmlString()
85 TIXML_EXPLICIT TiXmlString ( const char * str, size_type len) : rep_(0) in TiXmlString()
128 const char * c_str () const { return rep_->str; } in c_str()
131 const char * data () const { return rep_->str; } in data()
134 size_type length () const { return rep_->size; } in length()
137 size_type size () const { return rep_->size; } in size()
140 bool empty () const { return rep_->size == 0; } in empty()
143 size_type capacity () const { return rep_->capacity; } in capacity()
[all …]
/external/tinyxml/
Dtinystr.h63 TiXmlString () : rep_(&nullrep_) in TiXmlString()
127 const char * c_str () const { return rep_->str; } in c_str()
130 const char * data () const { return rep_->str; } in data()
133 size_type length () const { return rep_->size; } in length()
136 size_type size () const { return rep_->size; } in size()
139 bool empty () const { return rep_->size == 0; } in empty()
142 size_type capacity () const { return rep_->capacity; } in capacity()
149 return rep_->str[ index ]; in at()
156 return rep_->str[ index ];
198 Rep* r = rep_; in swap()
[all …]
/external/protobuf/src/google/protobuf/
Drepeated_field.cc51 return &rep_->elements[current_size_]; in InternalExtend()
53 Rep* old_rep = rep_; in InternalExtend()
62 rep_ = reinterpret_cast<Rep*>( in InternalExtend()
65 rep_ = reinterpret_cast<Rep*>( in InternalExtend()
71 memcpy(rep_->elements, old_rep->elements, in InternalExtend()
72 old_rep->allocated_size * sizeof(rep_->elements[0])); in InternalExtend()
73 rep_->allocated_size = old_rep->allocated_size; in InternalExtend()
75 rep_->allocated_size = 0; in InternalExtend()
80 return &rep_->elements[current_size_]; in InternalExtend()
90 if (rep_ == NULL) return; in CloseGap()
[all …]
Drepeated_field.h256 Rep* rep_; variable
273 return (rep_ == NULL) ? NULL : rep_->arena; in GetArenaNoVirtual()
529 Rep* rep_;
980 rep_(NULL) {
987 rep_(NULL) {
991 rep_ = reinterpret_cast<Rep*>(
993 rep_->arena = arena;
1001 rep_(NULL) {
1010 rep_(NULL) {
1028 InternalDeallocate(rep_, total_size_);
[all …]
/external/ImageMagick/Magick++/lib/Magick++/
DColor.h149 Color(PixelInfo *rep_,PixelType pixelType_);
156 void pixel(PixelInfo *rep_,PixelType pixelType_);
232 ColorCMYK(PixelInfo *rep_,PixelType pixelType_);
266 ColorGray(PixelInfo *rep_,PixelType pixelType_);
308 ColorHSL(PixelInfo *rep_,PixelType pixelType_);
342 ColorMono(PixelInfo* rep_,PixelType pixelType_);
387 ColorRGB(PixelInfo *rep_,PixelType pixelType_);
431 ColorYUV(PixelInfo *rep_,PixelType pixelType_);
/external/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_report.cc145 rep_ = new(mem) ReportDesc; in ScopedReport()
146 rep_->typ = typ; in ScopedReport()
154 DestroyAndFree(rep_); in ~ScopedReport()
158 ReportStack **rs = rep_->stacks.PushBack(); in AddStack()
167 rep_->mops.PushBack(mop); in AddMemoryAccess()
185 rep_->unique_tids.PushBack(unique_tid); in AddUniqueTid()
189 for (uptr i = 0; i < rep_->threads.Size(); i++) { in AddThread()
190 if ((u32)rep_->threads[i]->id == tctx->tid) in AddThread()
195 rep_->threads.PushBack(rt); in AddThread()
259 for (uptr i = 0; i < rep_->mutexes.Size(); i++) { in AddMutex()
[all …]
Dtsan_rtl.h576 ReportDesc *rep_;
/external/ImageMagick/Magick++/lib/
DColor.cpp387 Magick::Color::Color(PixelInfo* rep_,PixelType pixelType_) in Color() argument
388 : _pixel(rep_), in Color()
395 void Magick::Color::pixel(PixelInfo *rep_,PixelType pixelType_) in pixel() argument
400 _pixel=rep_; in pixel()
528 Magick::ColorCMYK::ColorCMYK(PixelInfo *rep_,PixelType pixelType_) in ColorCMYK() argument
529 : Color(rep_,pixelType_) in ColorCMYK()
572 Magick::ColorGray::ColorGray(PixelInfo *rep_,PixelType pixelType_) in ColorGray() argument
573 : Color(rep_,pixelType_) in ColorGray()
762 Magick::ColorMono::ColorMono(PixelInfo *rep_,PixelType pixelType_) in ColorMono() argument
763 : Color(rep_,pixelType_) in ColorMono()
[all …]
/external/v8/src/compiler/
Dcode-assembler.cc710 explicit Impl(MachineRepresentation rep) : value_(nullptr), rep_(rep) {} in Impl()
712 MachineRepresentation rep_; member in v8::internal::compiler::CodeAssemblerVariable::Impl
739 MachineRepresentation CodeAssemblerVariable::rep() const { return impl_->rep_; } in rep()
842 var.first->rep_, static_cast<int>(merge_count_), &(i->second[0])); in Bind()