HomeSort by relevance Sort by last modified time
    Searched refs:Dominates (Results 1 - 25 of 31) sorted by null

1 2

  /frameworks/base/tools/aapt2/
DominatorTree.cpp 43 if (value_ && !Dominates(new_child.get())) {
44 // This is not the root and the child dominates us.
54 if (new_child->Dominates(child.get())) {
70 // Add the new config to a child if a child dominates the new config.
72 if (child->Dominates(new_child.get())) {
83 bool DominatorTree::Node::Dominates(const Node* other) const {
91 return value_->config.Dominates(other->value_->config);
DominatorTree.h 72 bool Dominates(const Node* other) const;
ConfigDescription.h 65 * A configuration X dominates another configuration Y, if X has at least the
70 * For example, the configuration 'en-w800dp' dominates 'en-rGB-w1024dp'. It
73 bool Dominates(const ConfigDescription& o) const;
ConfigDescription.cpp 879 bool ConfigDescription::Dominates(const ConfigDescription& o) const {
985 return !ConflictsWith(o) && !Dominates(o) && !o.Dominates(*this);
  /art/compiler/optimizing/
code_sinking.cc 318 !user->GetBlock()->Dominates(common_dominator)) {
401 if (position == nullptr || !instruction->GetBlock()->Dominates(position->GetBlock())) {
load_store_elimination.cc 208 !singleton_ref->GetBlock()->Dominates(predecessor)) {
238 !singleton_ref->GetBlock()->Dominates(block));
395 DCHECK(original_ref->GetBlock()->Dominates(loop_info->GetPreHeader()));
find_loops_test.cc 342 ASSERT_FALSE(info->GetHeader()->Dominates(info->GetBackEdges()[0]));
graph_checker.cc 416 // Ensure an instruction dominates all its uses.
666 } else if (!loop_information->IsIrreducible() && !loop_header->Dominates(loop_block)) {
    [all...]
reference_type_propagation.cc 186 // Check that the existing HBoundType dominates all the uses.
194 DCHECK(!dominator_block->Dominates(user->GetBlock())
225 bool dominates = (start_instruction != nullptr) local
227 : start_block->Dominates(user->GetBlock());
228 if (!dominates) {
    [all...]
bounds_check_elimination.cc     [all...]
nodes.cc 734 if (!header_->Dominates(back_edge)) {
743 if (!block->Dominates(back_edge)) {
764 bool HBasicBlock::Dominates(HBasicBlock* other) const {
    [all...]
loop_optimization.cc 484 if (block->Dominates(meet0)) {
    [all...]
register_allocator_graph_color.cc 83 if (block->Dominates(block->GetGraph()->GetExitBlock())) {
    [all...]
  /external/v8/src/crankshaft/
hydrogen-escape-analysis.cc 175 if (!allocate_block->Dominates(block) && allocate_block != block) continue;
254 if (!allocate_block->Dominates(succ)) continue;
hydrogen-flow-engine.h 177 return !root->Dominates(other); // Only visit dominated blocks.
hydrogen-check-elimination.cc 186 // Keep the check if the existing check's block dominates the successor.
188 old_entry->check_->block()->Dominates(succ)) {
hydrogen-instructions.cc 742 bool HInstruction::Dominates(HInstruction* other) {
744 return block()->Dominates(other->block());
778 DCHECK(other_block->Dominates(cur_block));
    [all...]
  /external/v8/src/compiler/
verifier.cc     [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h     [all...]

Completed in 250 milliseconds

1 2