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

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
EnumTables.cpp 352 CV_ENUM_CLASS_ENT(PointerKind, Near16),
353 CV_ENUM_CLASS_ENT(PointerKind, Far16),
354 CV_ENUM_CLASS_ENT(PointerKind, Huge16),
355 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegment),
356 CV_ENUM_CLASS_ENT(PointerKind, BasedOnValue),
357 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegmentValue),
358 CV_ENUM_CLASS_ENT(PointerKind, BasedOnAddress),
359 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegmentAddress),
360 CV_ENUM_CLASS_ENT(PointerKind, BasedOnType),
361 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSelf)
    [all...]
TypeDumpVisitor.cpp 70 ENUM_ENTRY(PointerKind, Near16),
71 ENUM_ENTRY(PointerKind, Far16),
72 ENUM_ENTRY(PointerKind, Huge16),
73 ENUM_ENTRY(PointerKind, BasedOnSegment),
74 ENUM_ENTRY(PointerKind, BasedOnValue),
75 ENUM_ENTRY(PointerKind, BasedOnSegmentValue),
76 ENUM_ENTRY(PointerKind, BasedOnAddress),
77 ENUM_ENTRY(PointerKind, BasedOnSegmentAddress),
78 ENUM_ENTRY(PointerKind, BasedOnType),
79 ENUM_ENTRY(PointerKind, BasedOnSelf)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.cpp 164 static std::string pointerKind(PointerKind Kind) {
166 RETURN_CASE(PointerKind, Near16, "ptr16");
167 RETURN_CASE(PointerKind, Far16, "far ptr16");
168 RETURN_CASE(PointerKind, Huge16, "huge ptr16");
169 RETURN_CASE(PointerKind, BasedOnSegment, "segment based");
170 RETURN_CASE(PointerKind, BasedOnValue, "value based");
171 RETURN_CASE(PointerKind, BasedOnSegmentValue, "segment value based");
172 RETURN_CASE(PointerKind, BasedOnAddress, "address based");
173 RETURN_CASE(PointerKind, BasedOnSegmentAddress, "segment address based")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLTypes.cpp 57 LLVM_YAML_DECLARE_ENUM_TRAITS(PointerKind)
264 void ScalarEnumerationTraits<PointerKind>::enumeration(IO &IO,
265 PointerKind &Kind) {
266 IO.enumCase(Kind, "Near16", PointerKind::Near16);
267 IO.enumCase(Kind, "Far16", PointerKind::Far16);
268 IO.enumCase(Kind, "Huge16", PointerKind::Huge16);
269 IO.enumCase(Kind, "BasedOnSegment", PointerKind::BasedOnSegment);
270 IO.enumCase(Kind, "BasedOnValue", PointerKind::BasedOnValue);
271 IO.enumCase(Kind, "BasedOnSegmentValue", PointerKind::BasedOnSegmentValue);
272 IO.enumCase(Kind, "BasedOnAddress", PointerKind::BasedOnAddress)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OSLog.h 34 // WideStringKind, or PointerKind.
43 PointerKind,
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 287 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM,
292 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM,
299 PointerKind getPointerKind() const {
300 return static_cast<PointerKind>((Attrs >> PointerKindShift) &
351 void setAttrs(PointerKind PK, PointerMode PM, PointerOptions PO,
357 static uint32_t calcAttrs(PointerKind PK, PointerMode PM, PointerOptions PO,
CodeView.h 331 enum class PointerKind : uint8_t {
  /src/external/apache2/llvm/dist/clang/lib/AST/
OSLog.cpp 42 return OSLogBufferItem::PointerKind;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 1761 PointerKind PK =
1762 Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32;
1824 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64
1825 : PointerKind::Near32;
2510 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64
2511 : PointerKind::Near32;
2566 getPointerSizeInBytes() == 8 ? PointerKind::Near6
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 4233 SimplePointerKind PointerKind,
4238 if (PointerKind == SimplePointerKind::Array) {
4242 << static_cast<unsigned>(PointerKind);
4252 Diag << static_cast<unsigned>(PointerKind);
4266 checkNullabilityConsistency(Sema &S, SimplePointerKind pointerKind,
4281 if (pointerKind == SimplePointerKind::Array)
4290 fileNullability.PointerKind = static_cast<unsigned>(pointerKind);
4297 emitNullabilityConsistencyWarning(S, pointerKind, pointerLoc, pointerEndLoc);
4322 auto kind = static_cast<SimplePointerKind>(fileNullability.PointerKind);
    [all...]
SemaDeclAttr.cpp 5069 IdentifierInfo *PointerKind = AL.getArgAsIdent(0)->Ident;
5075 S.Context, AL, PointerKind, MatchingCTypeLoc, AL.getLayoutCompatible(),
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 253 uint8_t PointerKind;

Completed in 65 milliseconds