/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_localevalue.cpp | 447 int nIndex = 0; in ValidateCanonicalDate() local 449 while (pDate[nIndex] != '\0' && nIndex < wCountY) { in ValidateCanonicalDate() 450 if (!FXSYS_isDecimalDigit(pDate[nIndex])) in ValidateCanonicalDate() 453 wYear = (pDate[nIndex] - '0') + wYear * 10; in ValidateCanonicalDate() 454 nIndex++; in ValidateCanonicalDate() 457 if (pDate[nIndex] != 0x2D) in ValidateCanonicalDate() 459 nIndex++; in ValidateCanonicalDate() 462 nStart = nIndex; in ValidateCanonicalDate() 463 while (pDate[nIndex] != '\0' && nIndex - nStart < wCountM && nIndex < nLen) { in ValidateCanonicalDate() 464 if (!FXSYS_isDecimalDigit(pDate[nIndex])) in ValidateCanonicalDate() [all …]
|
D | cxfa_rectangle.cpp | 445 int32_t nIndex, in GetPath() argument 448 ASSERT(nIndex >= 0 && nIndex < 8); in GetPath() 450 int32_t n = (nIndex & 1) ? nIndex - 1 : nIndex; in GetPath() 462 CXFA_Stroke* stroke = strokes[nIndex]; in GetPath() 464 CXFA_Stroke* strokeBefore = strokes[(nIndex + 1 * 8 - 1) % 8]; in GetPath() 465 CXFA_Stroke* strokeAfter = strokes[nIndex + 1]; in GetPath() 473 CXFA_Stroke* strokeBefore = strokes[(nIndex + 8 - 2) % 8]; in GetPath() 474 CXFA_Stroke* strokeAfter = strokes[(nIndex + 2) % 8]; in GetPath() 495 switch (nIndex) { in GetPath() 500 if (nIndex == 0) { in GetPath() [all …]
|
/external/deqp-deps/glslang/glslang/OSDependent/Windows/ |
D | ossource.cpp | 61 inline DWORD ToNativeTLSIndex (OS_TLSIndex nIndex) in ToNativeTLSIndex() argument 63 return (DWORD)((uintptr_t)nIndex - 1); in ToNativeTLSIndex() 80 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue() argument 82 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_SetTLSValue() 87 if (TlsSetValue(ToNativeTLSIndex(nIndex), lpvValue)) in OS_SetTLSValue() 93 void* OS_GetTLSValue(OS_TLSIndex nIndex) in OS_GetTLSValue() argument 95 assert(nIndex != OS_INVALID_TLS_INDEX); in OS_GetTLSValue() 96 return TlsGetValue(ToNativeTLSIndex(nIndex)); in OS_GetTLSValue() 99 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument 101 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_FreeTLSIndex() [all …]
|
/external/deqp-deps/glslang/glslang/OSDependent/Unix/ |
D | ossource.cpp | 110 inline pthread_key_t TLSIndexToPthreadKey(OS_TLSIndex nIndex) in TLSIndexToPthreadKey() argument 112 return (pthread_key_t)((uintptr_t)nIndex - 1); in TLSIndexToPthreadKey() 130 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue() argument 132 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_SetTLSValue() 137 if (pthread_setspecific(TLSIndexToPthreadKey(nIndex), lpvValue) == 0) in OS_SetTLSValue() 143 void* OS_GetTLSValue(OS_TLSIndex nIndex) in OS_GetTLSValue() argument 148 assert(nIndex != OS_INVALID_TLS_INDEX); in OS_GetTLSValue() 149 return pthread_getspecific(TLSIndexToPthreadKey(nIndex)); in OS_GetTLSValue() 152 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument 154 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_FreeTLSIndex() [all …]
|
/external/pdfium/core/fpdfdoc/ |
D | cpdf_nametree.cpp | 159 size_t* nIndex, in SearchNameNodeByName() argument 202 *nIndex += i; in SearchNameNodeByName() 205 *nIndex += dwCount; in SearchNameNodeByName() 219 CPDF_Object* pFound = SearchNameNodeByName(pKid, csName, nLevel + 1, nIndex, in SearchNameNodeByName() 232 size_t nIndex, in SearchNameNodeByIndex() argument 244 if (nIndex >= *nCurIndex + nCount) { in SearchNameNodeByIndex() 251 *pFindIndex = nIndex - *nCurIndex; in SearchNameNodeByIndex() 253 *csName = pNames->GetUnicodeTextAt((nIndex - *nCurIndex) * 2); in SearchNameNodeByIndex() 254 return pNames->GetDirectObjectAt((nIndex - *nCurIndex) * 2 + 1); in SearchNameNodeByIndex() 266 pKid, nIndex, nLevel + 1, nCurIndex, csName, ppFind, pFindIndex); in SearchNameNodeByIndex() [all …]
|
D | cpdf_nametree.h | 28 bool DeleteValueAndName(int nIndex); 30 CPDF_Object* LookupValueAndName(int nIndex, WideString* csName) const;
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_list_impl.cpp | 281 int32_t nIndex = GetLastSelected(); in OnChar() local 282 int32_t nFindIndex = FindNext(nIndex, nChar); in OnChar() 284 if (nFindIndex != nIndex) { in OnChar() 299 CFX_FloatRect CPWL_ListCtrl::GetItemRect(int32_t nIndex) const { in GetItemRect() 300 return InToOut(GetItemRectInternal(nIndex)); in GetItemRect() 303 CFX_FloatRect CPWL_ListCtrl::GetItemRectInternal(int32_t nIndex) const { in GetItemRectInternal() 304 if (!pdfium::IndexInBounds(m_ListItems, nIndex) || !m_ListItems[nIndex]) in GetItemRectInternal() 307 CFX_FloatRect rcItem = m_ListItems[nIndex]->GetRect(); in GetItemRectInternal() 508 void CPWL_ListCtrl::SetTopItem(int32_t nIndex) { in SetTopItem() argument 509 if (IsValid(nIndex)) { in SetTopItem() [all …]
|
D | cpwl_list_impl.h | 63 CFX_FloatRect GetItemRect(int32_t nIndex) const; 72 void SetTopItem(int32_t nIndex); 85 CPWL_EditImpl* GetItemEdit(int32_t nIndex) const; 87 bool IsItemSelected(int32_t nIndex) const; 91 int32_t FindNext(int32_t nIndex, wchar_t nChar) const; 136 CFX_FloatRect GetItemRectInternal(int32_t nIndex) const; 146 WideString GetItemText(int32_t nIndex) const;
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ossource_posix.cpp | 44 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue() argument 46 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_SetTLSValue() 51 if (pthread_setspecific(nIndex, lpvValue) == 0) in OS_SetTLSValue() 58 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument 60 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_FreeTLSIndex() 68 if (pthread_key_delete(nIndex) == 0) in OS_FreeTLSIndex()
|
D | ossource_win.cpp | 40 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue) in OS_SetTLSValue() argument 42 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_SetTLSValue() 47 if (TlsSetValue(nIndex, lpvValue)) in OS_SetTLSValue() 54 bool OS_FreeTLSIndex(OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument 56 if (nIndex == OS_INVALID_TLS_INDEX) { in OS_FreeTLSIndex() 61 if (TlsFree(nIndex)) in OS_FreeTLSIndex()
|
D | osinclude.h | 60 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue); 61 bool OS_FreeTLSIndex(OS_TLSIndex nIndex); 63 inline void* OS_GetTLSValue(OS_TLSIndex nIndex) in OS_GetTLSValue() argument 65 ASSERT(nIndex != OS_INVALID_TLS_INDEX); in OS_GetTLSValue() 67 return TlsGetValue(nIndex); in OS_GetTLSValue() 69 return pthread_getspecific(nIndex); in OS_GetTLSValue()
|
/external/deqp/external/glslang/ |
D | osinclude.cpp | 43 bool OS_SetTLSValue (OS_TLSIndex nIndex, void* lpvValue) in OS_SetTLSValue() argument 45 deThreadLocal_set((deThreadLocal)nIndex, lpvValue); in OS_SetTLSValue() 49 bool OS_FreeTLSIndex (OS_TLSIndex nIndex) in OS_FreeTLSIndex() argument 51 deThreadLocal_destroy((deThreadLocal)nIndex); in OS_FreeTLSIndex() 55 void* OS_GetTLSValue (OS_TLSIndex nIndex) in OS_GetTLSValue() argument 57 return deThreadLocal_get((deThreadLocal)nIndex); in OS_GetTLSValue()
|
/external/pdfium/core/fxge/ |
D | cfx_unicodeencodingex.cpp | 46 FT_UInt nIndex = FXFT_Get_Char_Index(face, charcode); in GlyphFromCharCode() local 47 if (nIndex > 0) in GlyphFromCharCode() 48 return nIndex; in GlyphFromCharCode() 59 nIndex = FXFT_Get_Char_Index(face, charcode); in GlyphFromCharCode() 60 if (nIndex > 0) { in GlyphFromCharCode() 62 return nIndex; in GlyphFromCharCode()
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_widget.cpp | 304 int nIndex = pFormField->GetSelectedIndex(i); in Synchronize() local 305 if (nIndex > -1 && nIndex < pWidgetAcc->CountChoiceListItems(false)) in Synchronize() 306 pWidgetAcc->SetItemState(nIndex, true, false, false, true); in Synchronize() 314 int nIndex = pFormField->GetSelectedIndex(i); in Synchronize() local 315 if (nIndex > -1 && nIndex < pWidgetAcc->CountChoiceListItems(false)) in Synchronize() 316 pWidgetAcc->SetItemState(nIndex, true, false, false, true); in Synchronize() 395 int nIndex = pWidgetAcc->GetSelectedItem(i); in SynchronizeXFAValue() local 397 if (nIndex > -1 && nIndex < pFormField->CountOptions()) { in SynchronizeXFAValue() 398 pFormField->SetItemSelection(nIndex, true, true); in SynchronizeXFAValue() 409 int nIndex = pWidgetAcc->GetSelectedItem(i); in SynchronizeXFAValue() local [all …]
|
D | cpdfsdk_widget.h | 83 int GetSelectedIndex(int nIndex) const; 90 WideString GetOptionLabel(int nIndex) const; 92 bool IsOptionSelected(int nIndex) const;
|
/external/mdnsresponder/mDNSWindows/ControlPanel/ |
D | BrowsingPage.cpp | 106 int nIndex; in OnSetActive() local 156 nIndex = m_browseListCtrl.InsertItem( m_browseListCtrl.GetItemCount(), L""); in OnSetActive() 157 m_browseListCtrl.SetItemText( nIndex, 1, subKeyName ); in OnSetActive() 158 m_browseListCtrl.SetCheck( nIndex, enabled ); in OnSetActive() 282 int nIndex; in OnBnClickedAddBrowseDomain() local 284 nIndex = m_browseListCtrl.InsertItem( m_browseListCtrl.GetItemCount(), L""); in OnBnClickedAddBrowseDomain() 285 m_browseListCtrl.SetItemText( nIndex, 1, dlg.m_text ); in OnBnClickedAddBrowseDomain() 286 m_browseListCtrl.SetCheck( nIndex, 1 ); in OnBnClickedAddBrowseDomain()
|
/external/deqp-deps/glslang/glslang/OSDependent/ |
D | osinclude.h | 47 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue); 48 bool OS_FreeTLSIndex(OS_TLSIndex nIndex); 49 void* OS_GetTLSValue(OS_TLSIndex nIndex);
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_fflistbox.cpp | 166 void CXFA_FFListBox::SetItemState(int32_t nIndex, bool bSelected) { in SetItemState() argument 168 pListBox->SetSelItem(pListBox->GetSelItem(nIndex), bSelected); in SetItemState() 173 void CXFA_FFListBox::InsertItem(const WideStringView& wsLabel, int32_t nIndex) { in InsertItem() argument 180 void CXFA_FFListBox::DeleteItem(int32_t nIndex) { in DeleteItem() argument 182 if (nIndex < 0) in DeleteItem() 185 pListBox->DeleteString(pListBox->GetItem(nullptr, nIndex)); in DeleteItem()
|
D | cxfa_fflistbox.h | 27 void SetItemState(int32_t nIndex, bool bSelected); 28 void InsertItem(const WideStringView& wsLabel, int32_t nIndex); 29 void DeleteItem(int32_t nIndex);
|
D | cxfa_widgetacc.h | 134 Optional<WideString> GetChoiceListItem(int32_t nIndex, bool bSaveValue); 140 int32_t GetSelectedItem(int32_t nIndex); 150 bool DeleteItem(int32_t nIndex, bool bNotify, bool bScriptModify); 153 bool GetItemState(int32_t nIndex); 154 void SetItemState(int32_t nIndex, 217 int32_t nIndex);
|
D | cxfa_ffcombobox.h | 52 void SetItemState(int32_t nIndex, bool bSelected); 53 void InsertItem(const WideStringView& wsLabel, int32_t nIndex); 54 void DeleteItem(int32_t nIndex);
|
D | cxfa_ffcombobox.cpp | 273 void CXFA_FFComboBox::SetItemState(int32_t nIndex, bool bSelected) { in SetItemState() argument 274 ToComboBox(m_pNormalWidget.get())->SetCurSel(bSelected ? nIndex : -1); in SetItemState() 280 int32_t nIndex) { in InsertItem() argument 286 void CXFA_FFComboBox::DeleteItem(int32_t nIndex) { in DeleteItem() argument 287 if (nIndex < 0) in DeleteItem() 290 ToComboBox(m_pNormalWidget.get())->RemoveAt(nIndex); in DeleteItem()
|
D | cxfa_widgetacc.cpp | 324 int32_t nIndex) { in GetEdgeThickness() argument 327 CXFA_Stroke* stroke = strokes[nIndex * 2 + 1]; in GetEdgeThickness() 329 if (nIndex == 0) in GetEdgeThickness() 1859 Optional<WideString> CXFA_WidgetAcc::GetChoiceListItem(int32_t nIndex, in GetChoiceListItem() argument 1889 pItems->GetChild<CXFA_Node>(nIndex, XFA_Element::Unknown, false); in GetChoiceListItem() 1937 int32_t CXFA_WidgetAcc::GetSelectedItem(int32_t nIndex) { in GetSelectedItem() argument 1939 if (!pdfium::IndexInBounds(wsValueArray, nIndex)) in GetSelectedItem() 1944 wsValueArray[nIndex]); in GetSelectedItem() 1985 bool CXFA_WidgetAcc::GetItemState(int32_t nIndex) { in GetItemState() argument 1987 return pdfium::IndexInBounds(wsSaveTextArray, nIndex) && in GetItemState() [all …]
|
/external/pdfium/xfa/fgas/font/ |
D | cfgas_pdffontmgr.cpp | 122 auto nIndex = bsDRName.Find(bsPsName); in PsNameMatchDRFontName() local 123 if (nIndex.has_value() && !bStrictMatch) in PsNameMatchDRFontName() 126 if (!nIndex.has_value() || nIndex.value() != 0) in PsNameMatchDRFontName()
|
/external/pdfium/xfa/fwl/ |
D | cfwl_listbox.cpp | 144 int32_t CFWL_ListBox::GetSelIndex(int32_t nIndex) { in GetSelIndex() argument 152 if (index == nIndex) in GetSelIndex() 895 int32_t nIndex) const { in GetItem() 896 if (nIndex < 0 || nIndex >= CountItems(pWidget)) in GetItem() 898 return m_ItemArray[nIndex].get(); in GetItem() 923 int32_t nIndex = GetItemIndex(this, pItem); in DeleteString() local 924 if (nIndex < 0 || static_cast<size_t>(nIndex) >= m_ItemArray.size()) in DeleteString() 927 int32_t iSel = nIndex + 1; in DeleteString() 929 iSel = nIndex - 1; in DeleteString() 935 m_ItemArray.erase(m_ItemArray.begin() + nIndex); in DeleteString()
|