Searched refs:fromIndex (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10.1/tcl-105/tk/tk/generic/ttk/
H A DttkManager.c492 /* ++ Ttk_ReorderSlave(mgr, fromIndex, toIndex) --
495 void Ttk_ReorderSlave(Ttk_Manager *mgr, int fromIndex, int toIndex) argument
497 Ttk_Slave *moved = mgr->slaves[fromIndex];
500 while (fromIndex > toIndex) {
501 mgr->slaves[fromIndex] = mgr->slaves[fromIndex - 1];
502 --fromIndex;
505 while (fromIndex < toIndex) {
506 mgr->slaves[fromIndex] = mgr->slaves[fromIndex
[all...]
H A DttkManager.h57 MODULE_SCOPE void Ttk_ReorderSlave(Ttk_Manager *, int fromIndex, int toIndex);
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DPreciseJumpTargets.cpp118 unsigned fromIndex = 0; local
120 while (fromIndex < out.size()) {
121 unsigned value = out[fromIndex++];
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredList.java495 * fromIndex, inclusive, and toIndex, exclusive.
502 public List subList(int fromIndex, int toIndex) { argument
504 if (fromIndex < 0 || fromIndex > toIndex) {
505 throw new IndexOutOfBoundsException(String.valueOf(fromIndex));
508 int newBaseIndex = baseIndex + fromIndex;
510 view.subView(new Long(fromIndex), true,
/macosx-10.10.1/JavaScriptCore-7600.1.17/jit/
H A DReg.h69 static Reg fromIndex(unsigned index) function in class:JSC::Reg
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dscriptset.cpp181 int32_t ScriptSet::nextSetBit(int32_t fromIndex) const {
183 if (fromIndex < 0) {
187 for (int32_t scriptIndex = fromIndex; scriptIndex < (int32_t)sizeof(bits)*8; scriptIndex++) {
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGCPSRethreadingPhase.cpp82 unsigned fromIndex = 0; local
84 while (fromIndex < block->size()) {
85 Node* node = block->at(fromIndex++);
/macosx-10.10.1/vim-55/runtime/autoload/
H A Dphpcomplete.vim5077 \ 'SDO_Sequence::move(': 'int toIndex, int fromIndex | void',

Completed in 304 milliseconds