/external/smali/util/src/main/java/org/jf/util/ |
BitSetUtils.java | 37 public static BitSet bitSetOfIndexes(int... indexes) { 39 for (int index: indexes) {
|
/external/icu/icu4c/source/tools/toolutil/ |
collationinfo.h | 28 static void printSizes(int32_t sizeWithHeader, const int32_t indexes[]); 34 static int32_t getDataLength(const int32_t indexes[], int32_t startIndex);
|
collationinfo.cpp | 28 CollationInfo::printSizes(int32_t sizeWithHeader, const int32_t indexes[]) { 29 int32_t totalSize = indexes[CollationDataReader::IX_TOTAL_SIZE]; 34 int32_t length = indexes[CollationDataReader::IX_INDEXES_LENGTH]; 35 printf(" indexes: %6ld *4 = %6ld\n", (long)length, (long)length * 4); 37 length = getDataLength(indexes, CollationDataReader::IX_REORDER_CODES_OFFSET); 42 length = getDataLength(indexes, CollationDataReader::IX_REORDER_TABLE_OFFSET); 48 length = getDataLength(indexes, CollationDataReader::IX_TRIE_OFFSET); 53 length = getDataLength(indexes, CollationDataReader::IX_RESERVED8_OFFSET); 58 length = getDataLength(indexes, CollationDataReader::IX_CES_OFFSET); 63 length = getDataLength(indexes, CollationDataReader::IX_RESERVED10_OFFSET) [all...] |
swapimpl.cpp | 106 // formatVersion 2 initially has indexes[8], 32 bytes. 129 // Swap the indexes[] and the valueMaps[]. 193 /* the properties file must contain at least the indexes array */ 201 /* read the indexes */ 209 * indexes[] constants are in uprops.h 236 /* swap the indexes[16] */ 316 int32_t indexes[16]; local 361 /* read the first 16 indexes (ICU 3.2/format version 1: UCASE_IX_TOP==16, might grow) */ 363 indexes[i]=udata_readInt32(ds, inIndexes[i]); 367 size=indexes[UCASE_IX_LENGTH] 418 int32_t indexes[16]; local 528 int32_t indexes[32]; local [all...] |
/external/icu/icu4c/source/i18n/ |
collationdatawriter.h | 32 int32_t indexes[], uint8_t *dest, int32_t capacity, 36 int32_t indexes[], uint8_t *dest, int32_t capacity, 45 int32_t indexes[], uint8_t *dest, int32_t capacity, 48 static void copyData(const int32_t indexes[], int32_t startIndex,
|
collationdatawriter.cpp | 55 int32_t indexes[CollationDataReader::IX_TOTAL_SIZE + 1]; local 57 *tailoring, *settings, indexes, dest, capacity, 78 int32_t indexes[], uint8_t *dest, int32_t capacity, 83 indexes, dest, capacity, errorCode); 88 int32_t indexes[], uint8_t *dest, int32_t capacity, 93 indexes, dest, capacity, errorCode); 100 int32_t indexes[], uint8_t *dest, int32_t capacity, 109 // the indexes length and writing offsets. 111 // so the indexes length must be at least index-of-start-offset + 2. 126 // For the root collator, we write an even number of indexes [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
UBiDiProps.java | 48 // read indexes[] 52 throw new IOException("indexes[0] too small in "+DATA_FILE_NAME); 54 indexes=new int[count]; 56 indexes[0]=count; 58 indexes[i]=bytes.getInt(); 63 int expectedTrieLength=indexes[IX_TRIE_SIZE]; 72 count=indexes[IX_MIRROR_LENGTH]; 78 count=indexes[IX_JG_LIMIT]-indexes[IX_JG_START]; 83 count=indexes[IX_JG_LIMIT2]-indexes[IX_JG_START2] 255 private int indexes[]; field in class:UBiDiProps [all...] |
StringPrepDataReader.java | 60 int[] indexes = new int[length]; local 61 //Read the indexes 63 indexes[i] = byteBuffer.getInt(); 65 return indexes;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
UBiDiProps.java | 44 // read indexes[] 48 throw new IOException("indexes[0] too small in "+DATA_FILE_NAME); 50 indexes=new int[count]; 52 indexes[0]=count; 54 indexes[i]=bytes.getInt(); 59 int expectedTrieLength=indexes[IX_TRIE_SIZE]; 68 count=indexes[IX_MIRROR_LENGTH]; 74 count=indexes[IX_JG_LIMIT]-indexes[IX_JG_START]; 79 count=indexes[IX_JG_LIMIT2]-indexes[IX_JG_START2] 251 private int indexes[]; field in class:UBiDiProps [all...] |
StringPrepDataReader.java | 58 int[] indexes = new int[length]; local 59 //Read the indexes 61 indexes[i] = byteBuffer.getInt(); 63 return indexes;
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
DictionaryData.java | 51 int[] indexes = new int[IX_COUNT]; local 52 // TODO: read indexes[IX_STRING_TRIE_OFFSET] first, then read a variable-length indexes[] 54 indexes[i] = bytes.getInt(); 56 int offset = indexes[IX_STRING_TRIE_OFFSET]; 62 int trieType = indexes[IX_TRIE_TYPE] & TRIE_TYPE_MASK; 63 int totalSize = indexes[IX_TOTAL_SIZE] - offset; 66 int transform = indexes[IX_TRANSFORM];
|
StringPrep.java | 195 /* indexes[] value names */ 209 // Indexes read from the data file 210 private int[] indexes; field in class:StringPrep 263 // read the indexes 264 indexes = reader.readIndexes(INDEX_TOP); 268 //indexes[INDEX_MAPPING_DATA_SIZE] store the size of mappingData in bytes 270 mappingData = reader.read(indexes[INDEX_MAPPING_DATA_SIZE]/2); 276 doNFKC = ((indexes[OPTIONS] & NORMALIZATION_ON) > 0); 277 checkBiDi = ((indexes[OPTIONS] & CHECK_BIDI_ON) > 0); 279 normCorrVer = getVersionInfo(indexes[NORM_CORRECTNS_LAST_UNI_VERSION]) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
DictionaryData.java | 50 int[] indexes = new int[IX_COUNT]; local 51 // TODO: read indexes[IX_STRING_TRIE_OFFSET] first, then read a variable-length indexes[] 53 indexes[i] = bytes.getInt(); 55 int offset = indexes[IX_STRING_TRIE_OFFSET]; 61 int trieType = indexes[IX_TRIE_TYPE] & TRIE_TYPE_MASK; 62 int totalSize = indexes[IX_TOTAL_SIZE] - offset; 65 int transform = indexes[IX_TRANSFORM];
|
StringPrep.java | 210 /* indexes[] value names */ 224 // Indexes read from the data file 225 private int[] indexes; field in class:StringPrep 279 // read the indexes 280 indexes = reader.readIndexes(INDEX_TOP); 284 //indexes[INDEX_MAPPING_DATA_SIZE] store the size of mappingData in bytes 286 mappingData = reader.read(indexes[INDEX_MAPPING_DATA_SIZE]/2); 292 doNFKC = ((indexes[OPTIONS] & NORMALIZATION_ON) > 0); 293 checkBiDi = ((indexes[OPTIONS] & CHECK_BIDI_ON) > 0); 295 normCorrVer = getVersionInfo(indexes[NORM_CORRECTNS_LAST_UNI_VERSION]) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/ |
index.yaml | 18 indexes: 43 # saying "# AUTOGENERATED"). If you want to manage some indexes
|
/development/tools/idegen/src/com/android/idegen/ |
ModuleCache.java | 36 ModuleIndexes indexes; field in class:ModuleCache 50 indexes = new ModuleIndexes(indexFile); 51 indexes.build(); 71 Preconditions.checkState(indexes != null, "You must call init() first."); 74 String makeFile = indexes.getMakeFile(moduleName);
|
/external/icu/icu4c/source/common/ |
ubidi_props.c | 32 const int32_t *indexes; member in struct:UBiDiProps 78 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH]; 85 start=bdp->indexes[UBIDI_IX_JG_START]; 86 limit=bdp->indexes[UBIDI_IX_JG_LIMIT]; 102 if(limit==bdp->indexes[UBIDI_IX_JG_LIMIT]) { 104 start=bdp->indexes[UBIDI_IX_JG_START2]; 105 limit=bdp->indexes[UBIDI_IX_JG_LIMIT2]; 127 max=bdp->indexes[UBIDI_MAX_VALUES_INDEX]; 167 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH]; 214 start=bdp->indexes[UBIDI_IX_JG_START] [all...] |
ucol_swp.cpp | 386 int32_t indexes[IX_TOTAL_SIZE+1]; local 397 int32_t indexesLength=indexes[0]=udata_readInt32(ds, inIndexes[0]); 407 indexes[i]=udata_readInt32(ds, inIndexes[i]); 410 indexes[i]=-1; 412 inIndexes=NULL; // Make sure we do not accidentally use these instead of indexes[]. 417 size=indexes[IX_TOTAL_SIZE]; 419 size=indexes[indexesLength-1]; 438 // Swap the int32_t indexes[]. 442 // Here we use indexes[] not inIndexes[] because 444 int32_t index; // one of the indexes[] slot [all...] |
dictionarydata.cpp | 167 int32_t indexes[DictionaryData::IX_COUNT]; local 190 if (length < (int32_t)(sizeof(indexes))) { 198 indexes[i] = udata_readInt32(ds, inIndexes[i]); 201 size = indexes[DictionaryData::IX_TOTAL_SIZE]; 215 ds->swapArray32(ds, inBytes, sizeof(indexes), outBytes, pErrorCode); 216 offset = (int32_t)sizeof(indexes); 217 int32_t trieType = indexes[DictionaryData::IX_TRIE_TYPE] & DictionaryData::TRIE_TYPE_MASK; 218 int32_t nextOffset = indexes[DictionaryData::IX_RESERVED1_OFFSET]; 233 nextOffset = indexes[DictionaryData::IX_RESERVED2_OFFSET]; 235 nextOffset = indexes[DictionaryData::IX_TOTAL_SIZE] [all...] |
/external/ImageMagick/www/source/core/ |
sigmoidal-contrast.c | 17 *indexes; local 34 indexes=GetImageViewAuthenticIndexes(contrast_view); 35 if (indexes != (IndexPacket *) NULL) 37 indexes[x]=(IndexPacket) RoundToQuantum(SigmoidalContrast(indexes[x]));
|
/external/icu/icu4c/source/tools/gennorm2/ |
n2builder.cpp | 179 memset(indexes, 0, sizeof(indexes)); [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
CollectionUtils.java | 68 Map indexes = new HashMap(); local 71 indexes.put(it.next(), new Integer(index++)); 73 return indexes;
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
CallbackHelper.java | 36 Map indexes = new HashMap(); local 47 Integer index = (Integer)indexes.get(callback); 50 indexes.put(callback, index);
|
/external/opencv3/modules/ts/misc/ |
chart.py | 73 def nextPermutation(indexes, lists, x, y): 74 idx = len(indexes)-1 80 v = indexes[idx] + 1 82 indexes[idx] = v; 85 indexes[idx] = 0; 89 def getTestWideName(sname, indexes, lists, x, y): 91 for i in range(len(indexes)): 99 name += lists[i][indexes[i]] 187 indexes = [0] * argsnum 201 if v[i] != arglists[i][indexes[i]] [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
FieldProviderTransformer.java | 84 int indexes[] = new int[names.length]; local 85 for (int i = 0; i < indexes.length; i++) { 86 indexes[i] = i; 98 setByIndex(names, indexes); 99 getByIndex(names, indexes); 134 private void setByIndex(final String[] names, final int[] indexes) throws Exception { 139 e.process_switch(indexes, new ProcessSwitchCallback() { 153 private void getByIndex(final String[] names, final int[] indexes) throws Exception { 157 e.process_switch(indexes, new ProcessSwitchCallback() {
|