HomeSort by: relevance | last modified time | path
    Searched defs:IsExtern (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
InterpBlock.h 41 bool IsStatic = false, bool IsExtern = false)
42 : DeclID(DeclID), IsStatic(IsStatic), IsExtern(IsExtern), Desc(Desc) {}
44 Block(Descriptor *Desc, bool IsStatic = false, bool IsExtern = false)
45 : DeclID((unsigned)-1), IsStatic(IsStatic), IsExtern(IsExtern),
53 bool isExtern() const { return IsExtern; }
83 Block(Descriptor *Desc, bool IsExtern, bool IsStatic, bool IsDead)
84 : IsStatic(IsStatic), IsExtern(IsExtern), IsDead(true), Desc(Desc) {
    [all...]
Program.cpp 51 /*isExtern=*/false);
134 if (auto Idx = createGlobal(PD, Ty, /*isStatic=*/true, /*isExtern=*/true)) {
142 bool IsStatic, IsExtern;
145 IsExtern = !Var->getAnyInitializer();
148 IsExtern = true;
150 if (auto Idx = createGlobal(VD, VD->getType(), IsStatic, IsExtern)) {
159 return createGlobal(E, E->getType(), /*isStatic=*/true, /*isExtern=*/false);
163 bool IsStatic, bool IsExtern) {
180 Global(getCurrentDecl(), Desc, IsStatic, IsExtern);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFI386.h 56 bool IsExtern = Section == Obj.section_end();
67 IsExtern = false;
68 } else if (!IsExtern) {
104 if (IsExtern) {
RuntimeDyldCOFFThumb.h 106 bool IsExtern = Section == Obj.section_end();
114 IsExtern = false;
115 } else if (!IsExtern) {
125 if (IsExtern) {
RuntimeDyldCOFFX86_64.h 205 bool IsExtern = SecI == Obj.section_end();
223 assert(IsExtern && "DLLImport not marked extern?");
227 IsExtern = false;
228 } else if (!IsExtern) {
249 if (IsExtern)
270 if (IsExtern) {
RuntimeDyldCOFFAArch64.h 165 bool IsExtern = Section == Obj.section_end();
180 IsExtern = false;
181 } else if (!IsExtern) {
202 if (IsExtern)
246 if (IsExtern) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 117 unsigned IsExtern = 0;
141 IsExtern = 1;
359 (IsExtern << 27) | (Type << 28);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 1524 bool IsExtern = Value.SymbolName || SymType == SymbolRef::ST_Unknown;
1525 if (!IsExtern) {
1552 if (IsExtern || (AbiVariant == 2 && Value.SectionID != SectionID) ||
1609 if (IsExtern || (AbiVariant == 2 && Value.SectionID != SectionID)) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
MachODumper.cpp 548 bool IsExtern = !IsScattered && Obj->getPlainRelocationExternal(RE);
551 if (IsExtern) {
576 const char *Kind = IsExtern ? "Symbol" : "Section";

Completed in 38 milliseconds