HomeSort by: relevance | last modified time | path
    Searched refs:PDB_VariantType (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBSymbolCompilandEnv.cpp 22 if (Value.Type != PDB_VariantType::String)
PDBExtras.cpp 25 const PDB_VariantType &Type) {
27 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS)
28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS)
29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS)
30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS)
31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS)
32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS)
33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS)
34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS)
35 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 393 enum PDB_VariantType {
413 explicit Variant(bool V) : Type(PDB_VariantType::Bool) { Value.Bool = V; }
414 explicit Variant(int8_t V) : Type(PDB_VariantType::Int8) { Value.Int8 = V; }
415 explicit Variant(int16_t V) : Type(PDB_VariantType::Int16) {
418 explicit Variant(int32_t V) : Type(PDB_VariantType::Int32) {
421 explicit Variant(int64_t V) : Type(PDB_VariantType::Int64) {
424 explicit Variant(float V) : Type(PDB_VariantType::Single) {
427 explicit Variant(double V) : Type(PDB_VariantType::Double) {
430 explicit Variant(uint8_t V) : Type(PDB_VariantType::UInt8) {
433 explicit Variant(uint16_t V) : Type(PDB_VariantType::UInt16)
    [all...]
PDBExtras.h 25 raw_ostream &operator<<(raw_ostream &OS, const PDB_VariantType &Value);
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIARawSymbol.cpp 35 Result.Type = PDB_VariantType::Int8;
39 Result.Type = PDB_VariantType::Int16;
43 Result.Type = PDB_VariantType::Int32;
47 Result.Type = PDB_VariantType::Int64;
51 Result.Type = PDB_VariantType::UInt8;
55 Result.Type = PDB_VariantType::UInt16;
59 Result.Type = PDB_VariantType::UInt32;
63 Result.Type = PDB_VariantType::UInt64;
67 Result.Type = PDB_VariantType::Bool;
71 Result.Type = PDB_VariantType::Single
    [all...]

Completed in 65 milliseconds