HomeSort by relevance Sort by last modified time
    Searched defs:typeCount (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DebugUtilities.java 26 public static int typeCount() {
DebugUtilitiesTest.java 30 int typeCount = DebugUtilities.typeCount();
31 if(typeCount==0) {
32 errln("typecount is 0!");
34 for(int j=0;j<typeCount;j++) {
36 logln("Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - enumCount "+enumCount);
43 errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCount+": "+enumString +" - ERR: value="+enumValue+" should be "+k);
46 errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCount+": "+enumString +" - ERR: enumByString returned="+enumValueFromString+" should be "+k);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DebugUtilities.java 22 public static int typeCount() {
DebugUtilitiesTest.java 27 int typeCount = DebugUtilities.typeCount();
28 if(typeCount==0) {
29 errln("typecount is 0!");
31 for(int j=0;j<typeCount;j++) {
33 logln("Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - enumCount "+enumCount);
40 errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCount+": "+enumString +" - ERR: value="+enumValue+" should be "+k);
43 errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCount+": "+enumString +" - ERR: enumByString returned="+enumValueFromString+" should be "+k);
  /external/deqp/external/vulkancts/framework/vulkan/
vkBuilderUtil.cpp 153 const VkDescriptorPoolSize typeCount =
159 m_counts.push_back(typeCount);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedDexFile.java 61 private final int typeCount;
83 typeCount = readSmallUint(HeaderItem.TYPE_COUNT_OFFSET);
155 if (typeIndex < 0 || typeIndex >= typeCount) {
198 return typeCount;
  /external/icu/icu4c/source/i18n/
olsontz.h 349 int16_t typeCount;
353 * Length is typeCount int32_t's. At least one type (a pair of int32_t)
360 * type indices (from 0..typeCount-1).
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
SharedSteps.java 134 int typeCount = 0;
137 if (typeCount == position) {
140 typeCount++;
  /frameworks/base/cmds/idmap/
inspect.cpp 242 uint32_t typeCount = static_cast<uint32_t>(data16);
243 while (typeCount > 0) {
244 typeCount--;
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
FakeAdapter.java 59 int[] typeCount = new int[itemCount];
74 int index = typeCount[typeIndex];
75 typeCount[typeIndex] += count;
FakeExpandableAdapter.java 59 int[] typeCount = new int[itemCount];
80 int index = typeCount[typeIndex];
81 typeCount[typeIndex] += count;
  /cts/hostsidetests/os/test-apps/StaticSharedLibConsumerApp1/src/android/os/lib/consumer1/
UseSharedLibraryTest.java 76 int typeCount = 0;
77 typeCount += type == SharedLibraryInfo.TYPE_BUILTIN ? 1 : 0;
78 typeCount += type == SharedLibraryInfo.TYPE_DYNAMIC ? 1 : 0;
79 typeCount += type == SharedLibraryInfo.TYPE_STATIC ? 1 : 0;
81 if (typeCount != 1) {
  /cts/tests/tests/graphics/jni/
VulkanTestHelpers.cpp 703 const VkDescriptorPoolSize typeCount = {
711 .pPoolSizes = &typeCount,
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleValidityChecker.java 150 int typeCount = 0;
180 typeCount = 0;
187 ++typeCount;
190 if (typeCount > 1) {
195 if (typeCount == 1) {
204 if (typeCount == 1) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleValidityChecker.java 148 int typeCount = 0;
178 typeCount = 0;
185 ++typeCount;
188 if (typeCount > 1) {
193 if (typeCount == 1) {
202 if (typeCount == 1) {
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContactModifier.java 142 * @param typeCount When provided, will be used for the frequency count of
148 EditType forceInclude, boolean includeSecondary, SparseIntArray typeCount,
155 if (typeCount == null) {
157 typeCount = getTypeFrequencies(state, kind);
163 final int overallCount = typeCount.get(FREQUENCY_TOTAL);
169 final boolean validSpecific = (type.specificMax == -1 ? true : typeCount
191 final SparseIntArray typeCount = new SparseIntArray();
195 if (mimeEntries == null) return typeCount;
205 final int count = typeCount.get(type.rawValue);
206 typeCount.put(type.rawValue, count + 1)
    [all...]
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 267 int typeCount = 0;
283 typeCount = typeIndex;
294 VerificationType[] types = new VerificationType[typeCount];
300 for (int index = 0; typeIndex < typeCount; index++)
350 int typeCount = 0;
358 typeCount++;
368 VerificationType[] types = new VerificationType[typeCount];
370 int typeIndex = typeCount;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterView.java 189 int typeCount = adapter.getViewTypeCount();
190 if (mViews == null || typeCount != mViews.length) {
191 mViews = new List[typeCount];
192 for (int i = 0; i < typeCount; i++) {
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
OlsonTimeZone.java 431 typeCount != o.typeCount ||
468 typeCount = 1;
569 typeCount = typeOffsets.length / 2;
789 buf.append(",typeCount=" + typeCount);
844 private int typeCount;
853 * Length is equal to typeCount
859 * type indices (from 0..typeCount-1).
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
OlsonTimeZone.java 429 typeCount != o.typeCount ||
466 typeCount = 1;
567 typeCount = typeOffsets.length / 2;
787 buf.append(",typeCount=" + typeCount);
842 private int typeCount;
851 * Length is equal to typeCount
857 * type indices (from 0..typeCount-1).
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 799 final int typeCount = mViewTypeCount;
800 for (int i = 0; i < typeCount; i++) {
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java     [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]

Completed in 1124 milliseconds

1 2 3 4