Home
last modified time | relevance | path

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

/external/chromium_org/tools/gn/
Dfunctions.h15 class BlockNode; variable
40 BlockNode* block,
69 BlockNode* block,
91 BlockNode* block,
99 BlockNode* block,
121 BlockNode* block,
129 BlockNode* block,
172 BlockNode* block,
194 BlockNode* block,
202 BlockNode* block,
[all …]
Dfunctions_target.cc30 BlockNode* block, in ExecuteGenericTarget()
78 BlockNode* block, in RunComponent()
249 BlockNode* block, in RunCustom()
271 BlockNode* block, in RunExecutable()
310 BlockNode* block, in RunGroup()
337 BlockNode* block, in RunSharedLibrary()
382 BlockNode* block, in RunSourceSet()
410 BlockNode* block, in RunStaticLibrary()
432 BlockNode* block, in RunTest()
Dparse_tree.h19 class BlockNode; variable
38 virtual const BlockNode* AsBlock() const;
137 class BlockNode : public ParseNode {
140 explicit BlockNode(bool has_scope);
141 virtual ~BlockNode();
143 virtual const BlockNode* AsBlock() const OVERRIDE;
172 DISALLOW_COPY_AND_ASSIGN(BlockNode);
197 const BlockNode* if_true() const { return if_true_.get(); } in if_true()
198 void set_if_true(scoped_ptr<BlockNode> t) { in set_if_true()
214 scoped_ptr<BlockNode> if_true_; // Always non-null.
[all …]
Dparse_tree.cc35 const BlockNode* ParseNode::AsBlock() const { return NULL; } in AsBlock()
142 BlockNode::BlockNode(bool has_scope) : has_scope_(has_scope) { in BlockNode() function in BlockNode
145 BlockNode::~BlockNode() { in ~BlockNode()
149 const BlockNode* BlockNode::AsBlock() const { in AsBlock()
153 Value BlockNode::Execute(Scope* containing_scope, Err* err) const { in Execute()
167 LocationRange BlockNode::GetRange() const { in GetRange()
178 Err BlockNode::MakeErrorDescribing(const std::string& msg, in MakeErrorDescribing()
183 void BlockNode::Print(std::ostream& out, int indent) const { in Print()
189 Value BlockNode::ExecuteBlockInScope(Scope* our_scope, Err* err) const { in ExecuteBlockInScope()
238 const BlockNode* if_false_block = if_false_->AsBlock(); in Execute()
Dparser.cc262 scoped_ptr<BlockNode> block; in IdentifierOrCall()
355 scoped_ptr<BlockNode> file(new BlockNode(false)); in ParseFile()
392 scoped_ptr<BlockNode> Parser::ParseBlock() { in ParseBlock()
396 return scoped_ptr<BlockNode>(); in ParseBlock()
397 scoped_ptr<BlockNode> block(new BlockNode(true)); in ParseBlock()
408 return scoped_ptr<BlockNode>(); in ParseBlock()
Dfunction_toolchain.cc90 BlockNode* block, in RunToolchain()
188 BlockNode* block, in RunTool()
279 BlockNode* block, in RunToolchainArgs()
Dfunctions.cc28 BlockNode* block, in RunTemplateInvocation()
86 const BlockNode* block, in FillTargetBlockScope()
307 BlockNode* block, in RunDeclareArgs()
580 BlockNode* block, in RunFunction()
Dfunction_template.cc87 BlockNode* block, in RunTemplate()
Dfunction_set_defaults.cc44 BlockNode* block, in RunSetDefaults()
Dimport_manager.cc23 const BlockNode* block = node->AsBlock(); in UncachedImport()
Dparser.h72 scoped_ptr<BlockNode> ParseBlock();
Dloader_unittest.cc101 BlockNode block(false); // Default response. in IssueAllPending()
Dloader.cc290 const BlockNode* root_block = root->AsBlock(); in BackgroundLoadBuildConfig()
/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