Home
last modified time | relevance | path

Searched refs:BlockNode (Results 1 – 22 of 22) sorted by relevance

/external/llvm/include/llvm/Analysis/
DBlockFrequencyInfoImpl.h180 struct BlockNode {
184 bool operator==(const BlockNode &X) const { return Index == X.Index; }
185 bool operator!=(const BlockNode &X) const { return Index != X.Index; }
186 bool operator<=(const BlockNode &X) const { return Index <= X.Index; }
187 bool operator>=(const BlockNode &X) const { return Index >= X.Index; }
188 bool operator<(const BlockNode &X) const { return Index < X.Index; }
189 bool operator>(const BlockNode &X) const { return Index > X.Index; }
191 BlockNode() : Index(UINT32_MAX) {}
192 BlockNode(IndexType Index) : Index(Index) {}
209 typedef SmallVector<std::pair<BlockNode, BlockMass>, 4> ExitMap;
[all …]
/external/chromium_org/tools/gn/
Dfunctions.h15 class BlockNode; variable
40 BlockNode* block,
63 BlockNode* block,
72 BlockNode* block,
105 BlockNode* block,
130 BlockNode* block,
179 BlockNode* block,
228 BlockNode* block,
253 BlockNode* block,
262 BlockNode* block,
[all …]
Dfunctions_target.cc31 BlockNode* block, in ExecuteGenericTarget()
149 BlockNode* block, in RunAction()
229 BlockNode* block, in RunActionForEach()
308 BlockNode* block, in RunExecutable()
348 BlockNode* block, in RunGroup()
377 BlockNode* block, in RunSharedLibrary()
424 BlockNode* block, in RunSourceSet()
454 BlockNode* block, in RunStaticLibrary()
Dparse_tree.h19 class BlockNode; variable
77 virtual const BlockNode* AsBlock() const;
214 class BlockNode : public ParseNode {
217 explicit BlockNode(bool has_scope);
218 virtual ~BlockNode();
220 virtual const BlockNode* AsBlock() const OVERRIDE;
249 DISALLOW_COPY_AND_ASSIGN(BlockNode);
274 const BlockNode* if_true() const { return if_true_.get(); } in if_true()
275 void set_if_true(scoped_ptr<BlockNode> t) { in set_if_true()
291 scoped_ptr<BlockNode> if_true_; // Always non-null.
[all …]
Dparse_tree.cc43 const BlockNode* ParseNode::AsBlock() const { return NULL; } in AsBlock()
239 BlockNode::BlockNode(bool has_scope) : has_scope_(has_scope) { in BlockNode() function in BlockNode
242 BlockNode::~BlockNode() { in ~BlockNode()
246 const BlockNode* BlockNode::AsBlock() const { in AsBlock()
250 Value BlockNode::Execute(Scope* containing_scope, Err* err) const { in Execute()
264 LocationRange BlockNode::GetRange() const { in GetRange()
275 Err BlockNode::MakeErrorDescribing(const std::string& msg, in MakeErrorDescribing()
280 void BlockNode::Print(std::ostream& out, int indent) const { in Print()
287 Value BlockNode::ExecuteBlockInScope(Scope* our_scope, Err* err) const { in ExecuteBlockInScope()
336 const BlockNode* if_false_block = if_false_->AsBlock(); in Execute()
Dtemplate.h14 class BlockNode; variable
41 BlockNode* block,
Dparser.cc289 scoped_ptr<BlockNode> block; in IdentifierOrCall()
426 scoped_ptr<BlockNode> file(new BlockNode(false)); in ParseFile()
472 scoped_ptr<BlockNode> Parser::ParseBlock() { in ParseBlock()
476 return scoped_ptr<BlockNode>(); in ParseBlock()
477 scoped_ptr<BlockNode> block(new BlockNode(true)); in ParseBlock()
488 return scoped_ptr<BlockNode>(); in ParseBlock()
522 } else if (const BlockNode* block = root->AsBlock()) { in TraverseOrder()
Dfunction_template.cc151 BlockNode* block, in RunTemplate()
Dfunction_set_defaults.cc46 BlockNode* block, in RunSetDefaults()
Dfunction_toolchain.cc285 BlockNode* block, in RunToolchain()
722 BlockNode* block, in RunTool()
889 BlockNode* block, in RunToolchainArgs()
Dfunction_foreach.cc91 const BlockNode* block = function->block(); in RunForEach()
Dimport_manager.cc24 const BlockNode* block = node->AsBlock(); in UncachedImport()
Dtemplate.cc30 BlockNode* block, in Invoke()
Dcommand_format.cc148 const BlockNode* block = root->AsBlock(); in Block()
212 } else if (const BlockNode* block = root->AsBlock()) { in Expr()
Dfunctions.cc51 const BlockNode* block, in FillTargetBlockScope()
288 BlockNode* block, in RunDeclareArgs()
723 BlockNode* block, in RunFunction()
Dparser.h75 scoped_ptr<BlockNode> ParseBlock();
Dloader_unittest.cc101 BlockNode block(false); // Default response. in IssueAllPending()
Dloader.cc303 const BlockNode* root_block = root->AsBlock(); in BackgroundLoadBuildConfig()
/external/llvm/lib/Analysis/
DBlockFrequencyInfoImpl.cpp56 typedef BlockFrequencyInfoImplBase::BlockNode BlockNode; typedef
110 void Distribution::add(const BlockNode &Node, uint64_t Amount, in add()
165 typedef DenseMap<BlockNode::IndexType, Weight> HashTable; in combineWeightsByHashing()
263 const BlockNode &Pred, in addToDist()
264 const BlockNode &Succ, in addToDist()
269 auto isLoopHeader = [&OuterLoop](const BlockNode &Node) { in addToDist()
273 BlockNode Resolved = Working[Succ.Index].getResolvedNode(); in addToDist()
368 for (const BlockNode &M : Loop.Nodes) { in packageLoop()
376 void BlockFrequencyInfoImplBase::distributeMass(const BlockNode &Source, in distributeMass()
386 auto debugAssign = [&](const BlockNode &T, const BlockMass &M, in distributeMass()
[all …]
/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
Dhandlebars-1.0.0.beta.6.js126 case 8: this.$ = new yy.BlockNode($$[$0-2], $$[$0-1], $$[$0])
560 Handlebars.AST.BlockNode = function(mustache, program, close) { class in Handlebars.AST
/external/chromium_org/third_party/cython/src/Cython/Compiler/
DNodes.py242 if isinstance(self, BlockNode):
357 class BlockNode(object): class
1314 class CppClassNode(CStructOrUnionDefNode, BlockNode):
1478 class FuncDefNode(StatNode, BlockNode):
3959 class ClassDefNode(StatNode, BlockNode):
DModuleNode.py41 class ModuleNode(Nodes.Node, Nodes.BlockNode):