Home
last modified time | relevance | path

Searched refs:kind_ (Results 1 - 25 of 84) sorted by relevance

1234

/third_party/node/deps/v8/src/codegen/
H A Dcode-reference.h23 CodeReference() : kind_(Kind::NONE), null_(nullptr) {} in CodeReference()
25 : kind_(Kind::WASM), wasm_code_(wasm_code) {} in CodeReference()
27 : kind_(Kind::CODE_DESC), code_desc_(code_desc) {} in CodeReference()
29 : kind_(Kind::JS), js_code_(js_code) {} in CodeReference()
41 bool is_null() const { return kind_ == Kind::NONE; } in is_null()
42 bool is_js() const { return kind_ == Kind::JS; } in is_js()
43 bool is_wasm_code() const { return kind_ == Kind::WASM; } in is_wasm_code()
46 DCHECK_EQ(Kind::JS, kind_); in as_js_code()
51 DCHECK_EQ(Kind::WASM, kind_); in as_wasm_code()
56 enum class Kind { NONE, JS, WASM, CODE_DESC } kind_; member in v8::internal::CodeReference
[all...]
H A Dcode-reference.cc88 switch (kind_) { \
103 DCHECK(kind_ == Kind::JS || kind_ == Kind::CODE_DESC); \
104 if (kind_ == Kind::JS) { \
H A Dstring-constants.h23 explicit StringConstantBase(StringConstantKind kind) : kind_(kind) {} in StringConstantBase()
25 StringConstantKind kind() const { return kind_; } in kind()
35 StringConstantKind kind_; member in v8::internal::StringConstantBase
/third_party/node/deps/v8/src/wasm/
H A Dwasm-init-expr.h58 WasmInitExpr() : kind_(kNone), operands_(nullptr) { in WasmInitExpr()
61 explicit WasmInitExpr(int32_t v) : kind_(kI32Const), operands_(nullptr) { in WasmInitExpr()
64 explicit WasmInitExpr(int64_t v) : kind_(kI64Const), operands_(nullptr) { in WasmInitExpr()
67 explicit WasmInitExpr(float v) : kind_(kF32Const), operands_(nullptr) { in WasmInitExpr()
70 explicit WasmInitExpr(double v) : kind_(kF64Const), operands_(nullptr) { in WasmInitExpr()
74 : kind_(kS128Const), operands_(nullptr) { in WasmInitExpr()
80 expr.kind_ = kGlobalGet; in GlobalGet()
87 expr.kind_ = kRefFuncConst; in RefFuncConst()
94 expr.kind_ = kRefNullConst; in RefNullConst()
124 expr.kind_ in StructNewDefault()
207 Operator kind_; global() member in v8::internal::wasm::WasmInitExpr
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dstruct.pb.h539 } kind_; member in PROTOBUF_FINAL
746 kind_.null_value_ = 0; in clear_null_value()
752 return static_cast< PROTOBUF_NAMESPACE_ID::NullValue >(kind_.null_value_); in _internal_null_value()
765 kind_.null_value_ = value; in _internal_set_null_value()
781 kind_.number_value_ = 0; in clear_number_value()
787 return kind_.number_value_; in _internal_number_value()
796 kind_.number_value_ = value; in _internal_set_number_value()
816 kind_.string_value_.Destroy(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena()); in clear_string_value()
834 return kind_.string_value_.Get(); in _internal_string_value()
842 kind_ in _internal_set_string_value()
[all...]
H A Dstruct.pb.cc104 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Value, kind_),
451 return *msg->kind_.struct_value_; in struct_value()
455 return *msg->kind_.list_value_; in list_value()
468 kind_.struct_value_ = struct_value; in set_allocated_struct_value()
483 kind_.list_value_ = list_value; in set_allocated_list_value()
574 kind_.string_value_.Destroy(&::PROTOBUF_NAMESPACE_ID::internal::GetEmptyStringAlreadyInited(), GetArena()); in clear_kind()
583 delete kind_.struct_value_; in clear_kind()
589 delete kind_.list_value_; in clear_kind()
781 *kind_.struct_value_); in ByteSizeLong()
788 *kind_ in ByteSizeLong()
[all...]
/third_party/node/deps/v8/third_party/wasm-api/
H A Dwasm.hh409 ValKind kind_;
418 Val(ValKind kind, impl impl) : kind_(kind), impl_(impl) {}
421 Val() : kind_(ANYREF) { impl_.ref = nullptr; }
422 Val(int32_t i) : kind_(I32) { impl_.i32 = i; }
423 Val(int64_t i) : kind_(I64) { impl_.i64 = i; }
424 Val(float32_t z) : kind_(F32) { impl_.f32 = z; }
425 Val(float64_t z) : kind_(F64) { impl_.f64 = z; }
426 Val(own<Ref>&& r) : kind_(ANYREF) { impl_.ref = r.release(); }
428 Val(Val&& that) : kind_(that.kind_), impl
[all...]
/third_party/node/deps/v8/src/torque/
H A Dinstructions.h89 DefinitionLocation() : kind_(Kind::kInvalid), location_(nullptr), index_(0) {} in DefinitionLocation()
104 Kind GetKind() const { return kind_; } in GetKind()
105 bool IsValid() const { return kind_ != Kind::kInvalid; } in IsValid()
106 bool IsParameter() const { return kind_ == Kind::kParameter; } in IsParameter()
107 bool IsPhi() const { return kind_ == Kind::kPhi; } in IsPhi()
108 bool IsInstruction() const { return kind_ == Kind::kInstruction; } in IsInstruction()
140 if (kind_ != other.kind_) return false; in operator ==()
150 if (kind_ != other.kind_) { in operator <()
163 Kind kind_; global() member in v8::internal::torque::DefinitionLocation
277 InstructionKind kind_; global() member in v8::internal::torque::Instruction
[all...]
H A Ddeclarable.h72 Kind kind() const { return kind_; } in kind()
118 explicit Declarable(Kind kind) : kind_(kind) {} in Declarable()
121 const Kind kind_; member in v8::internal::torque::Declarable
502 Kind kind() const { return kind_; } in kind()
503 bool IsStub() const { return kind_ == kStub; } in IsStub()
504 bool IsVarArgsJavaScript() const { return kind_ == kVarArgsJavaScript; } in IsVarArgsJavaScript()
505 bool IsFixedArgsJavaScript() const { return kind_ == kFixedArgsJavaScript; } in IsFixedArgsJavaScript()
514 kind_(kind) {} in Builtin()
516 Kind kind_; member in v8::internal::torque::Builtin
/third_party/node/deps/v8/src/objects/
H A Dproperty-details.h112 constexpr Representation() : kind_(kNone) {} in Representation()
130 return kind_ == other.kind_; in Equals()
184 return kind_ > other.kind_; in is_more_general_than()
204 constexpr Kind kind() const { return static_cast<Kind>(kind_); } in kind()
205 constexpr bool IsNone() const { return kind_ == kNone; } in IsNone()
206 constexpr bool IsWasmValue() const { return kind_ == kWasmValue; } in IsWasmValue()
207 constexpr bool IsTagged() const { return kind_ == kTagged; } in IsTagged()
208 constexpr bool IsSmi() const { return kind_ in IsTagged()
237 int8_t kind_; global() member in v8::internal::PropertyKind::PropertyLocation::PropertyConstness::Representation
[all...]
/third_party/skia/third_party/externals/tint/src/writer/spirv/
H A Doperand.h69 bool IsFloat() const { return kind_ == Kind::kFloat; } in IsFloat()
71 bool IsInt() const { return kind_ == Kind::kInt; } in IsInt()
73 bool IsString() const { return kind_ == Kind::kString; } in IsString()
86 Kind kind_ = Kind::kInt; member in tint::writer::spirv::Operand
H A Doperand.cc42 Operand::Operand(Kind kind) : kind_(kind) {} in Operand()
48 switch (kind_) { in length()
/third_party/node/deps/v8/src/ic/
H A Dic.h118 FeedbackSlotKind kind() const { return kind_; } in kind()
120 bool IsLoadIC() const { return IsLoadICKind(kind_); } in IsLoadIC()
121 bool IsLoadGlobalIC() const { return IsLoadGlobalICKind(kind_); } in IsLoadGlobalIC()
122 bool IsKeyedLoadIC() const { return IsKeyedLoadICKind(kind_); } in IsKeyedLoadIC()
123 bool IsStoreGlobalIC() const { return IsStoreGlobalICKind(kind_); } in IsStoreGlobalIC()
124 bool IsSetNamedIC() const { return IsSetNamedICKind(kind_); } in IsSetNamedIC()
125 bool IsDefineNamedOwnIC() const { return IsDefineNamedOwnICKind(kind_); } in IsDefineNamedOwnIC()
127 return IsStoreInArrayLiteralICKind(kind_); in IsStoreInArrayLiteralIC()
129 bool IsKeyedStoreIC() const { return IsKeyedStoreICKind(kind_); } in IsKeyedStoreIC()
130 bool IsKeyedHasIC() const { return IsKeyedHasICKind(kind_); } in IsKeyedHasIC()
168 FeedbackSlotKind kind_; global() member in v8::internal::IC
[all...]
/third_party/skia/third_party/externals/tint/src/sem/
H A Dsampler_type.cc24 Sampler::Sampler(ast::SamplerKind kind) : kind_(kind) {} in Sampler()
32 (kind_ == ast::SamplerKind::kSampler ? "sampler" : "comparison"); in type_name()
36 return kind_ == ast::SamplerKind::kSampler ? "sampler" : "sampler_comparison"; in FriendlyName()
H A Dsampler_type.h37 ast::SamplerKind kind() const { return kind_; } in kind()
41 return kind_ == ast::SamplerKind::kComparisonSampler; in IsComparison()
53 ast::SamplerKind const kind_; member in tint::sem::Sampler::ast
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DStruct.cs317 get { return kindCase_ == KindOneofCase.NullValue ? (global::Google.Protobuf.WellKnownTypes.NullValue) kind_ : global::Google.Protobuf.WellKnownTypes.NullValue.NullValue; }
319 kind_ = value;
331 get { return kindCase_ == KindOneofCase.NumberValue ? (double) kind_ : 0D; }
333 kind_ = value;
345 get { return kindCase_ == KindOneofCase.StringValue ? (string) kind_ : ""; }
347 kind_ = pb::ProtoPreconditions.CheckNotNull(value, "value");
359 get { return kindCase_ == KindOneofCase.BoolValue ? (bool) kind_ : false; }
361 kind_ = value;
373 get { return kindCase_ == KindOneofCase.StructValue ? (global::Google.Protobuf.WellKnownTypes.Struct) kind_ : null; }
375 kind_
394 private object kind_; global() field in Google.Protobuf.WellKnownTypes.Value
[all...]
/third_party/node/deps/v8/src/compiler/
H A Drepresentation-change.h53 bool IsUnused() const { return kind_ == TruncationKind::kNone; } in IsUnused()
55 return LessGeneral(kind_, TruncationKind::kBool); in IsUsedAsBool()
58 return LessGeneral(kind_, TruncationKind::kWord32); in IsUsedAsWord32()
61 return LessGeneral(kind_, TruncationKind::kWord64); in IsUsedAsWord64()
64 return LessGeneral(kind_, TruncationKind::kOddballAndBigIntToNumber); in TruncatesOddballAndBigIntToNumber()
67 return LessGeneral(kind_, TruncationKind::kWord32) || in IdentifiesUndefinedAndZero()
68 LessGeneral(kind_, TruncationKind::kBool); in IdentifiesUndefinedAndZero()
100 : kind_(kind), identify_zeros_(identify_zeros) {} in Truncation()
102 TruncationKind kind() const { return kind_; } in kind()
105 TruncationKind kind_; member in v8::internal::compiler::final
[all...]
H A Djs-type-hint-lowering.h66 bool Changed() const { return kind_ != LoweringResultKind::kNoChange; } in Changed()
67 bool IsExit() const { return kind_ == LoweringResultKind::kExit; } in IsExit()
69 return kind_ == LoweringResultKind::kSideEffectFree; in IsSideEffectFree()
96 : kind_(kind), value_(value), effect_(effect), control_(control) {} in LoweringResult()
98 LoweringResultKind kind_; member in v8::internal::compiler::JSTypeHintLowering::LoweringResult
H A Dlinkage.h265 : kind_(kind),
287 Kind kind() const { return kind_; } in kind()
290 bool IsCFunctionCall() const { return kind_ == kCallAddress; } in IsCFunctionCall()
293 bool IsJSFunctionCall() const { return kind_ == kCallJSFunction; } in IsJSFunctionCall()
297 bool IsWasmFunctionCall() const { return kind_ == kCallWasmFunction; } in IsWasmFunctionCall()
300 bool IsWasmImportWrapper() const { return kind_ == kCallWasmImportWrapper; } in IsWasmImportWrapper()
303 bool IsWasmCapiFunction() const { return kind_ == kCallWasmCapiFunction; } in IsWasmCapiFunction()
459 const Kind kind_; member in v8::internal::compiler::final
H A Daccess-info.h124 return kind_ == kDictionaryProtoDataConstant || in HasDictionaryHolder()
125 kind_ == kDictionaryProtoAccessorConstant; in HasDictionaryHolder()
129 Kind kind() const { return kind_; } in kind()
197 Kind kind_; member in v8::internal::compiler::final
/third_party/node/deps/v8/src/compiler/backend/
H A Dcode-generator.h60 : kind_(DeoptimizationLiteralKind::kInvalid), in DeoptimizationLiteral()
65 : kind_(DeoptimizationLiteralKind::kObject), object_(object) { in DeoptimizationLiteral()
69 : kind_(DeoptimizationLiteralKind::kNumber), number_(number) {} in DeoptimizationLiteral()
71 : kind_(DeoptimizationLiteralKind::kString), string_(string) {} in DeoptimizationLiteral()
77 return kind_ == other.kind_ && object_.equals(other.object_) && in operator ==()
85 CHECK_NE(kind_, DeoptimizationLiteralKind::kInvalid); in Validate()
90 return kind_; in kind()
94 DeoptimizationLiteralKind kind_; member in v8::internal::compiler::DeoptimizationLiteral
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceFixups.h42 FixupKind kind() const { return kind_; } in kind()
43 void set_kind(FixupKind Kind) { kind_ = Kind; } in set_kind()
79 FixupKind kind_ = 0; member in Ice::AssemblerFixup
/third_party/node/src/crypto/
H A Dcrypto_cipher.cc264 kind_(kind), in CipherBase()
381 const bool encrypt = (kind_ == kCipher); in CommonInit()
437 if (kind_ == kCipher && (mode == EVP_CIPH_CTR_MODE || in Init()
606 if (mode == EVP_CIPH_CCM_MODE && kind_ == kDecipher && in Init()
609 if (mode == EVP_CIPH_CCM_MODE && kind_ == kDecipher && FIPS_mode()) { in Init()
664 cipher->kind_ != kCipher || in Init()
681 cipher->kind_ != kDecipher || in Init()
757 if (kind_ == kDecipher) { in Init()
804 if (kind_ == kDecipher && IsAuthenticatedMode()) in Init()
814 if (kind_ in Init()
[all...]
/third_party/libphonenumber/tools/cpp/src/cpp-build/
H A Dgenerate_geocoding_data.cc89 kind_(k) in DirEntry()
93 DirEntryKinds kind() const { return kind_; } in kind()
97 DirEntryKinds kind_; member in i18n::phonenumbers::DirEntry
/third_party/node/deps/v8/src/deoptimizer/
H A Dtranslated-state.h97 : kind_(kind), container_(container) {} in TranslatedValue()
98 Kind kind() const { return kind_; } in kind()
133 Kind kind_; member in v8::internal::TranslatedValue
193 Kind kind() const { return kind_; } in kind()
305 : kind_(kind), in TranslatedFrame()
316 Kind kind_; member in v8::internal::TranslatedFrame

Completed in 20 milliseconds

1234