Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObject.cpp1185 CompilerType val_type = GetCompilerType(); in GetValueAsBool() local
1186 if (val_type.IsInteger() || val_type.IsUnscopedEnumerationType() || in GetValueAsBool()
1187 val_type.IsPointerType()) { in GetValueAsBool()
1192 if (val_type.IsFloat()) { in GetValueAsBool()
1197 if (val_type.IsArrayType()) in GetValueAsBool()
1206 CompilerType val_type = GetCompilerType(); in SetValueFromInteger() local
1207 if (!val_type.IsInteger() && !val_type.IsUnscopedEnumerationType() && in SetValueFromInteger()
1208 !val_type.IsFloat() && !val_type.IsPointerType() && in SetValueFromInteger()
1209 !val_type.IsScalarType()) { in SetValueFromInteger()
1246 CompilerType val_type = GetCompilerType(); in SetValueFromInteger() local
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp1503 uint64_t val_type = uint_val->GetValue(); in SetOptionsFromArray() local
1504 if (val_type >= eArgTypeLastArg) { in SetOptionsFromArray()
1508 val_type); in SetOptionsFromArray()
1511 option_def.argument_type = (CommandArgumentType) val_type; in SetOptionsFromArray()