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

  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVELFStreamer.h 19 enum class AttributeType { Hidden, Numeric, Text, NumericAndText };
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMSubtarget.cpp 51 cl::init(true), cl::Hidden);
60 IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT),
73 cl::init(false), cl::Hidden);
76 cl::init(false), cl::Hidden);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
RegBankSelect.cpp 55 cl::desc("Mode of the RegBankSelect pass"), cl::Hidden, cl::Optional,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetPassConfig.cpp 57 EnableIPRA("enable-ipra", cl::init(false), cl::Hidden,
60 static cl::opt<bool> DisablePostRASched("disable-post-ra", cl::Hidden,
62 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
64 static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
66 static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden,
69 cl::Hidden, cl::desc("Disable probability-driven block placement"));
71 cl::Hidden, cl::desc("Collect probability-driven block placement stats"));
72 static cl::opt<bool> DisableSSC("disable-ssc", cl::Hidden,
74 static cl::opt<bool> DisableMachineDCE("disable-machine-dce", cl::Hidden,
76 static cl::opt<bool> DisableEarlyIfConversion("disable-early-ifcvt", cl::Hidden,
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Module.h 313 /// All of the names in this module are hidden.
314 Hidden,
  /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
llvm.ml 75 | Hidden
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
CommandLine.h 142 NotHidden = 0x00, // Option included in -help & -help-hidden
143 Hidden = 0x01, // -help doesn't, but -help-hidden does
144 ReallyHidden = 0x02 // Neither -help nor -help-hidden show this arg
341 enum OptionHidden Hidden)
343 HiddenFlag(Hidden), Formatting(NormalFormatting), Misc(0),
1914 : Option(Optional, Hidden), AliasFor(nullptr) {
1942 /// -help or -help-hidden option had been given on the command line.
1944 /// \param Hidden if true will print hidden option
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 4040 assert(Owner->NameVisibility != Module::Hidden && "nothing to make visible?");
4078 HiddenNamesMapType::iterator Hidden = HiddenNamesMap.find(Mod);
4079 if (Hidden != HiddenNamesMap.end()) {
4080 auto HiddenNames = std::move(*Hidden);
4081 HiddenNamesMap.erase(Hidden);
4084 "making names visible added hidden names");
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplate.cpp 1910 NamedDecl *Hidden = nullptr;
1911 if (SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
1914 auto *Tmpl = cast<CXXRecordDecl>(Hidden)->getDescribedClassTemplate();
1917 makeMergedDefinitionVisible(Hidden);
8523 NamedDecl *Hidden = nullptr;
8524 if (Def && SkipBody && !hasVisibleDefinition(Def, &Hidden)) {
8527 makeMergedDefinitionVisible(Hidden);
SemaDecl.cpp 1170 // Check for a tag type hidden by a non-type decl in a few cases where it
2170 // Non-hidden declarations are never ignored.
2300 NamedDecl *Hidden = nullptr;
2303 !hasVisibleDefinition(OldTag, &Hidden)) {
2314 makeMergedDefinitionVisible(Hidden);
3119 /// (nor a hidden tag declaration).
3132 // name is hidden (3.3.10).
3951 // FIXME: Check visibility. New is hidden but has a complete type. If New
4333 // The previous definition is hidden, and multiple definitions are
15860 // hidden declaration so that we don't get ambiguity errors when using
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 2158 /// Make a merged definition of an existing hidden definition \p ND
2196 NamedDecl *Hidden;
2197 return hasVisibleDefinition(const_cast<NamedDecl*>(D), &Hidden);
2905 /// is actually hidden within a module that we know about but the user

Completed in 147 milliseconds