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

1 2 3 4

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
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);
DebugUtilities.java 21 public static int typeCount() {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DebugUtilitiesTest.java 26 int typeCount = DebugUtilities.typeCount();
27 if(typeCount==0) {
28 errln("typecount is 0!");
30 for(int j=0;j<typeCount;j++) {
32 logln("Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - enumCount "+enumCount);
39 errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCount+": "+enumString +" - ERR: value="+enumValue+" should be "+k);
42 errln("FAIL: Type "+j+"/"+typeCount+": "+DebugUtilities.typeString(j) +" - Enum "+k+"/"+enumCount+": "+enumString +" - ERR: enumByString returned="+enumValueFromString+" should be "+k);
DebugUtilities.java 20 public static int typeCount() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
TypeIdItem.java 84 int typeCount = mapItem.getItemCount();
85 String[] ret = new String[typeCount];
86 for (int i=0; i<typeCount; i++) {
  /frameworks/base/tools/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;
  /external/wpa_supplicant_8/src/common/
tnc.h 38 TNC_UInt32 typeCount);
67 TNC_UInt32 typeCount);
  /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;
  /external/opencv3/modules/videoio/src/cap_winrt/
MediaStreamSink.cpp 247 HRESULT MediaStreamSink::GetMediaTypeCount(__out DWORD *typeCount)
249 return ExceptionBoundary([this, typeCount]()
253 CHKNULL(typeCount);
258 *typeCount = 0;
MediaStreamSink.hpp 71 IFACEMETHODIMP GetMediaTypeCount(__out DWORD *typeCount);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedDexFile.java 53 private final int typeCount;
75 typeCount = readSmallUint(HeaderItem.TYPE_COUNT_OFFSET);
178 if (typeIndex < 0 || typeIndex >= typeCount) {
221 return typeCount;
  /external/icu/android_icu4j/src/main/java/android/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...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
OlsonTimeZone.java 427 typeCount != o.typeCount ||
464 typeCount = 1;
565 typeCount = typeOffsets.length / 2;
785 buf.append(",typeCount=" + typeCount);
840 private int typeCount;
849 * Length is equal to typeCount
855 * type indices (from 0..typeCount-1).
    [all...]
  /frameworks/base/cmds/idmap/
inspect.cpp 241 uint32_t typeCount = static_cast<uint32_t>(data16);
242 while (typeCount > 0) {
243 typeCount--;
  /external/icu/icu4c/source/i18n/
olsontz.cpp 105 typeCount = 1;
183 typeCount = (int16_t) len >> 1;
285 typeCount = other.typeCount;
637 if (typeCount != z->typeCount
648 && arrayEqual(typeOffsets, z->typeOffsets, sizeof(typeOffsets[0]) * typeCount << 1)
752 for (typeIdx = 0; typeIdx < typeCount; typeIdx++) {
769 historicRuleCount = typeCount;
    [all...]
olsontz.h 347 int16_t typeCount;
351 * Length is typeCount int32_t's. At least one type (a pair of int32_t)
358 * type indices (from 0..typeCount-1).
  /external/deqp/external/vulkancts/framework/vulkan/
vkBuilderUtil.cpp 120 const VkDescriptorPoolSize typeCount =
126 m_counts.push_back(typeCount);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactModifier.java 144 * @param typeCount When provided, will be used for the frequency count of
150 EditType forceInclude, boolean includeSecondary, SparseIntArray typeCount,
157 if (typeCount == null) {
159 typeCount = getTypeFrequencies(state, kind);
165 final int overallCount = typeCount.get(FREQUENCY_TOTAL);
171 final boolean validSpecific = (type.specificMax == -1 ? true : typeCount
193 final SparseIntArray typeCount = new SparseIntArray();
197 if (mimeEntries == null) return typeCount;
207 final int count = typeCount.get(type.rawValue);
208 typeCount.put(type.rawValue, count + 1)
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassWriter.java 296 private short typeCount;
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 110 TNC_UInt32 typeCount)
116 "typeCount=%lu)",
117 (unsigned long) imcID, (unsigned long) typeCount);
119 for (i = 0; i < typeCount; i++) {
130 os_malloc(typeCount * sizeof(TNC_MessageType));
134 typeCount * sizeof(TNC_MessageType));
135 imc->num_supported_types = typeCount;
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 146 TNC_UInt32 typeCount)
152 "typeCount=%lu)",
153 (unsigned long) imvID, (unsigned long) typeCount);
155 for (i = 0; i < typeCount; i++) {
165 os_malloc(typeCount * sizeof(TNC_MessageType));
169 typeCount * sizeof(TNC_MessageType));
170 imv->num_supported_types = typeCount;
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 799 final int typeCount = mViewTypeCount;
800 for (int i = 0; i < typeCount; i++) {
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
  /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...]

Completed in 559 milliseconds

1 2 3 4