/external/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 180 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/ |
D | functions.h | 15 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 …]
|
D | functions_target.cc | 31 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()
|
D | parse_tree.h | 19 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 …]
|
D | parse_tree.cc | 43 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()
|
D | template.h | 14 class BlockNode; variable 41 BlockNode* block,
|
D | parser.cc | 289 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()
|
D | function_template.cc | 151 BlockNode* block, in RunTemplate()
|
D | function_set_defaults.cc | 46 BlockNode* block, in RunSetDefaults()
|
D | function_toolchain.cc | 285 BlockNode* block, in RunToolchain() 722 BlockNode* block, in RunTool() 889 BlockNode* block, in RunToolchainArgs()
|
D | function_foreach.cc | 91 const BlockNode* block = function->block(); in RunForEach()
|
D | import_manager.cc | 24 const BlockNode* block = node->AsBlock(); in UncachedImport()
|
D | template.cc | 30 BlockNode* block, in Invoke()
|
D | command_format.cc | 148 const BlockNode* block = root->AsBlock(); in Block() 212 } else if (const BlockNode* block = root->AsBlock()) { in Expr()
|
D | functions.cc | 51 const BlockNode* block, in FillTargetBlockScope() 288 BlockNode* block, in RunDeclareArgs() 723 BlockNode* block, in RunFunction()
|
D | parser.h | 75 scoped_ptr<BlockNode> ParseBlock();
|
D | loader_unittest.cc | 101 BlockNode block(false); // Default response. in IssueAllPending()
|
D | loader.cc | 303 const BlockNode* root_block = root->AsBlock(); in BackgroundLoadBuildConfig()
|
/external/llvm/lib/Analysis/ |
D | BlockFrequencyInfoImpl.cpp | 56 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/ |
D | handlebars-1.0.0.beta.6.js | 126 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/ |
D | Nodes.py | 242 if isinstance(self, BlockNode): 357 class BlockNode(object): class 1314 class CppClassNode(CStructOrUnionDefNode, BlockNode): 1478 class FuncDefNode(StatNode, BlockNode): 3959 class ClassDefNode(StatNode, BlockNode):
|
D | ModuleNode.py | 41 class ModuleNode(Nodes.Node, Nodes.BlockNode):
|