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

  /src/external/apache2/llvm/dist/clang/tools/diagtool/
ShowEnabledWarnings.cpp 114 std::vector<PrettyDiag> Active;
131 Active.push_back(PrettyDiag(DR.getName(), WarningOpt, DiagLevel));
135 for (const PrettyDiag &PD : Active) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
ComputeDependence.cpp 191 auto Active = E->getLHS()->getDependence();
194 std::swap(Active, Inactive);
195 // Take type- and value- dependency from the active branch. Propagate all
197 return (Active & ExprDependence::TypeValue) |
198 ((Cond | Active | Inactive) & ~ExprDependence::TypeValue);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGLoopInfo.h 100 /// Get the set of attributes active for this loop.
290 bool hasInfo() const { return !Active.empty(); }
293 const LoopInfo &getInfo() const { return *Active.back(); }
296 /// Stack of active loops.
297 llvm::SmallVector<std::unique_ptr<LoopInfo>, 4> Active;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SuffixTree.h 188 ActiveState Active;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ShadowStackGCLowering.cpp 173 bool Active = false;
176 Active = true;
180 if (!Active)
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPMacroExpansion.cpp 239 for (auto *Active : Info.ActiveModuleMacros) {
240 auto *NewMI = Active->getMacroInfo();
254 IsSystemMacro &= Active->getOwningModule()->IsSystem ||
289 llvm::DenseSet<ModuleMacro*> Active;
291 Active.insert(MM);
301 if (Active.count(MM))
302 llvm::errs() << " active";
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
RAIIObjectsForParser.h 48 bool Active;
56 Active = true;
58 Active = false;
63 State(Other.State), Active(Other.Active) {
64 Other.Active = false;
69 assert(Active && "trying to end an inactive suppression");
71 Active = false;
75 assert(!Active && "redelaying without having ended first");
82 if (Active) done()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiate.cpp 449 auto &Active = CodeSynthesisContexts.back();
450 if (!Active.isInstantiationRecord()) {
455 InNonInstantiationSFINAEContext = Active.SavedInNonInstantiationSFINAEContext;
480 auto &Active = SemaRef.CodeSynthesisContexts.back();
481 if (Active.Entity)
483 {Active.Entity->getCanonicalDecl(), Active.Kind});
527 Active = CodeSynthesisContexts.rbegin(),
529 Active != ActiveEnd;
530 ++Active, ++InstantiationIdx)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.cpp 2524 bool Active;
2541 if (!Suffix.Active)
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/inc/
smu74_discrete.h 747 uint8_t Active;
smu75_discrete.h 783 uint8_t Active;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Verifier.cpp 2352 SmallPtrSet<Instruction *, 8> Active;
2357 Active.insert(PredPad);
2361 if (Active.count(SuccPad)) {
2384 Active.insert(PredPad);
2386 // Each node only has one successor, so we've walked all the active
2388 Active.clear();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 91 Prefix.Active = true;
98 Prefix.Active = true;
110 Prefix.Active = true;
125 PrefixInfo() : Active(false), Predicated(false) {}
126 bool isActive() const { return Active; }
139 bool Active;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 436 /// Stack of active SEH __finally scopes. Can be empty.
781 /// function, block, and method scopes that are currently active.
1241 /// The number of active cleanup objects when we entered
1489 /// Cause the active diagnostic on the DiagosticsEngine to be
1593 // If we aren't active, there is nothing to do.
4630 bool Active;
4631 FunctionScopeRAII(Sema &S) : S(S), Active(true) {}
4633 if (Active)
4636 void disable() { Active = false; }
8706 /// List of active code synthesis contexts
    [all...]

Completed in 58 milliseconds