Home
last modified time | relevance | path

Searched refs:dependency (Results 1 – 12 of 12) 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.h298 void AddDependency(SchedulingNode* node, SchedulingNode* dependency, bool is_data_dependency);
299 void AddDataDependency(SchedulingNode* node, SchedulingNode* dependency) { in AddDataDependency() argument
300 AddDependency(node, dependency, /*is_data_dependency*/true); in AddDataDependency()
302 void AddOtherDependency(SchedulingNode* node, SchedulingNode* dependency) { in AddOtherDependency() argument
303 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/
D.vpython14 # All python scripts in the repo share this same spec, to avoid dependency
DAndroid.mk486 LOCAL_MODULE := art-libartd-libopenjdkd-host-dependency
496 LOCAL_MODULE := art-libartd-libopenjdkd-target-dependency
/art/libprofile/
DAndroid.bp141 // TODO: Remove CommonRuntimeTest dependency from these tests.
/art/libdexfile/
DAndroid.bp256 // time dependency on dex file logic. It is therefore safe to use from binaries
/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/runtime/
DAndroid.bp423 "libdexfile_external", // libunwindstack dependency
424 "libdexfile_support", // libunwindstack dependency
/art/tools/
Dlibcore_failures.txt152 description: "Non-deterministic test because of a dependency on weak ref collection.",
/art/build/apex/
DAndroid.bp32 // "required" because of cyclic dependency (b/124505714).