/third_party/node/deps/icu-small/source/common/ |
D | uniquecharstr.h | 73 int32_t newIndex = strings->length(); in add() local 75 uhash_puti(&map, const_cast<char16_t *>(p), newIndex, &errorCode); in add() 76 return newIndex; in add()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | uniquecharstr.h | 73 int32_t newIndex = strings->length(); in add() local 75 uhash_puti(&map, const_cast<char16_t *>(p), newIndex, &errorCode); in add() 76 return newIndex; in add()
|
/third_party/icu/icu4c/source/common/ |
D | uniquecharstr.h | 73 int32_t newIndex = strings->length(); in add() local 75 uhash_puti(&map, const_cast<char16_t *>(p), newIndex, &errorCode); in add() 76 return newIndex; in add()
|
/third_party/icu/icu4c/source/tools/toolutil/ |
D | toolutil.cpp | 336 int32_t newIndex=oldIndex+1; in utm_alloc() local 337 if(utm_hasCapacity(mem, newIndex)) { in utm_alloc() 339 mem->idx=newIndex; in utm_alloc() 349 int32_t newIndex=oldIndex+n; in utm_allocN() local 350 if(utm_hasCapacity(mem, newIndex)) { in utm_allocN() 352 mem->idx=newIndex; in utm_allocN()
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/toolutil/ |
D | toolutil.cpp | 337 int32_t newIndex=oldIndex+1; in utm_alloc() local 338 if(utm_hasCapacity(mem, newIndex)) { in utm_alloc() 340 mem->idx=newIndex; in utm_alloc() 350 int32_t newIndex=oldIndex+n; in utm_allocN() local 351 if(utm_hasCapacity(mem, newIndex)) { in utm_allocN() 353 mem->idx=newIndex; in utm_allocN()
|
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
D | toolutil.cpp | 336 int32_t newIndex=oldIndex+1; in utm_alloc() local 337 if(utm_hasCapacity(mem, newIndex)) { in utm_alloc() 339 mem->idx=newIndex; in utm_alloc() 349 int32_t newIndex=oldIndex+n; in utm_allocN() local 350 if(utm_hasCapacity(mem, newIndex)) { in utm_allocN() 352 mem->idx=newIndex; in utm_allocN()
|
/third_party/node/deps/icu-small/source/tools/toolutil/ |
D | toolutil.cpp | 360 int32_t newIndex=oldIndex+1; in utm_alloc() local 361 if(utm_hasCapacity(mem, newIndex)) { in utm_alloc() 363 mem->idx=newIndex; in utm_alloc() 373 int32_t newIndex=oldIndex+n; in utm_allocN() local 374 if(utm_hasCapacity(mem, newIndex)) { in utm_allocN() 376 mem->idx=newIndex; in utm_allocN()
|
/third_party/jsframework/runtime/vdom/ |
D | Element.ts | 368 …public insertIndex(target: Node, newIndex: number, { changeSibling = false, isInPureChildren = fal… 370 if (newIndex < 0) { 371 newIndex = 0; 373 const before: Node = list[newIndex - 1]; constant 374 const after: Node = list[newIndex]; constant 375 list.splice(newIndex, 0, target); 382 return newIndex; 394 …public moveIndex(target: Node, newIndex: number, { changeSibling = false, isInPureChildren = false… 407 let newIndexAfter = newIndex; 408 if (index <= newIndex) { [all …]
|
/third_party/libevdev/doc/html/search/ |
D | search.js | 620 var newIndex = itemIndex-1; 621 var focusItem = this.NavPrev(newIndex); 631 tmpElem = document.getElementById('Item'+newIndex+'_c'+n); 655 var newIndex = itemIndex+1; 663 if (!focusItem) focusItem = this.NavNext(newIndex); 700 var newIndex = childIndex-1; 701 document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); 710 var newIndex = childIndex+1; 711 var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);
|
/third_party/libjpeg-turbo/doc/html/search/ |
D | search.js | 618 var newIndex = itemIndex-1; 619 var focusItem = this.NavPrev(newIndex); 629 tmpElem = document.getElementById('Item'+newIndex+'_c'+n); 653 var newIndex = itemIndex+1; 661 if (!focusItem) focusItem = this.NavNext(newIndex); 698 var newIndex = childIndex-1; 699 document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); 708 var newIndex = childIndex+1; 709 var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);
|
/third_party/skia/third_party/externals/oboe/docs/reference/search/ |
D | search.js | 618 var newIndex = itemIndex-1; 619 var focusItem = this.NavPrev(newIndex); 629 tmpElem = document.getElementById('Item'+newIndex+'_c'+n); 653 var newIndex = itemIndex+1; 661 if (!focusItem) focusItem = this.NavNext(newIndex); 698 var newIndex = childIndex-1; 699 document.getElementById('Item'+itemIndex+'_c'+newIndex).focus(); 708 var newIndex = childIndex+1; 709 var elem = document.getElementById('Item'+itemIndex+'_c'+newIndex);
|
/third_party/flutter/flutter/examples/catalog/lib/ |
D | app_bar_bottom.dart | 28 final int newIndex = _tabController.index + delta; 29 if (newIndex < 0 || newIndex >= _tabController.length) 31 _tabController.animateTo(newIndex);
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | parsepos.h | 69 ParsePosition(int32_t newIndex) in ParsePosition() argument 71 index(newIndex), in ParsePosition()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
D | parsepos.h | 66 ParsePosition(int32_t newIndex) in ParsePosition() argument 68 index(newIndex), in ParsePosition()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | parsepos.h | 69 ParsePosition(int32_t newIndex) in ParsePosition() argument 71 index(newIndex), in ParsePosition()
|
/third_party/icu/icu4c/source/common/unicode/ |
D | parsepos.h | 69 ParsePosition(int32_t newIndex) in ParsePosition() argument 71 index(newIndex), in ParsePosition()
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/ |
D | reorderable_list_demo.dart | 165 void _onReorder(int oldIndex, int newIndex) { 167 if (newIndex > oldIndex) { 168 newIndex -= 1; 171 _items.insert(newIndex, item);
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | reorderable_list.dart | 21 /// and reinsert it at [newIndex]. 23 /// If [oldIndex] is before [newIndex], removing the item at [oldIndex] from the 26 /// [newIndex]. 35 /// void handleReorder(int oldIndex, int newIndex) { 36 /// if (oldIndex < newIndex) { 38 /// newIndex -= 1; 41 /// backingList.insert(newIndex, element); 45 typedef ReorderCallback = void Function(int oldIndex, int newIndex);
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | choicfmt.cpp | 521 int32_t newIndex = start + len; in parseArgument() local 522 if (newIndex > furthest) { in parseArgument() 523 furthest = newIndex; in parseArgument()
|
/third_party/icu/icu4c/source/i18n/ |
D | choicfmt.cpp | 521 int32_t newIndex = start + len; in parseArgument() local 522 if (newIndex > furthest) { in parseArgument() 523 furthest = newIndex; in parseArgument()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | choicfmt.cpp | 521 int32_t newIndex = start + len; in parseArgument() local 522 if (newIndex > furthest) { in parseArgument() 523 furthest = newIndex; in parseArgument()
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | choicfmt.cpp | 521 int32_t newIndex = start + len; in parseArgument() local 522 if (newIndex > furthest) { in parseArgument() 523 furthest = newIndex; in parseArgument()
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | reorderable_list_test.dart | 16 void onReorder(int oldIndex, int newIndex) { 17 if (oldIndex < newIndex) { 18 newIndex -= 1; 21 listItems.insert(newIndex, element); 135 onReorder: (int oldIndex, int newIndex) { }, 201 onReorder: (int oldIndex, int newIndex) { }, 218 onReorder: (int oldIndex, int newIndex) { }, 235 onReorder: (int oldIndex, int newIndex) { }, 273 onReorder: (int oldIndex, int newIndex) { }, 455 onReorder: (int oldIndex, int newIndex) { }, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | SlotIndexes.h | 568 SlotIndex newIndex(&*newItr, SlotIndex::Slot_Block); 569 mi2iMap.insert(std::make_pair(&MI, newIndex)); 570 return newIndex;
|
/third_party/typescript/src/services/refactors/ |
D | convertStringOrTemplateLiteral.ts | 191 const [newIndex, subsequentText, stringIndexes] = concatConsecutiveString(i + 1, nodes); constant 192 i = newIndex - 1;
|