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

  /src/external/bsd/atf/dist/atf-c++/
utils.hpp 53 template< typename Collection >
55 grep_collection(const std::string& regexp, const Collection& collection)
57 for (typename Collection::const_iterator iter = collection.begin();
58 iter != collection.end(); ++iter) {
  /src/external/bsd/kyua-cli/dist/utils/text/
operations.hpp 49 template< typename Collection >
50 std::string join(const Collection&, const std::string&);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
LineTable.h 119 typedef std::vector<gsym::LineEntry> Collection;
120 Collection Lines; ///< All line entries in the line table.
223 Collection::const_iterator begin() const { return Lines.begin(); }
224 Collection::const_iterator end() const { return Lines.end(); }
Range.h 86 using Collection = std::vector<AddressRange>;
87 Collection Ranges;
103 Collection::const_iterator begin() const { return Ranges.begin(); }
104 Collection::const_iterator end() const { return Ranges.end(); }
  /src/external/mpl/bind/dist/bin/tests/system/ixfr_nonminimal/ans2/
ans.py 14 from collections.abc import AsyncGenerator, Collection, Iterable
91 def answers(self) -> Iterable[Collection[dns.rrset.RRset]]:
114 def answer(self) -> Collection[dns.rrset.RRset]:
  /src/external/mpl/bind/dist/bin/tests/system/ixfr_nonminimal/ans4/
ans.py 14 from collections.abc import AsyncGenerator, Collection, Iterable
91 def answers(self) -> Iterable[Collection[dns.rrset.RRset]]:
114 def answer(self) -> Collection[dns.rrset.RRset]:
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/
CheckerRegistryData.h 179 binaryFind(CheckerOrPackageInfoList &Collection, StringRef FullName) {
184 assert(llvm::is_sorted(Collection, CheckerOrPackageFullNameLT{}) &&
188 return llvm::lower_bound(Collection, CheckerOrPackage(FullName),
  /src/external/mpl/bind/dist/bin/tests/system/ixfr/ans2/
ans.py 14 from collections.abc import AsyncGenerator, Collection, Iterable
91 def answers(self) -> Iterable[Collection[dns.rrset.RRset]]:
114 def answer(self) -> Collection[dns.rrset.RRset]:
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
CheckerRegistry.cpp 111 // Sort checkers for efficient collection.
391 static void insertOptionToCollection(StringRef FullName, T &Collection,
395 auto It = binaryFind(Collection, FullName);
396 assert(It != Collection.end() &&
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
InputFile.cpp 378 // If the collection was already initialized, we should have just returned it
381 TypeCollectionPtr &Collection = (Kind == kIds) ? Ids : Types;
388 Collection =
390 return *Collection;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-graph-diff.cpp 296 template <typename T> static bool containsNullptr(const T &Collection) {
297 return llvm::is_contained(Collection, nullptr);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
JSON.h 166 template <typename Collection> explicit Array(const Collection &C) {
230 /// json::ary(Collection) converts all items in a collection to Values.
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 108 std::map<std::pair<StringRef, uint64_t>, StringRef> &Collection) {
120 Collection[std::make_pair(SymName, Offset - SymOffset)] = *RelocSymName;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjC.cpp 1753 // Emit the collection pointer. In ARC, we do a retain.
1754 llvm::Value *Collection;
1756 Collection = EmitARCRetainScalarExpr(S.getCollection());
1759 EmitObjCConsumeObject(S.getCollection()->getType(), Collection);
1761 Collection = EmitScalarExpr(S.getCollection());
1765 // collection object.
1792 FastEnumSel, Collection, Args);
1802 // If the limit pointer was zero to begin with, the collection is
1860 Builder.CreateBitCast(Collection, ObjCIdType);
1912 // Before using an item from the collection, check that the implicit cas
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 1817 ExprResult Collection;
1897 Collection = ParseExpression();
1933 Collection = ParseExpression();
2056 Collection.get(),
  /src/external/bsd/kyua-cli/dist/store/
schema_v1.sql 192 -- Collection of output files of the test case.
schema_v2.sql 242 -- Collection of output files of the test case.
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 2023 if (const Stmt *Collection = S->getCollection())
2024 Visit(Collection);
2151 /// In an Objective C collection iteration statement:
2169 Sema::CheckObjCForCollectionOperand(SourceLocation forLoc, Expr *collection) {
2170 if (!collection)
2173 ExprResult result = CorrectDelayedTyposInExpr(collection);
2176 collection = result.get();
2179 if (collection->isTypeDependent()) return collection;
2182 result = DefaultFunctionArrayLvalueConversion(collection);
    [all...]
TreeTransform.h 2278 Expr *Collection,
2283 Collection,
2338 // collection, treat this as an Objective-C fast enumeration loop.
8066 // Transform the collection expression.
8067 ExprResult Collection = getDerived().TransformExpr(S->getCollection());
8068 if (Collection.isInvalid())
8079 Collection.get() == S->getCollection() &&
8086 Collection.get(),
  /src/external/gpl3/binutils/dist/gprofng/gp-display-html/
gp-display-html.in 10253 push @experiment_table_2_def, { name => "Data collection duration", key => "data_collection_duration"};
12334 # Data Collection Duration: 1.812441219
12336 my $data_collection_duration_regex = '\s*Data Collection Duration:\s+(.+)';
  /src/external/gpl3/binutils.old/dist/gprofng/gp-display-html/
gp-display-html.in 10253 push @experiment_table_2_def, { name => "Data collection duration", key => "data_collection_duration"};
12334 # Data Collection Duration: 1.812441219
12336 my $data_collection_duration_regex = '\s*Data Collection Duration:\s+(.+)';
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4691 Expr *collection);
4693 Stmt *First, Expr *collection,
4712 SourceLocation ColonLoc, Expr *Collection,

Completed in 112 milliseconds