HomeSort by relevance Sort by last modified time
    Searched refs:numOfEntries (Results 1 - 20 of 20) sorted by null

  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
DefaultMapStorage.java 50 numOfEntries = sortedAreaCodeMap.size();
51 phoneNumberPrefixes = new int[numOfEntries];
52 descriptions = new String[numOfEntries];
63 numOfEntries = objectInput.readInt();
64 if (phoneNumberPrefixes == null || phoneNumberPrefixes.length < numOfEntries) {
65 phoneNumberPrefixes = new int[numOfEntries];
67 if (descriptions == null || descriptions.length < numOfEntries) {
68 descriptions = new String[numOfEntries];
70 for (int i = 0; i < numOfEntries; i++) {
83 objectOutput.writeInt(numOfEntries);
    [all...]
AreaCodeMapStorageStrategy.java 33 protected int numOfEntries = 0;
85 return numOfEntries;
98 int numOfEntries = getNumOfEntries();
100 for (int i = 0; i < numOfEntries; i++) {
FlyweightMapStorage.java 72 numOfEntries = areaCodeMap.size();
74 phoneNumberPrefixes = ByteBuffer.allocate(numOfEntries * prefixSizeInBytes);
95 descriptionIndexes = ByteBuffer.allocate(numOfEntries * descIndexSizeInBytes);
101 for (int i = 0; i < numOfEntries; i++) {
141 numOfEntries = objectInput.readInt();
142 if (phoneNumberPrefixes == null || phoneNumberPrefixes.capacity() < numOfEntries) {
143 phoneNumberPrefixes = ByteBuffer.allocate(numOfEntries * prefixSizeInBytes);
145 if (descriptionIndexes == null || descriptionIndexes.capacity() < numOfEntries) {
146 descriptionIndexes = ByteBuffer.allocate(numOfEntries * descIndexSizeInBytes);
148 for (int i = 0; i < numOfEntries; i++)
    [all...]
MappingFileProvider.java 43 private int numOfEntries = 0;
73 numOfEntries = availableDataFiles.size();
74 countryCallingCodes = new int[numOfEntries];
75 availableLanguages = new ArrayList<Set<String>>(numOfEntries);
87 numOfEntries = objectInput.readInt();
88 if (countryCallingCodes == null || countryCallingCodes.length < numOfEntries) {
89 countryCallingCodes = new int[numOfEntries];
94 for (int i = 0; i < numOfEntries; i++) {
109 objectOutput.writeInt(numOfEntries);
110 for (int i = 0; i < numOfEntries; i++)
    [all...]
AreaCodeMap.java 146 int numOfEntries = areaCodeMapStorage.getNumOfEntries();
147 if (numOfEntries == 0) {
152 int currentIndex = numOfEntries - 1;
  /hardware/ti/wlan/wl1271/stad/Export_Inc/
bssTypes.h 126 TI_UINT8 numOfEntries; /**< Number of entries in the BSS list */
159 TI_UINT8 numOfEntries; /**< Number of entries in Neighbor AP list */
paramOut.h 423 TI_UINT16 numOfEntries;
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Application/
scanMngr.c 366 (pScanMngr->BSSList.numOfEntries > 0)) /* in case no AP was found for specified iterations number,
441 (pScanMngr->BSSList.numOfEntries <= pScanMngr->scanPolicy.BSSNumberToStartDiscovery))
    [all...]
roamingMngr_autoSM.c 244 if ((pRoamingMngr->pListOfAPs != NULL) && (pRoamingMngr->pListOfAPs->numOfEntries > 0))
352 (pRoamingMngr->pListOfAPs->numOfEntries == 0))
360 for (index=0; index<pRoamingMngr->pListOfAPs->numOfEntries; index++ )
595 (pRoamingMngr->pListOfAPs->numOfEntries>0))
629 pBssList->numOfEntries = 0;
794 pBssList->numOfEntries = 0;
scanMngr.h 158 TI_UINT8 numOfEntries; /**< number of entries in the list */
192 TI_UINT8 numOfEntries; /**< Number of entries in the list */
    [all...]
roamingMngr.c 414 if (pNeighborAPList->numOfEntries>0)
427 TRACE2(pRoamingMngr->hReport, REPORT_SEVERITY_INFORMATION, "roamingMngr_updateNeighborApListCb, numberOfAps = %d, enableDisable=%d\n", pNeighborAPList->numOfEntries, pRoamingMngr->roamingMngrConfig.enableDisable);
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 143 int numOfEntries;
165 numOfEntries = ByteArray.readU16bit(data, 0);
171 public final int size() { return numOfEntries; }
177 int n = numOfEntries;
528 int numOfEntries;
536 numOfEntries = 0;
546 ByteArray.write16bit(numOfEntries, b, 0);
565 numOfEntries++;
586 numOfEntries++;
603 numOfEntries++
    [all...]
StackMap.java 66 public int numOfEntries() {
  /frameworks/compile/mclinker/include/mcld/ADT/
HashBase.h 93 size_t numOfEntries() const
  /frameworks/compile/mclinker/unittests/
HashTableTest.cpp 102 EXPECT_EQ(0, hashTable.numOfEntries());
139 EXPECT_EQ(100, hashTable->numOfEntries());
213 EXPECT_EQ(80, hashTable->numOfEntries());
223 EXPECT_EQ(100, hashTable->numOfEntries());
316 ASSERT_EQ(16, hashTable->numOfEntries());
  /frameworks/compile/mclinker/include/mcld/LD/
StrSymPool.h 92 { return m_Table.numOfEntries(); }
  /frameworks/compile/mclinker/lib/LD/
StrSymPool.cpp 145 return (m_Table.numOfBuckets() - m_Table.numOfEntries());
  /hardware/ti/wlan/wl1271/Test/
roamingMgrDebug.c 178 WLAN_OS_REPORT(("Roaming connect: BSS LIST num of entries=%d \n", bssList->numOfEntries));
346 for (i=0 ; i< bssList->numOfEntries ; i++)
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
apConn.c     [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_cmd.c     [all...]

Completed in 172 milliseconds