/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/sys/ |
exec_elf.h | 66 * e_ident[] identification indexes 231 /* Special Section Indexes */ 233 #define SHN_LORESERVE 0xff00 /* lower bounds of reserved indexes */ 235 #define SHN_HIPROC 0xff1f /* specific section indexes */ 238 #define SHN_HIRESERVE 0xffff /* upper bounds of reserved indexes */ 257 #define SHT_HIUSER 0xffffffff /* specific indexes */
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/sys/ |
exec_elf.h | 66 * e_ident[] identification indexes 231 /* Special Section Indexes */ 233 #define SHN_LORESERVE 0xff00 /* lower bounds of reserved indexes */ 235 #define SHN_HIPROC 0xff1f /* specific section indexes */ 238 #define SHN_HIRESERVE 0xffff /* upper bounds of reserved indexes */ 257 #define SHT_HIUSER 0xffffffff /* specific indexes */
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/sys/ |
exec_elf.h | 66 * e_ident[] identification indexes 231 /* Special Section Indexes */ 233 #define SHN_LORESERVE 0xff00 /* lower bounds of reserved indexes */ 235 #define SHN_HIPROC 0xff1f /* specific section indexes */ 238 #define SHN_HIRESERVE 0xffff /* upper bounds of reserved indexes */ 257 #define SHT_HIUSER 0xffffffff /* specific indexes */
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/sys/ |
exec_elf.h | 66 * e_ident[] identification indexes 231 /* Special Section Indexes */ 233 #define SHN_LORESERVE 0xff00 /* lower bounds of reserved indexes */ 235 #define SHN_HIPROC 0xff1f /* specific section indexes */ 238 #define SHN_HIRESERVE 0xffff /* upper bounds of reserved indexes */ 257 #define SHT_HIUSER 0xffffffff /* specific indexes */
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/sys/ |
exec_elf.h | 66 * e_ident[] identification indexes 231 /* Special Section Indexes */ 233 #define SHN_LORESERVE 0xff00 /* lower bounds of reserved indexes */ 235 #define SHN_HIPROC 0xff1f /* specific section indexes */ 238 #define SHN_HIRESERVE 0xffff /* upper bounds of reserved indexes */ 257 #define SHT_HIUSER 0xffffffff /* specific indexes */
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/sys/ |
exec_elf.h | 66 * e_ident[] identification indexes 231 /* Special Section Indexes */ 233 #define SHN_LORESERVE 0xff00 /* lower bounds of reserved indexes */ 235 #define SHN_HIPROC 0xff1f /* specific section indexes */ 238 #define SHN_HIRESERVE 0xffff /* upper bounds of reserved indexes */ 257 #define SHT_HIUSER 0xffffffff /* specific indexes */
|
/external/chromium_org/third_party/icu/source/tools/makeconv/ |
genmbcs.c | 246 * stage table uses direct indexes into stage 3, without a multiplier and 279 * Stage 2 indexes count 16-blocks in stage 3 as follows: 280 * SBCS: directly, indexes increment by 16 281 * MBCS: indexes need to be multiplied by 16*maxCharLength, indexes increment by 1 282 * MBCS UTF-8: directly, indexes increment by 16 [all...] |
/external/icu4c/tools/makeconv/ |
genmbcs.cpp | 246 * stage table uses direct indexes into stage 3, without a multiplier and 279 * Stage 2 indexes count 16-blocks in stage 3 as follows: 280 * SBCS: directly, indexes increment by 16 281 * MBCS: indexes need to be multiplied by 16*maxCharLength, indexes increment by 1 282 * MBCS UTF-8: directly, indexes increment by 16 [all...] |
/external/chromium_org/third_party/icu/source/common/ |
utrie2_builder.c | 162 /* set the index-2 indexes for the 2=0x80>>UTRIE2_SHIFT_2 ASCII data blocks */ 188 * set the remaining indexes in the BMP index-2 block 203 /* set the indexes in the null index-2 block */ 210 /* set the index-1 indexes for the linear index-2 block */ 218 /* set the remaining index-1 indexes to the null index-2 block */ 896 * Indexes for supplementary code points higher than this will be omitted. [all...] |
/external/icu4c/common/ |
utrie2_builder.cpp | 162 /* set the index-2 indexes for the 2=0x80>>UTRIE2_SHIFT_2 ASCII data blocks */ 188 * set the remaining indexes in the BMP index-2 block 203 /* set the indexes in the null index-2 block */ 210 /* set the index-1 indexes for the linear index-2 block */ 218 /* set the remaining index-1 indexes to the null index-2 block */ 896 * Indexes for supplementary code points higher than this will be omitted. [all...] |
/external/icu4c/test/intltest/ |
utxttest.cpp | 170 // Build up a mapping between code points and UTF-16 code unit indexes. 289 // nativeMap Mapping from code points to native indexes for the UText. 290 // u16Map Mapping from code points to UTF-16 indexes, for use with the UnicodeString. 302 int srcIndex = 0; // Code Point indexes of the block to operate on for 307 int32_t nativeStart = 0; // Native unit indexes for a test. 311 int32_t u16Start = 0; // UTF-16 indexes for a test. 315 // Iterate over a whole series of source index, length and a target indexes. 316 // This is done with code point indexes; these will be later translated to native 317 // indexes using the cpMap. [all...] |
/external/chromium_org/content/child/indexed_db/ |
indexed_db_dispatcher.cc | 104 web_store_metadata.indexes = 105 WebVector<WebIDBMetadata::Index>(idb_store_metadata.indexes.size()); 107 for (size_t j = 0; j < idb_store_metadata.indexes.size(); ++j) { 109 idb_store_metadata.indexes[j]; 110 WebIDBMetadata::Index& web_index_metadata = web_store_metadata.indexes[j];
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorIndexedDBAgent.cpp | 276 RefPtr<TypeBuilder::Array<TypeBuilder::IndexedDB::ObjectStoreIndex> > indexes = TypeBuilder::Array<TypeBuilder::IndexedDB::ObjectStoreIndex>::create(); local 278 for (IDBObjectStoreMetadata::IndexMap::const_iterator it = objectStoreMetadata.indexes.begin(); it != objectStoreMetadata.indexes.end(); ++it) { 286 indexes->addItem(objectStoreIndex); 293 .setIndexes(indexes);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
FilteredItemSelectionDialog.js | 693 var indexes = []; 694 var score = new WebInspector.FilePathScoreFunction(query).score(subtitleElement.textContent, indexes); 697 for (var i = 0; i < indexes.length; ++i) 698 ranges.push({offset: indexes[i], length: 1}); 699 if (indexes[0] > fileNameIndex) {
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
cpp_message.py | 261 # Sort the list of current indexes by the underlying object. 262 indexes = range(len(self)) 263 indexes.sort(cmp=cmp, key=index_key, reverse=reverse) 266 for dest, src in enumerate(indexes): 271 indexes[src] = src
|
/libcore/luni/src/main/java/java/sql/ |
Statement.java | 183 * specified by the supplied array of column indexes, if the SQL statement 192 * an array of indexes of the columns in the inserted row which 206 * specified by the supplied array of column indexes, if the SQL statement 313 * generated keys specified by the supplied array of column indexes. 319 * an array of indexes of the columns in the inserted row which
|
/cts/tests/tests/widget/src/android/widget/cts/ |
SimpleExpandableListAdapterTest.java | 159 // the following indexes are out of bounds 310 // following indexes are out of bounds 397 // following indexes are out of bounds
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
TreeAdaptor.as | 125 * as the setting of start/stop indexes relies on a single non-nil root 129 * unless there is only one ID. For a list, the start/stop indexes 193 * That node would contain the start/stop indexes then.
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
ITreeAdaptor.cs | 149 * as the setting of start/stop indexes relies on a single non-nil root 155 * unless there is only one ID. For a list, the start/stop indexes 266 * That node would contain the start/stop indexes then.
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
ITreeAdaptor.cs | 205 * as the setting of start/stop indexes relies on a single non-nil root 211 * unless there is only one ID. For a list, the start/stop indexes 286 * That node would contain the start/stop indexes then.
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreeAdaptor.java | 127 * as the setting of start/stop indexes relies on a single non-nil root 131 * unless there is only one ID. For a list, the start/stop indexes 216 * That node would contain the start/stop indexes then.
|
/external/chromium_org/chrome/browser/ui/webui/task_manager/ |
task_manager_handler.cc | 165 void TaskManagerHandler::DisableTaskManager(const ListValue* indexes) { 174 void TaskManagerHandler::EnableTaskManager(const ListValue* indexes) { 186 void TaskManagerHandler::OpenAboutMemory(const ListValue* indexes) {
|
/external/chromium_org/content/common/indexed_db/ |
indexed_db_messages.h | 133 // The names of the indexes used below. 204 // The indexes that we're setting keys on. 272 IPC_STRUCT_MEMBER(std::vector<IndexedDBIndexMetadata>, indexes)
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
ArmatureModifier.java | 68 /** The indexes of bones applied to vertices. */
126 // read mesh indexes
220 * This method reads mesh indexes
|
/external/llvm/include/llvm/CodeGen/ |
MachineModuleInfo.h | 122 /// indexes. 341 /// site indexes. 344 /// getCallSiteLandingPad - Get the call site indexes for a landing pad EH
|