Home
last modified time | relevance | path

Searched refs:ClassificationFlag (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/torque/
Dtypes.cc432 Classification result = ClassificationFlag::kEmpty; in ClassifyContents()
436 result |= ClassificationFlag::kStrongTagged; in ClassifyContents()
438 result |= ClassificationFlag::kWeakTagged; in ClassifyContents()
442 result |= ClassificationFlag::kUntagged; in ClassifyContents()
Dtypes.h618 enum class ClassificationFlag { enum
624 using Classification = base::Flags<ClassificationFlag>;
Dimplementation-visitor.cc3755 StructType::ClassificationFlag::kEmpty; in GetSectionFor()
3759 if ((struct_contents & StructType::ClassificationFlag::kStrongTagged) && in GetSectionFor()
3760 (struct_contents & StructType::ClassificationFlag::kWeakTagged)) { in GetSectionFor()
3764 StructType::ClassificationFlag::kStrongTagged); in GetSectionFor()
3767 (struct_contents & StructType::ClassificationFlag::kStrongTagged) || in GetSectionFor()
3768 (struct_contents & StructType::ClassificationFlag::kWeakTagged); in GetSectionFor()
3770 (struct_contents & StructType::ClassificationFlag::kUntagged)) { in GetSectionFor()
3779 struct_contents == StructType::ClassificationFlag::kStrongTagged) && in GetSectionFor()