Home
last modified time | relevance | path

Searched refs:dependency (Results 1 – 9 of 9) sorted by relevance

/art/test/632-checker-char-at-bounds/
Dinfo.txt2 had its SSA dependency incorrect with its corresponding bound check.
/art/compiler/optimizing/
Dscheduler.h306 void AddDependency(SchedulingNode* node, SchedulingNode* dependency, bool is_data_dependency);
307 void AddDataDependency(SchedulingNode* node, SchedulingNode* dependency) { in AddDataDependency() argument
308 AddDependency(node, dependency, /*is_data_dependency*/true); in AddDataDependency()
310 void AddOtherDependency(SchedulingNode* node, SchedulingNode* dependency) { in AddOtherDependency() argument
311 AddDependency(node, dependency, /*is_data_dependency*/false); in AddOtherDependency()
Dscheduler.cc37 SchedulingNode* dependency, in AddDependency() argument
39 if (node == nullptr || dependency == nullptr) { in AddDependency()
46 if (!HasImmediateDataDependency(node, dependency)) { in AddDependency()
47 node->AddDataPredecessor(dependency); in AddDependency()
49 } else if (!HasImmediateOtherDependency(node, dependency)) { in AddDependency()
50 node->AddOtherPredecessor(dependency); in AddDependency()
/art/tools/amm/models/
DSoCode.md9 library was loaded by the app or the platform, the library dependency graph,
/art/runtime/interpreter/mterp/
DMakefile_mterp36 # assume it's a dependency.
/art/libartbase/
DAndroid.bp86 // TODO: Remove CommonRuntimeTest dependency from these tests.
/art/
DAndroid.mk419 LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency
429 LOCAL_MODULE := art-libartd-libopenjdkd-target-dependency
/art/test/VerifierDeps/
DMain.smali419 # TODO: Maybe we should not record dependency if the invoke type does not match the lookup type.
428 # TODO: Maybe we should not record dependency if the invoke type does not match the lookup type.
/art/tools/
Dlibcore_failures.txt152 description: "Non-deterministic test because of a dependency on weak ref collection.",