OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:astvector
(Results
1 - 5
of
5
) sorted by null
/external/clang/unittests/AST/
ASTVectorTest.cpp
10
// Unit tests for the
ASTVector
container.
16
#include "clang/AST/
ASTVector
.h"
48
ASTVector
<int> V;
53
ASTVector
<double> V;
69
ASTVector
<double> V;
/external/clang/include/clang/AST/
ASTUnresolvedSet.h
18
#include "clang/AST/
ASTVector
.h"
25
struct DeclsTy :
ASTVector
<DeclAccessPair> {
27
DeclsTy(ASTContext &C, unsigned N) :
ASTVector
<DeclAccessPair>(C, N) {}
ASTVector.h
1
//===-
ASTVector
.h - Vector that uses ASTContext for allocation --*- C++ -*-=//
10
// This file provides
ASTVector
, a vector ADT whose contents are
33
class
ASTVector
{
48
ASTVector
() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {}
50
ASTVector
(
ASTVector
&&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) {
56
ASTVector
(const ASTContext &C, unsigned N)
61
ASTVector
&operator=(
ASTVector
&&RHS) {
62
ASTVector
O(std::move(RHS))
[
all
...]
RecordLayout.h
74
ASTVector
<uint64_t> FieldOffsets;
Expr.h
18
#include "clang/AST/
ASTVector
.h"
[
all
...]
Completed in 282 milliseconds