Home
last modified time | relevance | path

Searched refs:p_ (Results 1 - 25 of 37) sorted by relevance

12

/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
H A Drefcount.h179 Ptr() : p_(NULL) { in Ptr()
184 Ptr(T* pT) : p_(NULL) { in Ptr()
188 Ptr(const Ptr<T>& p) : p_(NULL) { in Ptr()
197 if (p_ == pT) { in operator =()
198 return p_; in operator =()
208 p_ = pT; in operator =()
209 return p_; in operator =()
213 if (p_ == p.p_) { in operator =()
214 return p_; in operator =()
272 mutable T* p_; global() member in sfntly::Ptr
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_auto_ptr.h47 T *p_; member in AutoPtr
53 AutoPtr () : p_ (0) { } in AutoPtr()
59 explicit AutoPtr (T *p) : p_( p ) { } in AutoPtr()
72 T *Get () const { return p_; } in Get()
94 T *operator-> () const { return p_; } in operator ->()
99 T &operator* () const { return *p_; } in operator *()
105 T* temp = x.p_; in Swap()
106 x.p_ = y.p_; in Swap()
107 y.p_ in Swap()
[all...]
/third_party/protobuf/src/google/protobuf/util/internal/
H A Djson_stream_parser.cc146 p_(), in JsonStreamParser()
214 p_ = json_ = *scratch; in FinishParse()
216 p_ = json_ = leftover_; in FinishParse()
228 if (!p_.empty()) { in FinishParse()
239 p_ = json_ = chunk; in ParseChunk()
246 if (p_.empty()) { in ParseChunk()
257 leftover_ = std::string(p_); in ParseChunk()
344 if (!finishing_ && p_.length() < kKeywordFalse.length()) { in ParseValue()
366 string_open_ = *p_.data(); in ParseStringHelper()
371 const char* last = p_ in ParseStringHelper()
[all...]
H A Djson_stream_parser.h135 // Runs the parser based on stack_ and p_, until the stack is empty or p_ runs
136 // out of data. If we unexpectedly run out of p_ we push the latest back onto
140 // Parses a value from p_ and writes it to ow_.
156 // Expects p_ to point to a JSON number, writes the number to the writer using
191 // Expects p_ to point to an unquoted literal
213 // Advance p_ past all whitespace or until the end of the string.
216 // Advance p_ one UTF-8 character
219 // Expects p_ to point to the beginning of a key.
222 // Return the type of the next token at p_
241 StringPiece p_; global() member in google::protobuf::util::converter::JsonStreamParser
[all...]
/third_party/icu/icu4c/source/common/unicode/
H A Dchar16ptr.h101 char16_t *p_; member in U_FINAL
114 Char16Ptr::Char16Ptr(char16_t *p) : p_(p) {} in Char16Ptr()
116 Char16Ptr::Char16Ptr(uint16_t *p) : p_(cast(p)) {} in Char16Ptr()
119 Char16Ptr::Char16Ptr(wchar_t *p) : p_(cast(p)) {} in Char16Ptr()
121 Char16Ptr::Char16Ptr(std::nullptr_t p) : p_(p) {} in Char16Ptr()
123 U_ALIASING_BARRIER(p_); in ~Char16Ptr()
126 char16_t *Char16Ptr::get() const { return p_; } in get()
209 const char16_t *p_; member in U_FINAL
222 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {} in ConstChar16Ptr()
224 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cas
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Dchar16ptr.h101 char16_t *p_; member in final
114 Char16Ptr::Char16Ptr(char16_t *p) : p_(p) {} in Char16Ptr()
116 Char16Ptr::Char16Ptr(uint16_t *p) : p_(cast(p)) {} in Char16Ptr()
119 Char16Ptr::Char16Ptr(wchar_t *p) : p_(cast(p)) {} in Char16Ptr()
121 Char16Ptr::Char16Ptr(std::nullptr_t p) : p_(p) {} in Char16Ptr()
123 U_ALIASING_BARRIER(p_); in ~Char16Ptr()
126 char16_t *Char16Ptr::get() const { return p_; } in get()
209 const char16_t *p_; member in final
222 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {} in ConstChar16Ptr()
224 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cas
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dchar16ptr.h101 char16_t *p_; member in U_FINAL
114 Char16Ptr::Char16Ptr(char16_t *p) : p_(p) {} in Char16Ptr()
116 Char16Ptr::Char16Ptr(uint16_t *p) : p_(cast(p)) {} in Char16Ptr()
119 Char16Ptr::Char16Ptr(wchar_t *p) : p_(cast(p)) {} in Char16Ptr()
121 Char16Ptr::Char16Ptr(std::nullptr_t p) : p_(p) {} in Char16Ptr()
123 U_ALIASING_BARRIER(p_); in ~Char16Ptr()
126 char16_t *Char16Ptr::get() const { return p_; } in get()
209 const char16_t *p_; member in U_FINAL
222 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {} in ConstChar16Ptr()
224 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cas
[all...]
/third_party/node/deps/v8/src/heap/cppgc/
H A Dheap-page.h106 : p_(p), lab_start_(lab_start), lab_size_(lab_size) { in IteratorImpl()
109 if (reinterpret_cast<ConstAddress>(p_) == lab_start_) { in IteratorImpl()
110 p_ += (lab_size_ / sizeof(T)); in IteratorImpl()
114 T& operator*() { return *p_; } in operator *()
115 const T& operator*() const { return *p_; } in operator *()
117 bool operator==(IteratorImpl other) const { return p_ == other.p_; } in operator ==()
121 const size_t size = p_->AllocatedSize(); in operator ++()
123 p_ += (size / sizeof(T)); in operator ++()
124 if (reinterpret_cast<ConstAddress>(p_) in operator ++()
138 T* p_; global() member in cppgc::internal::final::IteratorImpl
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Ddiscrete_distribution.h64 : p_(begin, end) { in param_type()
68 explicit param_type(std::initializer_list<double> weights) : p_(weights) { in param_type()
76 p_.reserve(nw); in param_type()
81 p_.push_back(fw(xmin + i * delta + t)); in param_type()
87 const std::vector<double>& probabilities() const { return p_; } in probabilities()
88 size_t n() const { return p_.size() - 1; } in n()
103 std::vector<double> p_; // normalized probabilities member in absl::discrete_distribution::param_type
184 if (p_.empty()) { in init()
185 p_.push_back(1.0); in init()
189 q_ = random_internal::InitDiscreteDistribution(&p_); in init()
[all...]
/third_party/libabigail/src/
H A Dabg-workers.cc268 : p_(new priv()) in queue()
276 : p_(new priv(number_of_workers)) in queue()
293 : p_(new priv(number_of_workers, notifier)) in queue()
302 {return p_->tasks_todo.size();} in get_size()
316 {return p_->schedule_task(t);} in schedule_task()
328 {return p_->schedule_tasks(tasks);} in schedule_tasks()
341 {p_->do_bring_workers_down();} in wait_for_workers_to_complete()
348 {return p_->tasks_done;} in get_completed_tasks()
/third_party/node/deps/v8/src/heap/
H A Dspaces.h355 explicit PageIteratorImpl(PAGE_TYPE* p) : p_(p) {} in PageIteratorImpl()
356 PageIteratorImpl(const PageIteratorImpl<PAGE_TYPE>& other) : p_(other.p_) {} in PageIteratorImpl()
357 PAGE_TYPE* operator*() { return p_; } in operator *()
359 return rhs.p_ == p_; in operator ==()
362 return rhs.p_ != p_; in operator !=()
368 PAGE_TYPE* p_; member in v8::internal::PageIteratorImpl
H A Dspaces-inl.h24 p_ = p_->next_page(); in operator ++()
/third_party/NuttX/drivers/usbdev/gadget/
H A Df_uvc.h194 #define DEFINE_UVC_SELECTOR_DESCRIPTOR(p_) \
195 struct uvc_selector_descriptor ## p_ \
202 u8 baSourceID[p_]; \
255 #define DECLARE_UVC_EXTENSION_UNIT(p_, n_) \
256 struct uvc_extension_unit_descriptor ## p_ ## x ## n_ \
265 u8 baSourceID[ p_ ]; \
338 #define DEFINE_UVC_UNCOMPRESSED_FRAME_DESCRIPTOR(p_) \
339 struct uvc_uncompressed_frame_descriptor ## p_ \
353 u32 dwFrameInterval[p_]; \
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/
H A Dfont_data_table.cc113 return (r_data_ != NULL) ? r_data_.p_ : in InternalReadData()
114 static_cast<ReadableFontData*>(w_data_.p_); in InternalReadData()
135 return w_data_.p_; in InternalWriteData()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_format.h145 explicit FormatCountCapture(int* p) : p_(p) {} in FormatCountCapture()
152 // p_ is used in the templated function of the friend FormatCountCaptureHelper
154 int* Unused() { return p_; } in Unused()
155 int* p_; member in absl::FormatCountCapture
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_helpers.cc1479 StringPiece p_; member in google::protobuf::compiler::objectivec::__anon16966::Parser
1486 p_ = StringPiece(leftover_); in ParseChunk()
1488 p_ = chunk; in ParseChunk()
1491 if (p_.empty()) { in ParseChunk()
1494 leftover_ = string(p_); in ParseChunk()
1505 p_ = StringPiece(leftover_); in Finish()
1509 return p_.empty(); // Everything used? in Finish()
1514 while (ReadLine(&p_, &line)) { in ParseLoop()
/third_party/libabigail/include/
H A Dabg-workers.h76 std::unique_ptr<priv> p_; member in abigail::workers::queue
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
H A Dfont.cc355 builder.Attach(GetTableBuilder(record->first.p_, record->second.p_)); in BuildAllTableBuilders()
404 return target->second.p_; in GetBuilder()
581 WritableFontDataPtr data = down_cast<WritableFontData*>(sliced_data.p_); in LoadTableData()
/third_party/skia/third_party/externals/abseil-cpp/absl/memory/
H A Dmemory_test.cc212 explicit IntPointerNonConstDeref(int* p) : p_(p) {} in IntPointerNonConstDeref()
214 return a.p_ != nullptr; in operator !=()
216 int& operator*() { return *p_; } in operator *()
219 std::unique_ptr<int> p_; member in __anon19257::IntPointerNonConstDeref
/third_party/skia/third_party/externals/sfntly/cpp/src/sample/chromium/
H A Dsubsetter_impl.cc155 if (HasName(font_name, i->p_)) { in FindFont()
156 return i->p_; in FindFont()
161 return font_array[0].p_; in FindFont()
208 down_cast<GlyphTable::CompositeGlyph*>(glyph.p_); in ResolveCompositeGlyphs()
642 font_ = font_array[font_index].p_; in LoadFont()
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
H A Dsmart_pointer_test.cc59 EXPECT_EQ(NULL, p3.p_); in TestSmartPointer()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/
H A Dcmap_table.cc647 return StartCode(data_.p_, seg_count_, segment); in StartCode()
1146 size += b->SubSerialize(down_cast<WritableFontData*>(slice.p_)); in SubSerialize()
1249 data->CopyTo(wfd.p_); in NewCMapBuilder()
1251 builder.Attach(CMap::Builder::GetBuilder(wfd.p_, 0, cmap_id)); in NewCMapBuilder()
1253 cmap_builders->insert(std::make_pair(cmap_id, builder.p_)); in NewCMapBuilder()
1262 cmap_builders->insert(std::make_pair(cmap_id, cmap_builder.p_)); in NewCMapBuilder()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dinlined_vector_test.cc664 NotTriviallyDestructible() : p_(new int(1)) {} in NotTriviallyDestructible()
665 explicit NotTriviallyDestructible(int i) : p_(new int(i)) {} in NotTriviallyDestructible()
668 : p_(new int(*other.p_)) {} in NotTriviallyDestructible()
671 p_ = absl::make_unique<int>(*other.p_); in operator =()
676 return *p_ == *other.p_; in operator ==()
680 std::unique_ptr<int> p_; member in __anon19170::NotTriviallyDestructible
/third_party/vixl/test/aarch64/
H A Dtest-utils-aarch64.h201 Chunk chunk = dump_.p_[code].GetLane<Chunk>(chunk_index);
315 PRegisterValue p_[kNumberOfPRegisters];
/third_party/selinux/libsepol/src/
H A Dhierarchy.c607 datum_name = p->p_##prefix##_val_to_name[datum->s.value - 1]; \
620 parent = hashtab_search(p->p_##prefix##s.table, parent_name); \
625 p->p_##prefix##_val_to_name[datum->s.value - 1]); \

Completed in 30 milliseconds

12