Searched refs:index (Results 176 - 200 of 3714) sorted by relevance

1234567891011>>

/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCList.h30 void* At(ArrayIndex index);
38 IrDAErr InsertBefore(ArrayIndex index, void* item);
39 IrDAErr InsertAt(ArrayIndex index, void* item);
46 IrDAErr RemoveAt(ArrayIndex index);
53 IrDAErr ReplaceAt(ArrayIndex index, void* newItem);
64 void* Search(CItemComparer* test, ArrayIndex& index);
72 // void* Ith(ArrayIndex index) { return At(index);}
90 inline IrDAErr CList::InsertBefore(ArrayIndex index, void* item) argument
91 { return InsertAt(index, ite
99 RemoveAt(ArrayIndex index) argument
[all...]
H A DCDynamicArray.h51 void* ElementPtrAt(ArrayIndex index);
52 void* SafeElementPtrAt(ArrayIndex index);
53 IrDAErr GetElementsAt(ArrayIndex index, void* elemPtr, ArrayIndex count);
55 IrDAErr ReplaceElementsAt(ArrayIndex index, void* elemPtr, ArrayIndex count);
56 IrDAErr RemoveElementsAt(ArrayIndex index, ArrayIndex count);
94 inline void* CDynamicArray::ElementPtrAt(ArrayIndex index) argument
95 { return (void*)((char *)fArrayBlock + (fElementSize * index)); }
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcasetrn.cpp43 csc->index=csc->cpStart;
47 csc->index=csc->cpLimit;
57 if(csc->start<csc->index) {
58 c=rep->char32At(csc->index-1);
60 csc->start=csc->index;
62 csc->index-=U16_LENGTH(c);
68 if(csc->index<csc->limit) {
69 c=rep->char32At(csc->index);
71 csc->limit=csc->index;
74 csc->index
[all...]
H A Dtranslit.cpp111 static inline UBool positionIsValid(UTransPosition& index, int32_t len) { argument
112 return !(index.contextStart < 0 ||
113 index.start < index.contextStart ||
114 index.limit < index.start ||
115 index.contextLimit < index.limit ||
116 len < index.contextLimit);
183 * @param start the beginning index, inclusiv
278 transliterate(Replaceable& text, UTransPosition& index, const UnicodeString& insertion, UErrorCode &status) const argument
300 transliterate(Replaceable& text, UTransPosition& index, UChar32 insertion, UErrorCode& status) const argument
319 transliterate(Replaceable& text, UTransPosition& index, UErrorCode& status) const argument
351 _transliterate(Replaceable& text, UTransPosition& index, const UnicodeString* insertion, UErrorCode &status) const argument
425 filteredTransliterate(Replaceable& text, UTransPosition& index, UBool incremental, UBool rollback) const argument
679 filteredTransliterate(Replaceable& text, UTransPosition& index, UBool incremental) const argument
1163 getElement(int32_t index, UErrorCode& ec) const argument
1317 getAvailableID(int32_t index) argument
1349 getAvailableSource(int32_t index, UnicodeString& result) argument
1365 getAvailableTarget(int32_t index, const UnicodeString& source, UnicodeString& result) argument
1383 getAvailableVariant(int32_t index, const UnicodeString& source, const UnicodeString& target, UnicodeString& result) argument
1399 _getAvailableSource(int32_t index, UnicodeString& result) argument
1408 _getAvailableTarget(int32_t index, const UnicodeString& source, UnicodeString& result) argument
1419 _getAvailableVariant(int32_t index, const UnicodeString& source, const UnicodeString& target, UnicodeString& result) argument
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/misc/
H A Dstack.c59 stack->position.index = -1;
93 stack->position.index = -1;
103 if (stack->position.index < 0) return(stack->error);
104 else return(stack->position.block->stack[stack->position.index]);
116 if (++stack->position.index >= stack->size)
131 stack->position.index = 0;
133 stack->position.block->stack[stack->position.index] = value;
152 if (stack->position.index < 0) return(-1);
153 else if (--stack->position.index < 0)
157 stack->position.index
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dhierarchy.rb268 def bbox(index)
269 list(tk_send_without_enc('bbox', _get_eval_enc_str(index)))
291 def dlineinfo(index)
292 list(tk_send_without_enc('dlineinfo', _get_eval_enc_str(index)))
295 def get(*index)
296 _fromUTF8(tk_send_without_enc('get', *index))
299 def index(index) method in class:Tk.QueryCommand.ValidateArgs.IndicatorCommand.ValidateArgs.IconCommand.ValidateArgs
300 tk_send_without_enc('index', _get_eval_enc_str(index))
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dmessagepattern.h198 * The part value is an index into an internal array of numeric values;
323 * the index of the corresponding _LIMIT "part".
618 * @param i The index of the Part data. (0..countParts()-1)
629 * @param i The index of the Part data. (0..countParts()-1)
638 * Returns the pattern index of the specified pattern "part".
640 * @param partIndex The index of the Part data. (0..countParts()-1)
641 * @return The pattern index of this Part.
645 return getPart(partIndex).index;
656 return msg.tempSubString(part.index, part.length);
667 return 0==msg.compare(part.index, par
824 int32_t index; member in class:MessagePattern::Part
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Duvector.cpp139 void UVector::setElementAt(void* obj, int32_t index) { argument
140 if (0 <= index && index < count) {
141 if (elements[index].pointer != 0 && deleter != 0) {
142 (*deleter)(elements[index].pointer);
144 elements[index].pointer = obj;
146 /* else index out of range */
149 void UVector::setElementAt(int32_t elem, int32_t index) { argument
150 if (0 <= index && index < coun
161 insertElementAt(void* obj, int32_t index, UErrorCode &status) argument
173 insertElementAt(int32_t elem, int32_t index, UErrorCode &status) argument
236 removeElementAt(int32_t index) argument
422 orphanElementAt(int32_t index) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/layout/
H A DGlyphPositionAdjustments.cpp31 const LEPoint *GlyphPositionAdjustments::getEntryPoint(le_int32 index, LEPoint &entryPoint) const argument
37 return fEntryExitPoints[index].getEntryPoint(entryPoint);
40 const LEPoint *GlyphPositionAdjustments::getExitPoint(le_int32 index, LEPoint &exitPoint)const argument
46 return fEntryExitPoints[index].getExitPoint(exitPoint);
49 void GlyphPositionAdjustments::clearEntryPoint(le_int32 index) argument
53 fEntryExitPoints[index].clearEntryPoint();
56 void GlyphPositionAdjustments::clearExitPoint(le_int32 index) argument
60 fEntryExitPoints[index].clearExitPoint();
63 void GlyphPositionAdjustments::setEntryPoint(le_int32 index, LEPoint &newEntryPoint, le_bool baselineIsLogicalEnd) argument
67 fEntryExitPoints[index]
70 setExitPoint(le_int32 index, LEPoint &newExitPoint, le_bool baselineIsLogicalEnd) argument
77 setCursiveGlyph(le_int32 index, le_bool baselineIsLogicalEnd) argument
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/MC/MCDisassembler/
H A DEDInst.cpp41 unsigned int index; local
44 for (index = 0; index < numOperands; ++index)
45 delete Operands[index];
49 for (index = 0; index < numTokens; ++index)
50 delete Tokens[index];
154 int EDInst::getOperand(EDOperand *&operand, unsigned int index) { argument
188 getToken(EDToken *&token, unsigned int index) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dcascade_cond.c173 block(int index) argument
175 (void) pthread_mutex_lock(&mxs[index]);
176 while (conds[index] != 0) {
177 (void) pthread_cond_wait(&cvs[index], &mxs[index]);
179 conds[index] = 1;
180 (void) pthread_mutex_unlock(&mxs[index]);
186 unblock(int index) argument
188 (void) pthread_mutex_lock(&mxs[index]);
189 conds[index]
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tools/
H A DTieredMMapArray.h64 T& operator[](size_t index) argument
66 ASSERT(index < m_size);
67 size_t block = index / entriesPerBlock;
68 size_t offset = index % entriesPerBlock;
91 size_t index = m_size;
92 size_t block = index / entriesPerBlock;
93 size_t offset = index % entriesPerBlock;
/macosx-10.10.1/apr-32/apr/apr/file_io/os2/
H A Dmaperrorcode.c80 int rv = -1, index; local
87 for (index=0; index<MAPSIZE && errormap[index][0] != err; index++);
89 if (index<MAPSIZE)
90 rv = errormap[index][1];
/macosx-10.10.1/libiconv-42/libiconv/tools/
H A Dcjk_variants.c32 int index; local
66 index = 0;
81 uni2index[j] = index;
88 variants[index++] = i-0x3000;
93 variants[index-1] |= 0x8000; /* end of list marker */
98 printf("static const unsigned short cjk_variants[%d] = {",index);
101 for (i = 0; i < index; i++) {
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-cache-old.mm406 uintptr_t index;
429 for (index = 0; index < old_cache->mask + 1; index += 1)
433 cache_entry *oldEntry = (cache_entry *)old_cache->buckets[index];
440 old_cache->buckets[index] = NULL;
471 for (index = 0; index < old_cache->mask + 1; index++) {
472 cache_entry *entry = (cache_entry *)old_cache->buckets[index];
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLAbstractHeap.cpp83 TypedPointer IndexedAbstractHeap::baseIndex(Output& out, LValue base, LValue index, JSValue indexAsConstant, ptrdiff_t offset) argument
91 result = out.add(base, index);
93 result = out.add(base, out.shl(index, m_scaleTerm));
95 result = out.add(base, out.mul(index, m_scaleTerm));
100 const AbstractField& IndexedAbstractHeap::atSlow(ptrdiff_t index) argument
102 ASSERT(static_cast<size_t>(index) >= m_smallIndices.size());
107 std::unique_ptr<AbstractField>& field = m_largeIndices->add(index, nullptr).iterator->value;
110 initialize(*field, index);
126 // For example if you access an indexed heap called FooBar at index 5, you'll
131 // Or if you access an indexed heap called Blah at index
141 size_t index; local
[all...]
/macosx-10.10.1/apr-32/apr/apr/threadproc/beos/
H A Dthreadpriv.c50 int i, index=0; local
56 index = i;
60 if (index == 0){
68 (*new) = (void*)beos_data[index]->data[key->key];
82 int i,index = 0, ret = 0; local
87 if (beos_data[i]->td == tid){index = i;}
90 if (index==0){
95 index = i;
104 if (index == 0){
111 if (beos_data[index]
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/regex/
H A Dregrexec.c46 register size_t index; local
72 index = leftlen++;
75 while ((index += skip[buf[index]]) < mid);
76 if (index < HIT)
78 index -= HIT;
79 m = mask[n = exactlen - 1][buf[index]];
84 } while (m &= mask[n][buf[--index]]);
85 if ((index += fail[n + 1]) < len)
96 r = (l = buf + index)
[all...]
/macosx-10.10.1/tcl-105/tk/tk/library/ttk/
H A Dnotebook.tcl52 set index [$w index @$x,$y]
53 if {$index ne ""} {
54 ActivateTab $w $index
62 if {[$w index end] != 0} {
63 set current [$w index current]
64 set select [expr {($current + $dir) % [$w index end]}]
66 set select [expr {($select + $dir) % [$w index end]}]
84 set mnemonic [string toupper [string index $label $underline]]
145 set index [lsearc
[all...]
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOConfigDirectory.h102 Gets the data type for entry at the specified index
104 @result kIOReturnSuccess if the index exists in the dictionary
106 virtual IOReturn getIndexType(int index, IOConfigKeyType &type);
109 Gets the key for entry at the specified index
111 @result kIOReturnSuccess if the index exists in the dictionary
113 virtual IOReturn getIndexKey(int index, int &key);
117 Gets the value at the specified index of the directory,
120 @result kIOReturnSuccess if the index exists in the dictionary
124 virtual IOReturn getIndexValue(int index, UInt32 &value);
125 virtual IOReturn getIndexValue(int index, OSDat
[all...]
H A DIOFWUserPhysicalAddressSpace.cpp113 for( unsigned index = 0; index < segmentCount; ++index )
116 outSegments[ index ].location = fDescriptor->getPhysicalSegment( currentOffset, &length ) ;
117 outSegments[ index ].length = length;
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGScoreBoard.h80 uint32_t index = m_free.last(); local
83 ASSERT(!m_used[index]);
84 m_highWatermark = std::max(m_highWatermark, static_cast<unsigned>(index) + 1);
85 return virtualRegisterForLocal(index);
103 uint32_t index = child->virtualRegister().toLocal();
104 ASSERT(m_used[index] != max());
105 if (child->refCount() == ++m_used[index]) {
109 m_used[index] = 0;
110 m_free.append(index);
/macosx-10.10.1/ICU-531.30/icuSources/layoutex/
H A DLXUtilities.cpp58 le_int32 index = 0; local
61 index = extra;
67 if (value >= array[index + probe]) {
68 index += probe;
72 return index;
/macosx-10.10.1/IOHIDFamily-606.1.7/IOHIDSystem/IOHIDDescriptorParser/
H A DHIDUsageAndPageFromIndex.c61 * index - The usage Index
69 HIDReportItem *ptReportItem, UInt32 index,
105 * If the index is in the range
107 * Otherwise adjust the index by the size of the range
113 if (iUsages > index)
116 ptUsageAndPage->usage = ptUsageItem->usageMinimum + index;
119 index -= iUsages;
125 * If the index is zero
127 * Otherwise one less to index through
129 if (index
68 HIDUsageAndPageFromIndex(HIDPreparsedDataRef preparsedDataRef, HIDReportItem *ptReportItem, UInt32 index, HIDUsageAndPage *ptUsageAndPage) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecompiler/
H A DRegisterID.h61 explicit RegisterID(int index) argument
63 , m_virtualRegister(VirtualRegister(index))
71 void setIndex(int index) argument
77 m_virtualRegister = VirtualRegister(index);
85 int index() const function in class:JSC::RegisterID

Completed in 199 milliseconds

1234567891011>>