Home
last modified time | relevance | path

Searched refs:set_ (Results 1 – 25 of 34) sorted by relevance

12

/external/libchrome/sandbox/linux/bpf_dsl/
Dsyscall_set.cc48 return Iterator(set_, false); in begin()
52 return Iterator(set_, true); in end()
65 return (lhs.set_ == rhs.set_); in operator ==()
69 : set_(set), done_(done), num_(0) { in Iterator()
71 if (!done && set_ == (IsValid(num_) ? Set::INVALID_ONLY : Set::VALID_ONLY)) { in Iterator()
95 const bool want_valid = (set_ != Set::INVALID_ONLY); in NextSyscall()
96 const bool want_invalid = (set_ != Set::VALID_ONLY); in NextSyscall()
137 DCHECK(lhs.set_ == rhs.set_); in operator ==()
Dsyscall_set.h34 SyscallSet(const SyscallSet& ss) : set_(ss.set_) {} in SyscallSet()
60 explicit SyscallSet(Set set) : set_(set) {} in SyscallSet()
62 Set set_; variable
76 : set_(it.set_), done_(it.done_), num_(it.num_) {} in Iterator()
87 Set set_; variable
/external/llvm/include/llvm/ADT/
DSetVector.h129 bool result = set_.insert(X).second; in insert()
139 if (set_.insert(*Start).second) in insert()
145 if (set_.erase(X)) { in remove()
161 assert(set_.count(V) && "Corrupted SetVector instances!"); in erase()
162 set_.erase(V); in erase()
190 TestAndEraseFromSet<UnaryPredicate>(P, set_)); in remove_if()
200 return set_.count(key); in count()
205 set_.clear(); in clear()
212 set_.erase(back()); in pop_back()
263 set_type &set_; variable
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DSetVector.h102 bool result = set_.insert(X); in insert()
112 if (set_.insert(*Start)) in insert()
118 if (set_.erase(X)) { in remove()
132 return set_.count(key); in count()
137 set_.clear(); in clear()
144 set_.erase(back()); in pop_back()
157 set_type set_; ///< The set.
/external/v8/src/compiler/
Dstore-store-elimination.cc105 UnobservablesSet(const UnobservablesSet& other) : set_(other.set_) {} in UnobservablesSet()
111 const ZoneSet<UnobservableStore>* set() const { return set_; } in set()
113 bool IsUnvisited() const { return set_ == nullptr; } in IsUnvisited()
114 bool IsEmpty() const { return set_ == nullptr || set_->empty(); } in IsEmpty()
116 return set_ != nullptr && (set_->find(obs) != set_->end()); in Contains()
124 : set_(set) {} in UnobservablesSet()
125 const ZoneSet<UnobservableStore>* set_; member in v8::internal::compiler::__anonec99dfef0211::UnobservablesSet
470 UnobservablesSet::UnobservablesSet() : set_(nullptr) {} in UnobservablesSet()
Dmove-optimizer.cc32 : set_(buffer), fp_reps_(0) { in OperandSet()
37 set_->push_back(op); in InsertOp()
44 for (const InstructionOperand& elem : *set_) { in Contains()
111 ZoneVector<InstructionOperand>* set_; member in v8::internal::compiler::__anonf0f913c90111::OperandSet
/external/v8/src/objects/
Dobject-macros.h13 inline void set_##name(bool value);
17 inline void set_##name(int value);
21 inline void set_##name(type* value, \
/external/webrtc/webrtc/common_video/libyuv/
Dscaler.cc26 set_(false) {} in Scaler()
34 set_ = false; in Set()
46 set_ = true; in Set()
54 if (!set_) in Scale()
/external/v8/src/
Dproperty-descriptor.h99 Handle<Object> set() const { return set_; } in set()
100 void set_set(Handle<Object> set) { set_ = set; } in set_set()
101 bool has_set() const { return !set_.is_null(); } in has_set()
122 Handle<Object> set_; variable
Dcontexts-inl.h143 void Context::set_##name(type* value) { \
Disolate.h265 inline void set_##name(type v) { name##_ = v; } \
428 inline void set_##name(type v) { thread_local_top_.name##_ = v; } \
819 inline void set_##name(type value) { \
Dcontexts.h612 inline void set_##name(type* value); \
/external/libmojo/mojo/public/tools/bindings/generators/cpp_templates/
Dwrapper_union_class_template_definition.tmpl11 rv->set_{{field.name}}(mojo::internal::Clone(*data_.{{field.name}}));
13 rv->set_{{field.name}}(mojo::internal::Clone(data_.{{field.name}}));
Dunion_serialization_definition.tmpl140 result->set_{{field.name}}(std::move(result_{{field.name}}));
148 result->set_{{field.name}}(result_{{field.name}});
151 result->set_{{field.name}}(input->data.f_{{field.name}});
Dwrapper_union_class_declaration.tmpl42 void set_{{field.name}}({{field.kind|cpp_wrapper_param_type}} {{field.name}});
Dwrapper_union_class_definition.tmpl33 void {{union.name}}::set_{{field.name}}({{field.kind|cpp_wrapper_param_type}} {{field.name}}) {
/external/vulkan-validation-layers/layers/
Ddescriptor_sets.cpp280 …: some_update_(false), set_(set), pool_state_(nullptr), p_layout_(layout), device_data_(dev_data) { in DescriptorSet()
534 … {reinterpret_cast<uint64_t &>(set_), VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT}); in InvalidateBoundCmdBuffers()
557 …ror_str << "Cannot call vkUpdateDescriptorSets() to perform copy update on descriptor set " << set_ in ValidateCopyUpdate()
565 …error_str << "DescriptorSet " << set_ << " does not have copy update dest binding of " << update->… in ValidateCopyUpdate()
572 …error_str << "DescriptorSet " << set_ << " does not have copy update src binding of " << update->s… in ValidateCopyUpdate()
595 …error_str << "Attempting copy update to descriptorSet " << set_ << " binding#" << update->dstBindi… in ValidateCopyUpdate()
610 …error_str << "Attempting copy update to descriptorSet " << set_ << " binding #" << update->dstBind… in ValidateCopyUpdate()
620 set_, error_msg))) { in ValidateCopyUpdate()
661 …cb_node->object_bindings.insert({reinterpret_cast<uint64_t &>(set_), VK_DEBUG_REPORT_OBJECT_TYPE_D… in BindCommandBuffer()
1128 …or_str << "Cannot call vkUpdateDescriptorSets() to perform write update on descriptor set " << set_ in ValidateWriteUpdate()
[all …]
Ddescriptor_sets.h346 VkDescriptorSet GetSet() const { return set_; }; in GetSet()
377 VkDescriptorSet set_; variable
/external/v8/src/regexp/
Dregexp-ast.h292 : set_(ranges), is_negated_(is_negated) {} in RegExpCharacterClass()
293 explicit RegExpCharacterClass(uc16 type) : set_(type), is_negated_(false) {} in RegExpCharacterClass()
305 CharacterSet character_set() { return set_; } in character_set()
320 uc16 standard_type() { return set_.standard_set_type(); } in standard_type()
321 ZoneList<CharacterRange>* ranges(Zone* zone) { return set_.ranges(zone); } in ranges()
325 CharacterSet set_;
Djsregexp.cc4852 if (set_.is_standard()) { in is_standard()
4855 if (CompareRanges(set_.ranges(zone), kSpaceRanges, kSpaceRangeCount)) { in is_standard()
4856 set_.set_standard_set_type('s'); in is_standard()
4859 if (CompareInverseRanges(set_.ranges(zone), kSpaceRanges, kSpaceRangeCount)) { in is_standard()
4860 set_.set_standard_set_type('S'); in is_standard()
4863 if (CompareInverseRanges(set_.ranges(zone), in is_standard()
4866 set_.set_standard_set_type('.'); in is_standard()
4869 if (CompareRanges(set_.ranges(zone), in is_standard()
4872 set_.set_standard_set_type('n'); in is_standard()
4875 if (CompareRanges(set_.ranges(zone), kWordRanges, kWordRangeCount)) { in is_standard()
[all …]
/external/webrtc/webrtc/common_video/libyuv/include/
Dscaler.h63 bool set_; variable
/external/v8/src/wasm/
Dwasm-objects.h33 void set_##name(type* value); \
226 void set_##NAME(Handle<TYPE> value) { set_ptr_to_##NAME(*value); } \
247 void set_##NAME(TYPE value) { set(kID_##NAME, Smi::FromInt(value)); }
/external/protobuf/src/google/protobuf/util/
Dfield_mask_util_test.cc346 tmp.set_##field_name(src.field_name()); \ in TEST()
/external/pdfium/fpdfsdk/javascript/
DJS_Define.h93 static void set_##prop_name##_static( \
/external/v8/src/heap/
Dheap-inl.h149 void Heap::set_##name(type* value) { \

12