Searched refs:nIndex (Results 1 - 6 of 6) sorted by relevance

/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DCharacterHelper.cpp55 int nCharacters = 0; int nIndex = 0;
56 while (pUTF8[nIndex] != 0)
58 if ((pUTF8[nIndex] & 0x80) == 0)
59 nIndex += 1;
60 else if ((pUTF8[nIndex] & 0xE0) == 0xE0)
61 nIndex += 3;
63 nIndex += 2;
70 nIndex = 0; nCharacters = 0;
71 while (pUTF8[nIndex] != 0)
73 if ((pUTF8[nIndex]
[all...]
H A DRollBuffer.h57 __inline TYPE & operator[](const int nIndex) const
59 return m_pCurrent[nIndex];
109 __inline TYPE & operator[](const int nIndex) const
111 return m_pCurrent[nIndex];
H A DAPELink.cpp75 char cImageFile[MAX_PATH + 1]; int nIndex = 0; local
78 cImageFile[nIndex++] = *pImageCharacter++;
79 cImageFile[nIndex] = 0;
H A DAPETag.cpp123 CAPETagField * CAPETag::GetTagField(int nIndex) argument
127 if ((nIndex >= 0) && (nIndex < m_nFields))
129 return m_aryFields[nIndex];
325 int nIndex = GetTagFieldIndex(pFieldName); local
326 return (nIndex != -1) ? m_aryFields[nIndex] : NULL;
614 int CAPETag::RemoveField(int nIndex) argument
616 if ((nIndex >= 0) && (nIndex < m_nField
[all...]
H A DAPETag.h248 virtual int RemoveField(int nIndex);
268 virtual CAPETagField * GetTagField(int nIndex);
/haiku/src/apps/cortex/ValControl/
H A DValControl.cpp483 uint16 nIndex = _LocationToIndex(from, distance); local
485 _InsertEntry(entry, nIndex);
486 // linkSegment(segment, nIndex);
518 uint16 nIndex = _LocationToIndex(from, distance); local
519 ASSERT(nIndex < fLayoutSet.size());
520 return fLayoutSet[nIndex];
527 uint16 nIndex = _LocationToIndex(FROM_LEFT, offset);
528 ASSERT(nIndex < fLayoutSet.size());
529 return fLayoutSet[nIndex];

Completed in 75 milliseconds