Home
last modified time | relevance | path

Searched refs:p_ (Results 1 – 25 of 56) sorted by relevance

123

/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
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) {
198 return p_;
208 p_ = pT;
209 return p_;
213 if (p_ == p.p_) {
214 return p_;
216 return operator=(p.p_);
[all …]
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_auto_ptr.h47 T *p_;
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_; }
99 T &operator* () const { return *p_; }
105 T* temp = x.p_; in Swap()
106 x.p_ = y.p_; in Swap()
107 y.p_ = temp; in Swap()
127 delete p_; in ~AutoPtr() local
[all …]
/third_party/protobuf/src/google/protobuf/util/internal/
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_.data(); in ParseStringHelper()
[all …]
/third_party/skia/third_party/externals/icu/source/common/unicode/
Dchar16ptr.h101 char16_t *p_; variable
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_; variable
222 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {} in ConstChar16Ptr()
224 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cast(p)) {} in ConstChar16Ptr()
[all …]
/third_party/icu/icu4c/source/common/unicode/
Dchar16ptr.h101 char16_t *p_; variable
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_; variable
222 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {} in ConstChar16Ptr()
224 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cast(p)) {} in ConstChar16Ptr()
[all …]
/third_party/node/deps/icu-small/source/common/unicode/
Dchar16ptr.h101 char16_t *p_; variable
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_; variable
222 ConstChar16Ptr::ConstChar16Ptr(const char16_t *p) : p_(p) {} in ConstChar16Ptr()
224 ConstChar16Ptr::ConstChar16Ptr(const uint16_t *p) : p_(cast(p)) {} in ConstChar16Ptr()
[all …]
/third_party/node/deps/v8/src/heap/cppgc/
Dheap-page.h106 : p_(p), lab_start_(lab_start), lab_size_(lab_size) { in p_() function
109 if (reinterpret_cast<ConstAddress>(p_) == lab_start_) { in p_()
110 p_ += (lab_size_ / sizeof(T)); in p_()
114 T& operator*() { return *p_; }
115 const T& operator*() const { return *p_; }
117 bool operator==(IteratorImpl other) const { return p_ == other.p_; }
121 const size_t size = p_->AllocatedSize();
123 p_ += (size / sizeof(T));
124 if (reinterpret_cast<ConstAddress>(p_) == lab_start_) {
125 p_ += (lab_size_ / sizeof(T));
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
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 variable
184 if (p_.empty()) { in init()
185 p_.push_back(1.0); in init()
189 q_ = random_internal::InitDiscreteDistribution(&p_); in init()
/third_party/libabigail/src/
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/
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_; }
359 return rhs.p_ == p_;
362 return rhs.p_ != p_;
368 PAGE_TYPE* p_;
Dspaces-inl.h24 p_ = p_->next_page();
/third_party/NuttX/drivers/usbdev/gadget/
Df_uvc.h194 #define DEFINE_UVC_SELECTOR_DESCRIPTOR(p_) \ argument
195 struct uvc_selector_descriptor ## p_ \
202 u8 baSourceID[p_]; \
255 #define DECLARE_UVC_EXTENSION_UNIT(p_, n_) \ argument
256 struct uvc_extension_unit_descriptor ## p_ ## x ## n_ \
265 u8 baSourceID[ p_ ]; \
338 #define DEFINE_UVC_UNCOMPRESSED_FRAME_DESCRIPTOR(p_) \ argument
339 struct uvc_uncompressed_frame_descriptor ## p_ \
353 u32 dwFrameInterval[p_]; \
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/
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/typescript/tests/baselines/reference/
DtemplateLiteralTypes1.errors.txt1 … error TS2322: Type 'T' is not assignable to type '{ [P in keyof T & string as `p_${P}`]: T[P]; }'.
2 …s1.ts(45,5): error TS2322: Type '{ [P in B as `p_${P}`]: T; }' is not assignable to type '{ [Q in …
50 …function fa1<T>(x: T, y: { [P in keyof T]: T[P] }, z: { [P in keyof T & string as `p_${P}`]: T[P] …
54 !!! error TS2322: Type 'T' is not assignable to type '{ [P in keyof T & string as `p_${P}`]: T[P]; …
55 …4: This type parameter might need an `extends { [P in keyof T & string as `p_${P}`]: T[P]; }` cons…
58 …extends T, A extends string, B extends A>(x: { [P in B as `p_${P}`]: T }, y: { [Q in A as `p_${Q}`…
62 !!! error TS2322: Type '{ [P in B as `p_${P}`]: T; }' is not assignable to type '{ [Q in A as `p_${…
DtemplateLiteralTypes1.types86 function fa1<T>(x: T, y: { [P in keyof T]: T[P] }, z: { [P in keyof T & string as `p_${P}`]: T[P] }…
87 >fa1 : <T>(x: T, y: { [P in keyof T]: T[P]; }, z: { [P in keyof T & string as `p_${P}`]: T[P]; }) =…
90 >z : { [P in keyof T & string as `p_${P}`]: T[P]; }
99 >z : { [P in keyof T & string as `p_${P}`]: T[P]; }
103 …extends T, A extends string, B extends A>(x: { [P in B as `p_${P}`]: T }, y: { [Q in A as `p_${Q}`…
104 …extends T, A extends string, B extends A>(x: { [P in B as `p_${P}`]: T; }, y: { [Q in A as `p_${Q}…
105 >x : { [P in B as `p_${P}`]: T; }
106 >y : { [Q in A as `p_${Q}`]: U; }
109 >x = y : { [Q in A as `p_${Q}`]: U; }
110 >x : { [P in B as `p_${P}`]: T; }
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dstr_format.h145 explicit FormatCountCapture(int* p) : p_(p) {} in FormatCountCapture()
154 int* Unused() { return p_; } in Unused()
155 int* p_; variable
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
Dobjectivec_helpers.cc1479 StringPiece p_; member in google::protobuf::compiler::objectivec::__anond7085b4d0411::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/skia/third_party/externals/sfntly/cpp/src/sample/chromium/
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/sfntly/
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/
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 __anonbc9c0e780111::IntPointerNonConstDeref
/third_party/libabigail/include/
Dabg-workers.h76 std::unique_ptr<priv> p_;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/
DOpenGLLineSegmentRasterization.md41 vec2 p_ = p.yx;
45 vec2 i = abs(p - f + (d/d_) * (f_ - p_));
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/
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/sfntly/cpp/src/test/
Dsmart_pointer_test.cc59 EXPECT_EQ(NULL, p3.p_); in TestSmartPointer()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
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 __anon4e8f9c5e0111::NotTriviallyDestructible

123