Searched refs:dep (Results 1 – 10 of 10) sorted by relevance
/frameworks/rs/ |
D | rsClosure.cpp | 86 const Closure* dep = depClosures[i]; in Closure() local 87 if (dep != nullptr) { in Closure() 88 auto mapping = mArgDeps[dep]; in Closure() 91 mArgDeps[dep] = mapping; in Closure() 98 const Closure* dep = depClosures[i]; in Closure() local 99 if (dep != nullptr) { in Closure() 100 auto mapping = mGlobalDeps[dep]; in Closure() 104 mGlobalDeps[dep] = mapping; in Closure()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
D | ImsExternalCallTrackerTest.java | 67 List<ImsExternalCallState> dep = new ArrayList<>(); in testAddExternalCall() local 68 dep.add( in testAddExternalCall() 76 mTracker.refreshExternalCallState(dep); in testAddExternalCall() 95 List<ImsExternalCallState> dep = new ArrayList<>(); in testRemoveExternalCall() local 96 mTracker.refreshExternalCallState(dep); in testRemoveExternalCall()
|
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/ |
D | ExpressionVisitorTest.java | 154 final Dependency dep = parsed.getDependencies().get(0); in testInheritedFieldResolution() local 155 assertSame(id, dep.getOther()); in testInheritedFieldResolution() 156 assertFalse(dep.isConditional()); in testInheritedFieldResolution() 170 final Dependency dep = parsed.getDependencies().get(0); in testGetterResolution() local 171 assertSame(id, dep.getOther()); in testGetterResolution() 172 assertFalse(dep.isConditional()); in testGetterResolution() 182 final Dependency dep = parsed.getDependencies().get(0); in testMethodCall() local 183 assertSame(mParser.parse("user", null, null), dep.getOther()); in testMethodCall() 184 assertFalse(dep.isConditional()); in testMethodCall()
|
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/ |
D | DependencyFinder.java | 107 for (String dep : entry.getValue()) { in printAllDeps() 108 mLog.info(" uses: %s", dep); in printAllDeps() 125 for (String dep : entry.getValue()) { in printAllDeps() 126 mLog.info(" used by: %s", dep); in printAllDeps() 247 for (String dep : entry.getValue()) { in findMissingClasses() 248 if (!zipClasses.contains(dep)) { in findMissingClasses() 250 Set<String> set = missing.get(dep); in findMissingClasses() 253 missing.put(dep, set); in findMissingClasses()
|
/frameworks/data-binding/ |
D | build.gradle | 258 pom.dependencies.removeAll { dep -> 259 def isBaseLibrary = dep.groupId == 'com.android.databinding' && 260 dep.artifactId == 'baseLibrary' 261 def isGradle = dep.groupId == 'com.android.tools.build' && 262 dep.artifactId == 'gradle' 263 def isChardet = dep.groupId == 'com.googlecode.juniversalchardet' && 264 dep.artifactId == 'juniversalchardet'
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/ |
D | LayoutBinder.java | 262 for (Dependency dep : e.getDependencies()) { in resolveWhichExpressionsAreUsed() 263 if (!dep.getOther().isUsed()) { in resolveWhichExpressionsAreUsed() 264 used.add(dep.getOther()); in resolveWhichExpressionsAreUsed() 265 dep.getOther().markAsUsed(); in resolveWhichExpressionsAreUsed()
|
/frameworks/support/buildSrc/ |
D | init.gradle | 308 dependencyList.each { dep -> 309 if (dep instanceof String) { 310 def t = tasks.findByName(dep) 312 toBeRemoved.add(dep) 317 toBeRemoved.each { dep -> 318 dependencyList.remove(dep)
|
/frameworks/compile/slang/ |
D | RSCCOptions.td | 108 def emit_dep : Flag<["-"], "emit-dep">, Alias<M>; 111 def output_dep_dir : Separate<["-"], "output-dep-dir">, MetaVarName<"<directory>">, 115 def additional_dep_target: Separate<["-"], "additional-dep-target">,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | Dependency.java | 367 T dep = (T) mDependencies.remove(cls); in destroyDependency() local 368 if (dep != null && destroy != null) { in destroyDependency() 369 destroy.accept(dep); in destroyDependency()
|
/frameworks/compile/slang/lit-tests/ |
D | lit.cfg | 59 + " -output-dep-dir " + config.test_exec_root \
|