Home
last modified time | relevance | path

Searched refs:set_ (Results 1 - 25 of 100) sorted by relevance

1234

/foundation/graphic/graphic_2d/rosen/modules/texgine/texgine_drawing/src/
H A Dtexgine_font_style_set.cpp23 set_ = set; in TexgineFontStyleSet()
28 if (set_) { in ~TexgineFontStyleSet()
29 delete set_; in ~TexgineFontStyleSet()
35 if (set_ == nullptr) { in Count()
38 return set_->Count(); in Count()
44 if (set_ == nullptr || style == nullptr || name == nullptr) { in GetStyle()
47 set_->GetStyle(index, style->GetFontStyle().get(), name->GetString()); in GetStyle()
52 if (set_ == nullptr) { in CreateTypeface()
55 RSTypeface* typeface = set_->CreateTypeface(index); in CreateTypeface()
61 if (set_ in MatchStyle()
[all...]
H A Dtexgine_font_style_set.h65 return set_; in GetFontStyleSet()
69 RSFontStyleSet *set_ = nullptr; member in OHOS::Rosen::TextEngine::TexgineFontStyleSet
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSetVector.h67 set_.clear(); in takeVector()
142 bool result = set_.insert(X).second;
152 if (set_.insert(*Start).second)
158 if (set_.erase(X)) {
173 assert(set_.count(V) && "Corrupted SetVector instances!");
174 set_.erase(V);
201 llvm::remove_if(vector_, TestAndEraseFromSet<UnaryPredicate>(P, set_));
211 return set_.count(key);
216 set_.clear();
223 set_
[all...]
/third_party/gn/src/gn/
H A Dstring_atom.cc118 size_t hash = set_.Hash(""); in StringAtomSet()
119 auto* node = set_.Lookup(hash, ""); in StringAtomSet()
120 set_.Insert(node, hash, &kEmptyString); in StringAtomSet()
126 size_t hash = set_.Hash(key); in find()
127 auto* node = set_.Lookup(hash, key); in find()
137 set_.Insert(node, hash, result); in find()
176 KeySet set_; member in StringAtomSet
H A Dunique_vector.h94 set_.Clear();
119 set_.Insert(node, hash, vector_.size() - 1);
131 set_.Insert(node, hash, vector_.size() - 1);
155 set_.Insert(node, hash, result);
168 set_.Insert(node, hash, result);
230 return set_.Lookup<T, EqualTo>(*hash, t, vector_);
234 UniqueVectorHashSet set_;
/third_party/spirv-tools/source/
H A Denum_set.h92 : set_(other.set_), in Iterator()
98 if (bucketIndex_ >= set_->buckets_.size()) { in operator ++()
99 bucketIndex_ = set_->buckets_.size(); in operator ++()
111 } while (bucketIndex_ < set_->buckets_.size() && in operator ++()
112 !set_->HasEnumAt(bucketIndex_, bucketOffset_)); in operator ++()
123 assert(set_->HasEnumAt(bucketIndex_, bucketOffset_) && in operator *()
125 return GetValueFromBucket(set_->buckets_[bucketIndex_], bucketOffset_); in operator *()
129 return set_ != other.set_ || bucketOffset in operator !=()
149 const EnumSet* set_ = nullptr; global() member in spvtools::EnumSet::Iterator
[all...]
/third_party/node/deps/v8/src/objects/
H A Dobject-macros.h48 #define DECL_PRIMITIVE_SETTER(name, type) inline void set_##name(type value);
72 inline void set_##name(type value, RelaxedStoreTag);
116 inline void set_##name(type value, \
128 inline void set_##name(type value, tag_type, \
166 void holder::set_##name(type value) { WriteField<type>(offset, value); }
184 void holder::set_##name(int32_t value, RelaxedStoreTag) { \
192 void holder::set_##name(uint16_t value, RelaxedStoreTag) { \
203 void holder::set_##name(type value, WriteBarrierMode mode) { \
219 inline void holder::set_##name(type value, WriteBarrierMode mode) { \
220 TorqueGeneratedClass::set_##torque_nam
[all...]
H A Djs-temporal-objects-inl.h21 inline void T::set_##field(int32_t field) { \
26 set_##data(hints); \
36 inline void T::set_##field(int32_t field) { \
44 set_##data(hints); \
H A Dproperty-descriptor.h100 Handle<Object> set() const { return set_; } in set()
101 void set_set(Handle<Object> set) { set_ = set; } in set_set()
102 bool has_set() const { return !set_.is_null(); } in has_set()
123 Handle<Object> set_; member in v8::internal::PropertyDescriptor
/third_party/node/deps/v8/src/compiler/
H A Dstore-store-elimination.cc131 const SetT* set() const { return set_; } in set()
133 bool IsUnvisited() const { return set_ == nullptr; } in IsUnvisited()
135 return set_ == nullptr || set_->begin() == set_->end(); in IsEmpty()
145 if (set_ == nullptr) return false; in IsUnobservable()
146 ObservableState state = set_->Get(obs); in IsUnobservable()
159 return set_ != nullptr && set_->Get(obs) == kGCObservable; in IsGCObservable()
177 explicit UnobservablesSet(const SetT* set) : set_(se
193 const SetT* set_ = nullptr; global() member in v8::internal::compiler::__anon14415::final
[all...]
/foundation/communication/ipc/ipc/native/src/napi_common/source/
H A Dnapi_remote_proxy_holder.cpp149 set_.clear(); in ~NAPIDeathRecipientList()
155 auto ret = set_.insert(recipient); in Add()
162 return (set_.erase(recipient) > 0); in Remove()
168 for (auto it = set_.begin(); it != set_.end(); it++) { in Find()
/third_party/node/deps/v8/src/common/
H A Dassert-scope.cc55 isolate_->set_##field(enable); \
58 ScopeType::~ScopeType() { isolate_->set_##field(old_data_); } \
68 isolate->set_##field(enable); \
73 isolate->set_##field(was_execution_allowed); \
/third_party/node/deps/v8/src/torque/ls/
H A Dmessage-macros.h17 inline void set_##name(const std::string& str) { \
26 inline void set_##name(bool b) { object()[#name] = JsonValue::From(b); }
30 inline void set_##name(int n) { \
/third_party/node/deps/v8/src/zone/
H A Dzone-handle-set.h205 reference operator*() const { return (*set_)[current_]; }
207 return set_ == other.set_ && current_ == other.current_;
213 DCHECK(current_ < set_->size());
223 : set_(set), current_(current) {}
225 const ZoneHandleSet<T>* set_;
/third_party/elfio/elfio/
H A Delfio_utils.hpp33 virtual void set_##NAME( const TYPE& value ) noexcept = 0
37 virtual void set_##NAME( const TYPE& value ) noexcept = 0
46 void set_##NAME( const TYPE& value ) noexcept override \
56 void set_##NAME( const TYPE& value ) noexcept override \
/third_party/node/src/quic/
H A Dbindingdata.cc92 void BindingData::set_##name##_constructor_template( \
106 void BindingData::set_##name##_callback(Local<Function> fn) { \
156 state.set_##name##_callback(val.As<Function>()); \ in SetCallbacks()
H A Dsessionticket.cc141 if (set_ || data.base == nullptr || data.len == 0) return false; in Set()
142 set_ = true; in Set()
144 return set_; in Set()
H A Dbindingdata.h148 void set_##name##_constructor_template( \
155 void set_##name##_callback(v8::Local<v8::Function> fn); \
/third_party/node/deps/v8/src/regexp/
H A Dregexp-ast.h289 : set_(ranges), character_class_flags_(character_class_flags) { in RegExpCharacterClass()
297 : set_(standard_set_type), character_class_flags_() {} in RegExpCharacterClass()
311 // recognizes a mangled standard set and just do { return set_.is_special(); }
316 return set_.standard_set_type(); in standard_type()
319 CharacterSet character_set() const { return set_; } in character_set()
320 ZoneList<CharacterRange>* ranges(Zone* zone) { return set_.ranges(zone); } in ranges()
328 CharacterSet set_; member in v8::internal::final
H A Dregexp-compiler-tonode.cc102 if (set_.is_standard()) { in is_standard()
105 if (CompareRanges(set_.ranges(zone), kSpaceRanges, kSpaceRangeCount)) { in is_standard()
106 set_.set_standard_set_type(StandardCharacterSet::kWhitespace); in is_standard()
109 if (CompareInverseRanges(set_.ranges(zone), kSpaceRanges, kSpaceRangeCount)) { in is_standard()
110 set_.set_standard_set_type(StandardCharacterSet::kNotWhitespace); in is_standard()
113 if (CompareInverseRanges(set_.ranges(zone), kLineTerminatorRanges, in is_standard()
115 set_.set_standard_set_type(StandardCharacterSet::kNotLineTerminator); in is_standard()
118 if (CompareRanges(set_.ranges(zone), kLineTerminatorRanges, in is_standard()
120 set_.set_standard_set_type(StandardCharacterSet::kLineTerminator); in is_standard()
123 if (CompareRanges(set_ in is_standard()
[all...]
/third_party/node/deps/v8/src/heap/cppgc/
H A Dpage-memory.h172 std::map<ConstAddress, PageMemoryRegion*> set_; member in cppgc::internal::final
270 auto it = set_.upper_bound(address); in Lookup()
271 // This check also covers set_.size() > 0, since for empty vectors it is in Lookup()
273 if (it == set_.begin()) return nullptr; in Lookup()
/foundation/communication/ipc/ipc/native/src/jni/source/
H A Dohos_rpc_remote_object.cpp128 std::set<sptr<JDeathRecipient>> set_; member in OHOS::JDeathRecipientList
348 set_.clear(); in ~JDeathRecipientList()
354 auto ret = set_.insert(recipient); in Add()
361 return (set_.erase(recipient) > 0); in Remove()
368 for (auto it = set_.begin(); it != set_.end(); it++) { in Find()
/kernel/linux/linux-5.10/include/linux/
H A Dide.h886 static int set_##name(ide_drive_t *drive, int arg) \
899 static int set_##name(ide_drive_t *drive, int arg) \
916 IDE_DEVSET(_name, 0, get_##_func, set_##_func)
919 IDE_DEVSET(_name, 0, NULL, set_##_func)
922 __IDE_DEVSET(_name, 0, get_##_func, set_##_func)
925 __IDE_DEVSET(_name, DS_SYNC, get_##_func, set_##_func)
944 IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
953 IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
/foundation/communication/ipc/ipc/native/src/napi_common/include/
H A Dnapi_remote_proxy_holder.h69 std::set<sptr<NAPIDeathRecipient>> set_; member in OHOS::NAPIDeathRecipientList
/kernel/linux/linux-5.10/drivers/misc/
H A Dad525x_dpot.c505 set_##_name(struct device *dev, \
515 static DEVICE_ATTR(name, S_IWUSR | S_IRUGO, show_##name, set_##name)
610 set_##_name(struct device *dev, \
616 static DEVICE_ATTR(_name, S_IWUSR | S_IRUGO, NULL, set_##_name)

Completed in 18 milliseconds

1234