HomeSort by relevance Sort by last modified time
    Searched refs:GetItem (Results 1 - 25 of 47) sorted by null

1 2

  /external/lzma/CPP/7zip/UI/FileManager/
ComboDialog.cpp 19 _comboBox.Attach(GetItem(IDC_COMBO));
33 staticContol.Attach(GetItem(IDT_COMBO));
PasswordDialog.cpp 37 _passwordEdit.Attach(GetItem(IDE_PASSWORD_PASSWORD));
OverwriteDialog.cpp 89 staticContol.Attach(GetItem(iconID));
ProgressDialog.cpp 60 m_ProgressBar.Attach(GetItem(IDC_PROGRESS1));
ProgressDialog2.cpp 331 m_ProgressBar.Attach(GetItem(IDC_PROGRESS1));
332 _messageList.Attach(GetItem(IDL_PROGRESS_MESSAGES));
343 CWindow window(GetItem(IDB_PROGRESS_BACKGROUND));
348 window = GetItem(IDB_PAUSE);
440 ChangeSubWindowSizeX(GetItem(IDT_PROGRESS_STATUS), xSize - mx * 2);
441 ChangeSubWindowSizeX(GetItem(IDT_PROGRESS_FILE_NAME), xSize - mx * 2);
442 ChangeSubWindowSizeX(GetItem(IDC_PROGRESS1), xSize - mx * 2);
955 ::SendMessage(GetItem(IDCANCEL), BM_SETSTYLE, BS_DEFPUSHBUTTON, MAKELPARAM(TRUE, 0));
  /external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/Common/
LinkList.h 138 virtual HRESULT GetItem(const Node *pNode, T* ppItem)
261 return GetItem(Back(), ppItem);
274 return GetItem(Front(), ppItem);
342 return GetItem(pos.pNode, ppItem);
424 // NULLABLE: If true, client can insert nullptr pointers. This means GetItem can
468 HRESULT GetItem(const Node *pNode, Ptr* ppItem)
474 HRESULT hr = List<Ptr>::GetItem(pNode, &pItem);
  /external/lzma/CPP/Windows/Control/
Dialog.h 17 HWND GetItem(int itemID) const
21 { return BOOLToBool(::EnableWindow(GetItem(itemID), BoolToBOOL(enable))); }
24 { return BOOLToBool(::ShowWindow(GetItem(itemID), cmdShow)); }
37 CWindow window(GetItem(itemID));
48 CWindow window(GetItem(itemID));
159 Attach(parentDialog.GetItem(id));
Dialog.cpp 134 if (!::GetWindowRect(GetItem(id), &rect))
143 ::GetWindowRect(GetItem(id), &rect);
149 return BOOLToBool(::MoveWindow(GetItem(id), x, y, width, height, BoolToBOOL(repaint)));
ListView.cpp 29 bool aResult = GetItem(&item);
  /external/lzma/CPP/7zip/UI/GUI/
ExtractDialog.cpp 156 _passwordControl.Attach(GetItem(IDE_EXTRACT_PASSWORD));
159 _pathName.Attach(GetItem(IDE_EXTRACT_NAME));
188 _path.Attach(GetItem(IDC_EXTRACT_PATH));
225 _pathMode.Attach(GetItem(IDC_EXTRACT_PATH_MODE));
226 _overwriteMode.Attach(GetItem(IDC_EXTRACT_OVERWRITE_MODE));
236 // CWindow filesWindow = GetItem(IDC_EXTRACT_RADIO_FILES);
  /external/pdfium/xfa/src/fwl/src/lightwidget/
listbox.cpp 49 reinterpret_cast<CFWL_ListItem*>(m_ListBoxDP.GetItem(m_pIface, nIndex));
60 reinterpret_cast<CFWL_ListItem*>(m_ListBoxDP.GetItem(m_pIface, iSel));
71 reinterpret_cast<CFWL_ListItem*>(m_ListBoxDP.GetItem(m_pIface, i));
133 FWL_HLISTITEM CFWL_ListBox::GetItem(int32_t nIndex) {
176 FWL_HLISTITEM hItem = m_ListBoxDP.GetItem(NULL, i);
213 FWL_HLISTITEM CFWL_ListBox::CFWL_ListBoxDP::GetItem(IFWL_Widget* pWidget,
combobox.cpp 56 m_comboBoxData.GetItem(m_pIface, iIndex));
131 m_comboBoxData.GetItem(m_pIface, iIndex));
139 m_comboBoxData.GetItem(m_pIface, iIndex));
247 FWL_HLISTITEM CFWL_ComboBox::CFWL_ComboBoxDP::GetItem(IFWL_Widget* pWidget,
  /external/pdfium/xfa/include/fwl/lightwidget/
listbox.h 34 FWL_HLISTITEM GetItem(int32_t nIndex);
52 virtual FWL_HLISTITEM GetItem(IFWL_Widget* pWidget, int32_t nIndex);
combobox.h 77 virtual FWL_HLISTITEM GetItem(IFWL_Widget* pWidget, int32_t nIndex);
  /external/pdfium/xfa/src/fwl/src/basewidget/
fwl_listboximp.cpp 211 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
230 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
253 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
314 if (pCom->Compare(pData->GetItem(m_pInterface, i),
315 pData->GetItem(m_pInterface, j)) > 0) {
316 hTemp = pData->GetItem(m_pInterface, i);
317 pData->SetItemIndex(m_pInterface, pData->GetItem(m_pInterface, j), i);
324 FWL_HLISTITEM CFWL_ListBoxImp::GetItem(FWL_HLISTITEM hItem,
347 hRet = pData->GetItem(m_pInterface, iDstItem);
369 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
    [all...]
fwl_comboboximp.cpp 221 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, i);
236 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, iSel);
251 FWL_HLISTITEM hSel = pData->GetItem(m_pInterface, iSel);
266 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, nIndex);
449 pData->GetItem(m_pOwner->m_pInterface, pOuter->m_iCurSel);
450 hItem = m_pOwner->GetItem(hItem, dwKeyCode);
628 pData->GetItem(m_pListBox.get(), m_iCurSel));
648 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, m_iCurSel);
708 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, iSel);
747 FWL_HLISTITEM hItem = pData->GetItem(m_pInterface, m_iCurSel);
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zItem.h 136 bool GetItem(unsigned index, UInt64 &value) const
  /external/pdfium/xfa/include/fwl/basewidget/
fwl_listbox.h 68 virtual FWL_HLISTITEM GetItem(IFWL_Widget* pWidget, int32_t nIndex) = 0;
  /external/pdfium/xfa/src/fwl/src/basewidget/include/
fwl_listboximp.h 43 FWL_HLISTITEM GetItem(FWL_HLISTITEM hItem, FX_DWORD dwKeyCode);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_index.py 257 class GetItem(base):
262 x = GetItem()
271 class GetItem(base):
278 x = GetItem()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_index.py 257 class GetItem(base):
262 x = GetItem()
271 class GetItem(base):
278 x = GetItem()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_index.py 257 class GetItem(base):
262 x = GetItem()
271 class GetItem(base):
278 x = GetItem()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_index.py 257 class GetItem(base):
262 x = GetItem()
271 class GetItem(base):
278 x = GetItem()
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 104 function GetItem(const Key: TKey): TValue;
121 property Items[const Key: TKey]: TValue read GetItem write SetItem; default;
232 function THashList<TKey, TValue>.GetItem(const Key: TKey): TValue;
316 Result := GetItem(GetCount - 1);
324 Result := GetItem(I);
  /external/pdfium/xfa/src/fee/src/fee/
fde_txtedtblock.cpp 191 void CFDE_TxtEdtFieldFormatParser::GetItem(int32_t nIndex,
466 FormatParser.GetItem(i, wskey, wsVal);
518 FormatParser.GetItem(i, wskey, wsVal);
593 FormatParser.GetItem(i, wskey, wsVal);
636 FormatParser.GetItem(i, wskey, wsVal);

Completed in 614 milliseconds

1 2