OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ListTy
(Results
1 - 6
of
6
) sorted by null
/external/llvm/include/llvm/ADT/
ImmutableList.h
141
typedef ImmutableListImpl<T>
ListTy
;
142
typedef FoldingSet<
ListTy
> CacheTy;
171
const
ListTy
* TailImpl = Tail.getInternalPointer();
172
ListTy
::Profile(ID, Head, TailImpl);
173
ListTy
* L = Cache.FindNodeOrInsertPos(ID, InsertPos);
178
L = (
ListTy
*) A.Allocate<
ListTy
>();
179
new (L)
ListTy
(Head, TailImpl);
/external/clang/lib/ARCMigrate/
Internals.h
26
typedef std::list<StoredDiagnostic>
ListTy
;
27
ListTy
List;
39
typedef
ListTy
::const_iterator iterator;
ARCMT.cpp
33
ListTy
::iterator I = List.begin();
42
ListTy
::iterator eraseS = I++;
62
ListTy
::const_iterator I = List.begin();
80
for (
ListTy
::const_iterator I = List.begin(), E = List.end(); I != E; ++I)
85
for (
ListTy
::const_iterator I = List.begin(), E = List.end(); I != E; ++I)
/external/llvm/lib/TableGen/
Record.cpp
93
if (!
ListTy
)
94
ListTy
= new ListRecTy(this);
95
return
ListTy
;
300
if(const ListRecTy*
ListTy
= dyn_cast<ListRecTy>(RHS))
301
return
ListTy
->getElementType()->typeIsConvertibleTo(Ty);
[
all
...]
/external/llvm/include/llvm/TableGen/
Record.h
84
ListRecTy *
ListTy
;
90
RecTy(RecTyKind K) : Kind(K),
ListTy
(0) {}
[
all
...]
/external/clang/lib/Sema/
SemaLookup.cpp
92
typedef SmallVector<UnqualUsingEntry, 8>
ListTy
;
94
ListTy
list;
197
typedef
ListTy
::const_iterator const_iterator;
[
all
...]
Completed in 96 milliseconds