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

1 2 3

  /tools/loganalysis/src/com/android/loganalysis/item/
IItem.java 51 public boolean isConsistent(IItem other);
GenericMapItem.java 41 public boolean isConsistent(IItem other) {
DumpsysBatteryStatsItem.java 91 public boolean isConsistent(IItem other) {
BatteryDischargeItem.java 116 public boolean isConsistent(IItem other) {
BatteryStatsDetailedInfoItem.java 142 public boolean isConsistent(IItem other) {
BatteryUsageItem.java 113 public boolean isConsistent(IItem other) {
CpuInfoItem.java 58 public boolean isConsistent(IItem other) {
QtaguidItem.java 58 public boolean isConsistent(IItem other) {
GfxInfoItem.java 71 public boolean isConsistent(IItem other) {
InterruptItem.java 146 public boolean isConsistent(IItem other) {
LocationDumpsItem.java 154 public boolean isConsistent(IItem other) {
ProcessUsageItem.java 172 public boolean isConsistent(IItem other) {
CompactMemInfoItem.java 64 public boolean isConsistent(IItem other) {
GenericItem.java 91 public boolean isConsistent(IItem other) {
ProcrankItem.java 172 public boolean isConsistent(IItem other) {
WakelockItem.java 207 public boolean isConsistent(IItem other) {
  /external/doclava/src/com/google/doclava/apicheck/
ApiInfo.java 66 public boolean isConsistent(ApiInfo otherApi) {
67 return isConsistent(otherApi, null);
70 public boolean isConsistent(ApiInfo otherApi, List<PackageInfo> pkgInfoDiff) {
71 return isConsistent(otherApi, pkgInfoDiff, null, null);
83 public boolean isConsistent(ApiInfo otherApi, List<PackageInfo> pkgInfoDiff,
101 if (!pInfo.isConsistent(otherApi.getPackages().get(pInfo.name()), newClsApis, ignoredClasses)) {
ApiCheck.java 156 oldApi.isConsistent(newApi, null, ignoredPackages, ignoredClasses);
160 oldRemovedApi.isConsistent(newRemovedApi, null, ignoredPackages, ignoredClasses);
309 if (!origApi.isConsistent(newApi, pkgInfoDiff)) {
  /tools/loganalysis/tests/src/com/android/loganalysis/item/
GenericItemTest.java 124 * Test for {@link GenericItem#isConsistent(IItem)}.
127 assertTrue(mEmptyItem1.isConsistent(mEmptyItem1));
128 assertFalse(mEmptyItem1.isConsistent(null));
129 assertTrue(mEmptyItem1.isConsistent(mEmptyItem2));
130 assertTrue(mEmptyItem2.isConsistent(mEmptyItem1));
131 assertTrue(mEmptyItem1.isConsistent(mStringItem));
132 assertTrue(mStringItem.isConsistent(mEmptyItem1));
133 assertTrue(mIntegerItem.isConsistent(mStringItem));
134 assertTrue(mEmptyItem1.isConsistent(mFullItem1));
135 assertTrue(mFullItem1.isConsistent(mEmptyItem1))
    [all...]
  /external/doclava/src/com/google/doclava/
PackageInfo.java 417 public boolean isConsistent(PackageInfo pInfo) {
418 return isConsistent(pInfo, null);
477 public boolean isConsistent(PackageInfo pInfo, List<ClassInfo> clsInfoDiff) {
478 return isConsistent(pInfo, clsInfoDiff, null);
492 public boolean isConsistent(PackageInfo pInfo, List<ClassInfo> clsInfoDiff,
511 if (!cInfo.isConsistent(pInfo.mClasses.get(cInfo.name()), newClsCtors, newClsApis)) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
WavAnalyzer.java 53 if (!isConsistent()) {
77 boolean isConsistent() {
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 153 /// isConsistent - Returns true if this dependence is consistent
155 virtual bool isConsistent() const { return false; }
239 /// isConsistent - Returns true if this dependence is consistent
241 bool isConsistent() const override { return Consistent; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
DependenceAnalysis.h 148 /// isConsistent - Returns true if this dependence is consistent
150 virtual bool isConsistent() const { return false; }
229 /// isConsistent - Returns true if this dependence is consistent
231 bool isConsistent() const override { return Consistent; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
DependenceAnalysis.h 148 /// isConsistent - Returns true if this dependence is consistent
150 virtual bool isConsistent() const { return false; }
229 /// isConsistent - Returns true if this dependence is consistent
231 bool isConsistent() const override { return Consistent; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
DependenceAnalysis.h 148 /// isConsistent - Returns true if this dependence is consistent
150 virtual bool isConsistent() const { return false; }
229 /// isConsistent - Returns true if this dependence is consistent
231 bool isConsistent() const override { return Consistent; }
    [all...]

Completed in 401 milliseconds

1 2 3