OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MaxDepth
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/AST/
StmtDumper.cpp
33
///
MaxDepth
- When doing a normal dump (not dumpAll) we only want to dump
36
unsigned
MaxDepth
;
44
StmtDumper(SourceManager *sm, raw_ostream &os, unsigned
maxDepth
)
45
: SM(sm), OS(os), IndentLevel(0-1),
MaxDepth
(
maxDepth
) {
52
if (
MaxDepth
== 0) return;
/external/llvm/lib/Analysis/
ValueTracking.cpp
33
const unsigned
MaxDepth
= 6;
64
assert(Depth <=
MaxDepth
&& "Limit Search Depth");
147
if (Depth ==
MaxDepth
|| Mask == 0)
645
if (Depth <
MaxDepth
- 1 && !KnownZero && !KnownOne) {
661
KnownZero2, KnownOne2, TD,
MaxDepth
-1);
731
if (Depth++ ==
MaxDepth
)
770
if (Depth++ ==
MaxDepth
)
[
all
...]
/external/clang/include/clang/Parse/
Parser.h
452
const unsigned
MaxDepth
;
468
: Kind(k), P(p), Cleanup(false),
MaxDepth
(256) {
[
all
...]
Completed in 555 milliseconds