Home
last modified time | relevance | path

Searched refs:val_type (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp1163 CompilerType val_type = GetCompilerType(); in GetValueAsBool() local
1164 if (val_type.IsInteger() || val_type.IsUnscopedEnumerationType() || in GetValueAsBool()
1165 val_type.IsPointerType()) { in GetValueAsBool()
1170 if (val_type.IsFloat()) { in GetValueAsBool()
1175 if (val_type.IsArrayType()) in GetValueAsBool()
1184 CompilerType val_type = GetCompilerType(); in SetValueFromInteger() local
1185 if (!val_type.IsInteger() && !val_type.IsUnscopedEnumerationType() && in SetValueFromInteger()
1186 !val_type.IsFloat() && !val_type.IsPointerType() && in SetValueFromInteger()
1187 !val_type.IsScalarType()) { in SetValueFromInteger()
1221 CompilerType val_type = GetCompilerType(); in SetValueFromInteger() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp1478 uint64_t val_type = uint_val->GetValue(); in SetOptionsFromArray() local
1479 if (val_type >= eArgTypeLastArg) { in SetOptionsFromArray()
1481 "CommandArgumentType bounds", val_type); in SetOptionsFromArray()
1484 option_def.argument_type = (CommandArgumentType) val_type; in SetOptionsFromArray()