/external/clang/test/Index/ |
complete-kvc.m | 59 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text NSArray *}{RightParen )}{TypedText arrayPropertyAtIndexes:}{LeftParen (}{Text NSIndexSet *}{RightParen )}{Text indexes} (40) 61 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text NSArray *}{RightParen )}{TypedText boolPropertyAtIndexes:}{LeftParen (}{Text NSIndexSet *}{RightParen )}{Text indexes} (55) 69 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text void}{RightParen )}{TypedText insertIntProperty:}{LeftParen (}{Text NSArray *}{RightParen )}{Text array}{HorizontalSpace }{TypedText atIndexes:}{LeftParen (}{Placeholder NSIndexSet *}{RightParen )}{Text indexes} (55) 70 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text void}{RightParen )}{TypedText insertMutableArrayProperty:}{LeftParen (}{Text NSArray *}{RightParen )}{Text array}{HorizontalSpace }{TypedText atIndexes:}{LeftParen (}{Placeholder NSIndexSet *}{RightParen )}{Text indexes} (40) 83 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text NSArray *}{RightParen )}{TypedText mutableSetPropertyAtIndexes:}{LeftParen (}{Text NSIndexSet *}{RightParen )}{Text indexes} (55) 85 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text NSArray *}{RightParen )}{TypedText myArrayPropertyAtIndexes:}{LeftParen (}{Text NSIndexSet *}{RightParen )}{Text indexes} (40) 88 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text void}{RightParen )}{TypedText removeMyArrayPropertyAtIndexes:}{LeftParen (}{Text NSIndexSet *}{RightParen )}{Text indexes} (40) 89 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text void}{RightParen )}{TypedText removeMySetPropertyAtIndexes:}{LeftParen (}{Text NSIndexSet *}{RightParen )}{Text indexes} (55) 92 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text void}{RightParen )}{TypedText replaceMyArrayPropertyAtIndexes:}{LeftParen (}{Placeholder NSIndexSet *}{RightParen )}{Text indexes}{HorizontalSpace }{TypedText withMyArrayProperty:}{LeftParen (}{Text NSArray *}{RightParen )}{Text array} (40) 93 // CHECK-CC1: ObjCInstanceMethodDecl:{LeftParen (}{Text void}{RightParen )}{TypedText replaceMySetPropertyAtIndexes:}{LeftParen (}{Placeholder NSIndexSet *}{RightParen )}{Text indexes}{HorizontalSpace }{TypedText withMySetProperty:}{LeftParen (}{Text NSArray *}{RightParen )}{Text (…) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
pixeltransfer.c | 104 * Map color indexes to float rgba values. 196 GLuint n, GLuint indexes[]) 203 indexes[i] = (indexes[i] << shift) + offset; 209 indexes[i] = (indexes[i] >> shift) + offset; 214 indexes[i] = indexes[i] + offset; 223 * of color indexes; 228 GLuint n, GLuint indexes[]) [all...] |
pixeltransfer.h | 62 GLuint n, GLuint indexes[]); 67 GLuint n, GLuint indexes[]);
|
/external/mesa3d/src/mesa/main/ |
pixeltransfer.c | 104 * Map color indexes to float rgba values. 196 GLuint n, GLuint indexes[]) 203 indexes[i] = (indexes[i] << shift) + offset; 209 indexes[i] = (indexes[i] >> shift) + offset; 214 indexes[i] = indexes[i] + offset; 223 * of color indexes; 228 GLuint n, GLuint indexes[]) [all...] |
pixeltransfer.h | 62 GLuint n, GLuint indexes[]); 67 GLuint n, GLuint indexes[]);
|
/external/llvm/lib/CodeGen/ |
LiveRangeCalc.cpp | 27 Indexes = SI; 40 assert(MRI && Indexes && "call reset() first"); 51 Idx = Indexes->getMBBStartIdx(MI->getParent()); 54 Idx = Indexes->getInstructionIndex(MI) 64 assert(MRI && Indexes && "call reset() first"); 86 Idx = Indexes->getMBBEndIdx(MI->getOperand(I.getOperandNo()+1).getMBB()); 89 Idx = Indexes->getInstructionIndex(MI).getRegSlot(); 117 tie(Start, End) = Indexes->getMBBRange(MBB); 140 assert(Indexes && "Missing SlotIndexes"); 143 MachineBasicBlock *KillMBB = Indexes->getMBBFromIndex(Kill.getPrevSlot()) [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/js/cr/ui/ |
list_selection_model.js | 19 // iteration in the order of the indexes. 35 * @type {!Array} The selected indexes. 76 * Selects a range of indexes, starting with {@code start} and ends with 100 * Selects all indexes. 184 var indexes = Object.keys(this.changedIndexes_); 185 if (indexes.length) { 187 e.changes = indexes.map(function(index) {
|
/external/chromium_org/third_party/icu/source/common/ |
ucnvsel.cpp | 270 * int32_t indexes[UCNVSEL_INDEX_COUNT]; // see index entry constants above 271 * serialized UTrie2; // indexes[UCNVSEL_INDEX_TRIE_SIZE] bytes 272 * uint32_t pv[indexes[UCNVSEL_INDEX_PV_COUNT]]; // bit vectors 273 * char* encodingNames[indexes[UCNVSEL_INDEX_NAMES_LENGTH]]; // NUL-terminated strings + padding 306 int32_t indexes[UCNVSEL_INDEX_COUNT] = { local 315 (int32_t)sizeof(indexes) + 319 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize; 330 length = (int32_t)sizeof(indexes); 331 uprv_memcpy(p, indexes, length); 408 /* read the indexes */ 410 int32_t indexes[16]; local 538 const int32_t *indexes = (const int32_t *)p; local [all...] |
ucnv_ext.h | 95 * int32_t indexes[>=32]; 97 * Array of indexes and lengths etc. The length of the array is at least 32. 98 * The actual length is stored in indexes[0] to be forward compatible. 100 * Each index to another array is the number of bytes from indexes[]. 103 * Some of the structures may not be present, in which case their indexes 106 * Usage of indexes[i]: 107 * [0] length of indexes[] 126 * [13] index of fromUStage3[] (array of uint16_t indexes into fromUStage3b[]) 150 * [>31] reserved; there are indexes[0] indexes [all...] |
usprep.cpp | 270 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes)); 277 profile->mappingData=(uint16_t *)((uint8_t *)(p+_SPREP_INDEX_TOP)+profile->indexes[_SPREP_INDEX_TRIE_SIZE]); 284 normCorrVer = profile->indexes[_SPREP_NORM_CORRECTNS_LAST_UNI_VERSION]; 292 ((profile->indexes[_SPREP_OPTIONS] & _SPREP_NORMALIZATION_ON) > 0) /* normalization turned on*/ 353 newProfile->doNFKC = (UBool)((newProfile->indexes[_SPREP_OPTIONS] & _SPREP_NORMALIZATION_ON) > 0); 354 newProfile->checkBiDi = (UBool)((newProfile->indexes[_SPREP_OPTIONS] & _SPREP_CHECK_BIDI_ON) > 0); 531 const int32_t* indexes = profile->indexes; local 560 if(index >= indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_START] & 834 int32_t indexes[16]; local [all...] |
/external/icu4c/common/ |
ucnvsel.cpp | 272 * int32_t indexes[UCNVSEL_INDEX_COUNT]; // see index entry constants above 273 * serialized UTrie2; // indexes[UCNVSEL_INDEX_TRIE_SIZE] bytes 274 * uint32_t pv[indexes[UCNVSEL_INDEX_PV_COUNT]]; // bit vectors 275 * char* encodingNames[indexes[UCNVSEL_INDEX_NAMES_LENGTH]]; // NUL-terminated strings + padding 308 int32_t indexes[UCNVSEL_INDEX_COUNT] = { local 317 (int32_t)sizeof(indexes) + 321 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize; 332 length = (int32_t)sizeof(indexes); 333 uprv_memcpy(p, indexes, length); 410 /* read the indexes */ 412 int32_t indexes[16]; local 540 const int32_t *indexes = (const int32_t *)p; local [all...] |
ucnv_ext.h | 97 * int32_t indexes[>=32]; 99 * Array of indexes and lengths etc. The length of the array is at least 32. 100 * The actual length is stored in indexes[0] to be forward compatible. 102 * Each index to another array is the number of bytes from indexes[]. 105 * Some of the structures may not be present, in which case their indexes 108 * Usage of indexes[i]: 109 * [0] length of indexes[] 128 * [13] index of fromUStage3[] (array of uint16_t indexes into fromUStage3b[]) 152 * [>31] reserved; there are indexes[0] indexes [all...] |
dictionarydata.h | 139 * int32_t indexes[indexesLength]; -- indexesLength=indexes[IX_STRING_TRIE_OFFSET]/4; 141 * The first four indexes are byte offsets in ascending order. 146 * that is, from the beginning of the indexes[]. 150 * trieType=indexes[IX_TRIE_TYPE] defines the trie type. 151 * transform=indexes[IX_TRANSFORM] defines the Unicode-to-bytes transformation.
|
usprep.cpp | 267 uprv_memcpy(&profile->indexes, p, sizeof(profile->indexes)); 274 profile->mappingData=(uint16_t *)((uint8_t *)(p+_SPREP_INDEX_TOP)+profile->indexes[_SPREP_INDEX_TRIE_SIZE]); 281 normCorrVer = profile->indexes[_SPREP_NORM_CORRECTNS_LAST_UNI_VERSION]; 289 ((profile->indexes[_SPREP_OPTIONS] & _SPREP_NORMALIZATION_ON) > 0) /* normalization turned on*/ 350 newProfile->doNFKC = (UBool)((newProfile->indexes[_SPREP_OPTIONS] & _SPREP_NORMALIZATION_ON) > 0); 351 newProfile->checkBiDi = (UBool)((newProfile->indexes[_SPREP_OPTIONS] & _SPREP_CHECK_BIDI_ON) > 0); 528 const int32_t* indexes = profile->indexes; local 557 if(index >= indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_START] & 831 int32_t indexes[16]; local [all...] |
/external/icu4c/tools/gennorm2/ |
n2builder.cpp | 178 memset(indexes, 0, sizeof(indexes)); [all...] |
/external/chromium_org/third_party/icu/source/tools/makeconv/ |
gencnvex.c | 60 uint16_t stage3[0x10000<<UCNV_EXT_STAGE_2_LEFT_SHIFT]; /* 0x10000 because of 16-bit stage 2/3 indexes */ 119 int32_t indexes[UCNV_EXT_INDEXES_MIN_LENGTH]={ 0 }; local 145 /* fill indexes[] - offsets/indexes are in units of the target array */ 148 indexes[UCNV_EXT_INDEXES_LENGTH]=length=UCNV_EXT_INDEXES_MIN_LENGTH; 151 indexes[UCNV_EXT_TO_U_INDEX]=top; 152 indexes[UCNV_EXT_TO_U_LENGTH]=length=utm_countItems(extData->toUTable); 155 indexes[UCNV_EXT_TO_U_UCHARS_INDEX]=top; 156 indexes[UCNV_EXT_TO_U_UCHARS_LENGTH]=length=utm_countItems(extData->toUUChars); 159 indexes[UCNV_EXT_FROM_U_UCHARS_INDEX]=top [all...] |
/external/icu4c/tools/makeconv/ |
gencnvex.c | 60 uint16_t stage3[0x10000<<UCNV_EXT_STAGE_2_LEFT_SHIFT]; /* 0x10000 because of 16-bit stage 2/3 indexes */ 120 int32_t indexes[UCNV_EXT_INDEXES_MIN_LENGTH]={ 0 }; local 146 /* fill indexes[] - offsets/indexes are in units of the target array */ 149 indexes[UCNV_EXT_INDEXES_LENGTH]=length=UCNV_EXT_INDEXES_MIN_LENGTH; 152 indexes[UCNV_EXT_TO_U_INDEX]=top; 153 indexes[UCNV_EXT_TO_U_LENGTH]=length=utm_countItems(extData->toUTable); 156 indexes[UCNV_EXT_TO_U_UCHARS_INDEX]=top; 157 indexes[UCNV_EXT_TO_U_UCHARS_LENGTH]=length=utm_countItems(extData->toUUChars); 160 indexes[UCNV_EXT_FROM_U_UCHARS_INDEX]=top [all...] |
/external/chromium_org/chrome/browser/ui/webui/task_manager/ |
task_manager_handler.h | 44 void HandleKillProcesses(const base::ListValue* indexes); 52 void EnableTaskManager(const base::ListValue* indexes); 53 void DisableTaskManager(const base::ListValue* indexes); 54 void OpenAboutMemory(const base::ListValue* indexes);
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
example-bind.cpp | 207 template<int I, int... Indexes, typename T, typename... Types> 208 struct make_indexes_impl<I, int_tuple<Indexes...>, T, Types...> { 209 typedef typename make_indexes_impl<I+1, int_tuple<Indexes..., I>, Types...>::type type; 212 template<int I, int... Indexes> 213 struct make_indexes_impl<I, int_tuple<Indexes...> > { 214 typedef int_tuple<Indexes...> type; 232 typedef typename make_indexes<BoundArgs...>::type indexes; typedef in class:bound_functor 287 template<typename F, int... Indexes, typename... Args> 289 unwrap_and_forward(F& f, int_tuple<Indexes...>, const tuple<Args&...>& args) { 290 return f(get<Indexes>(args)...) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
tty.py | 9 # Indexes for termios list.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
tty.py | 9 # Indexes for termios list.
|
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/ |
table_selection_model.js | 14 * Selected items are stored, not indexes, so selections are preserved 51 * selected indexes changes are processed in adjustToReordering.
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
sprpdata.c | 153 int32_t* indexes = data->indexes; local 172 if(index >= indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_START] && 173 index < indexes[_SPREP_TWO_UCHARS_MAPPING_INDEX_START]){ 175 }else if(index >= indexes[_SPREP_TWO_UCHARS_MAPPING_INDEX_START] && 176 index < indexes[_SPREP_THREE_UCHARS_MAPPING_INDEX_START]){ 178 }else if(index >= indexes[_SPREP_THREE_UCHARS_MAPPING_INDEX_START] && 179 index < indexes[_SPREP_FOUR_UCHARS_MAPPING_INDEX_START]){
|
/external/icu4c/test/cintltst/ |
sprpdata.c | 154 int32_t* indexes = data->indexes; local 173 if(idx >= indexes[_SPREP_ONE_UCHAR_MAPPING_INDEX_START] && 174 idx < indexes[_SPREP_TWO_UCHARS_MAPPING_INDEX_START]){ 176 }else if(idx >= indexes[_SPREP_TWO_UCHARS_MAPPING_INDEX_START] && 177 idx < indexes[_SPREP_THREE_UCHARS_MAPPING_INDEX_START]){ 179 }else if(idx >= indexes[_SPREP_THREE_UCHARS_MAPPING_INDEX_START] && 180 idx < indexes[_SPREP_FOUR_UCHARS_MAPPING_INDEX_START]){
|
/external/llvm/include/llvm/CodeGen/ |
LiveIntervalAnalysis.h | 56 SlotIndexes* Indexes; 76 /// MI = Indexes->getInstructionFromIndex(RegMaskSlot[N]); 170 return Indexes; 180 return !Indexes->hasIndex(Instr); 185 return Indexes->getInstructionIndex(instr); 190 return Indexes->getInstructionFromIndex(index); 195 return Indexes->getMBBStartIdx(mbb); 200 return Indexes->getMBBEndIdx(mbb); 214 return Indexes->getMBBFromIndex(index); 218 Indexes->insertMBBInMaps(MBB) [all...] |