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

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
ExegesisEmitter.cpp 182 std::vector<Record *> Bindings =
184 assert(!Bindings.empty() && "there must be at least one binding");
185 llvm::sort(Bindings, [](const Record *L, const Record *R) {
191 for (Record *Binding : Bindings) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 299 if (Bindings.empty())
300 Bindings.emplace_back();
301 for (BoundNodesMap &Binding : Bindings)
306 void addMatch(const BoundNodesTreeBuilder &Bindings);
315 Bindings.erase(std::remove_if(Bindings.begin(), Bindings.end(), Predicate),
316 Bindings.end());
317 return !Bindings.empty();
322 return Bindings < Other.Bindings
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 158 // This flag indicates whether the current bindings are within the analysis
163 // are still relevant. This flag never gets changed when the bindings are
165 // (as if it's the same bindings but a different loading procedure)
463 // overwrite existing bindings.
473 // As a temporary mitigation we don't create bindings for empty bases.
493 /// \returns The updated store bindings, or \c None if binding non-lazily
512 /// Clears out all bindings in the given region and assigns a new value
555 // Default bindings are always applied over a base region so look up the
580 /// Get bindings for the values in a struct and return a CompoundVal, used
589 /// Used to lazily generate derived symbols for bindings that are define
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 6265 SmallVector<DecompositionDeclarator::Binding, 32> Bindings;
6267 if (!Bindings.empty()) {
6293 Bindings.push_back({Tok.getIdentifierInfo(), Tok.getLocation()});
6303 if (Bindings.empty())
6309 return D.setDecompositionBindings(T.getOpenLocation(), Bindings,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 1539 NodeArray Bindings;
1542 : Node(KStructuredBindingName), Bindings(Bindings_) {}
1544 template<typename Fn> void match(Fn F) const { F(Bindings); }
1548 Bindings.printWithComma(S);
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 1713 /// The bindings.
1714 Binding *Bindings;
1722 : Bindings(nullptr), NumBindings(0), DeleteBindings(false) {}
1727 delete[] Bindings;
1733 delete[] Bindings;
1734 Bindings = nullptr;
1739 ArrayRef<Binding> bindings() const { function in class:clang::DecompositionDeclarator
1740 return llvm::makeArrayRef(Bindings, NumBindings);
2075 // structured bindings, but it does.
2201 /// Set the decomposition bindings for this declarator
    [all...]

Completed in 48 milliseconds