OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CurNode
(Results
1 - 3
of
3
) sorted by null
/external/clang/include/clang/Rewrite/
RewriteRope.h
107
///
CurNode
- The current B+Tree node that we are inspecting.
108
const void /*RopePieceBTreeLeaf*/ *
CurNode
;
118
RopePieceBTreeIterator() :
CurNode
(0), CurPiece(0), CurChar(0) {}
/external/llvm/lib/CompilerDriver/
CompilationGraph.cpp
178
const Node*
CurNode
= StartNode;
181
Tool* CurTool =
CurNode
->ToolPtr.getPtr();
190
if (int ret = CurTool->GenerateAction(CurAction, In,
CurNode
->HasChildren(),
201
const Edge* Edg = ChooseEdge(
CurNode
->OutEdges, InLangs,
CurNode
->Name());
205
CurNode
= getNode(Edg->ToolName());
206
if (
CurNode
== 0)
380
const Node*
CurNode
= *B;
381
JoinTool* JT = &static_cast<JoinTool&>(*
CurNode
->ToolPtr.getPtr());
389
if (int ret = JT->GenerateAction(CurAction,
CurNode
->HasChildren()
[
all
...]
/external/llvm/include/llvm/ADT/
ilist.h
410
NodeTy *
CurNode
= where.getNodePtrUnchecked();
411
NodeTy *PrevNode = this->getPrev(
CurNode
);
412
this->setNext(New,
CurNode
);
415
if (
CurNode
!= Head) // Is PrevNode off the beginning of the list?
419
this->setPrev(
CurNode
, New);
Completed in 51 milliseconds