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

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
TpiHashing.cpp 31 bool Scoped = bool(Opts & ClassOptions::Scoped);
35 if (!ForwardRef && !Scoped && !IsAnon)
69 bool Scoped = bool(Opts & ClassOptions::Scoped);
72 Scoped ? Deserialized.getUniqueName() : Deserialized.getName();
NativeTypeUDT.cpp 67 dumpSymbolField(OS, "scoped", isScoped(), Indent);
203 return (Tag->Options & ClassOptions::Scoped) != ClassOptions::None;
NativeTypeEnum.cpp 157 dumpSymbolField(OS, "scoped", isScoped(), Indent);
337 return bool(Record->getOptions() & codeview::ClassOptions::Scoped);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 211 Scoped = 0x0100,
TypeRecord.h 447 return (Options & ClassOptions::Scoped) != ClassOptions::None;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
EnumTables.cpp 320 CV_ENUM_CLASS_ENT(ClassOptions, Scoped),
TypeDumpVisitor.cpp 40 ENUM_ENTRY(ClassOptions, Scoped),
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.cpp 71 PUSH_FLAG(ClassOptions, Scoped, Options, "scoped");
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLTypes.cpp 375 IO.bitSetCase(Options, "Scoped", ClassOptions::Scoped);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Decl.h 1230 /// Returns true for file scoped variable declaration.
3589 bool Scoped, bool ScopedUsingClassTag, bool Fixed);
3608 /// True if this tag declaration is a scoped enumeration. Only
3610 void setScoped(bool Scoped = true) { EnumDeclBits.IsScoped = Scoped; }
3612 /// If this tag declaration is a scoped enum,
3613 /// then this is true if the scoped enum was declared using the class
3615 /// associated if this tag declaration is not a scoped enum.
3746 /// Returns true if this is a C++11 scoped enumeration.
3749 /// Returns true if this is a C++11 scoped enumeration
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 1694 // the enum-specifier. Each scoped enumerator is declared in the
4368 bool Scoped, bool ScopedUsingClassTag, bool Fixed)
4370 assert(Scoped || !ScopedUsingClassTag);
4374 setScoped(Scoped);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 1482 // MSVC does not emit UDTs for typedefs that are scoped to classes.
2065 // Put the Scoped flag on function-local types. MSVC puts this flag for enum
2071 CO |= ClassOptions::Scoped;
2076 CO |= ClassOptions::Scoped;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
typecons.d 28 $(LREF scoped)
8299 The class destructor will be called when the result of `scoped()` is
8302 Scoped class instances can be embedded in a parent `class` or `struct`,
8303 just like a child struct instance. Scoped member variables must have
8304 type `typeof(scoped!Class(args))`, and be initialized with a call to
8305 scoped. See below for an example.
8309 are no pointers to it. As such, it is illegal to move a scoped object.
8311 template scoped(T)
8319 static struct Scoped
8327 // As `Scoped` can be unaligned moved in memory class instance should be moved accordingly
    [all...]

Completed in 38 milliseconds