HomeSort by relevance Sort by last modified time
    Searched defs:SetText (Results 1 - 25 of 49) sorted by null

1 2

  /external/lzma/CPP/Windows/Control/
StatusBar.h 16 bool SetText(LPCTSTR text)
17 { return CWindow::SetText(text); }
18 bool SetText(unsigned index, LPCTSTR text, UINT type)
20 bool SetText(unsigned index, LPCTSTR text)
21 { return SetText(index, text, 0); }
26 bool SetText(LPCWSTR text)
27 { return CWindow::SetText(text); }
28 bool SetText(unsigned index, LPCWSTR text, UINT type)
30 bool SetText(unsigned index, LPCWSTR text)
31 { return SetText(index, text, 0); }
    [all...]
  /external/libweave/src/notification/
xml_node_unittest.cc 52 static void SetText(XmlNode* node, const std::string& text) {
53 node->SetText(text);
80 TEST_F(XmlNodeTest, SetText) {
81 SetText(node_.get(), "foobar");
86 SetText(node_.get(), "foobar");
xml_node.cc 88 void XmlNode::SetText(const std::string& text) {
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Label.cpp 37 void CPWL_Label::SetText(const FX_WCHAR* csText) {
38 m_pEdit->SetText(csText);
PWL_Signature.cpp 83 void CPWL_Signature::SetText(const FX_WCHAR* sText) {
84 m_pText->SetText(sText);
90 m_pDescription->SetText(string);
PWL_ComboBox.cpp 234 void CPWL_ComboBox::SetText(const FX_WCHAR* text) {
236 m_pEdit->SetText(text);
252 m_pEdit->SetText(m_pList->GetText().c_str());
  /external/webrtc/webrtc/modules/video_render/external/
video_render_external_impl.cc 163 int32_t VideoRenderExternalImpl::SetText(
  /external/webrtc/webrtc/modules/video_render/linux/
video_render_linux_impl.cc 233 int32_t VideoRenderLinuxImpl::SetText(
  /external/webrtc/webrtc/modules/video_render/mac/
video_render_mac_carbon_impl.cc 253 int32_t VideoRenderMacCarbonImpl::SetText(const uint8_t textId,
  /external/webrtc/webrtc/modules/video_render/windows/
video_render_windows_impl.cc 293 int32_t VideoRenderWindowsImpl::SetText(
311 error = _ptrRendererWin->SetText(textId, text, textLength,
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ObjectBrowser.py 34 def SetText(self, text):
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ObjectBrowser.py 34 def SetText(self, text):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 34 def SetText(self, text):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ObjectBrowser.py 34 def SetText(self, text):
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 176 public virtual void SetText(object t, string text) {
177 adaptor.SetText(t, text);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTreeAdaptor.cs 235 public virtual void SetText(object t, string text) {
ITreeAdaptor.cs 246 void SetText(object t, string text);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 97 SetText(t, text);
105 SetText(t, text);
303 public virtual void SetText( object t, string text )
ITreeAdaptor.cs 266 void SetText( object t, string text );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 229 public virtual void SetText( object t, string text )
231 adaptor.SetText( t, text );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 234 void SetText(T t, string text);
  /external/pdfium/xfa/src/fwl/src/basewidget/
fwl_barcodeimp.cpp 194 FWL_ERR CFWL_BarcodeImp::SetText(const CFX_WideString& wsText) {
197 return CFWL_EditImp::SetText(wsText);
  /external/webrtc/webrtc/modules/video_render/android/
video_render_android_impl.cc 292 int32_t VideoRenderAndroid::SetText(
  /external/pdfium/xfa/src/fee/src/fee/
fde_txtedtbuf.cpp 171 void CFDE_TxtEdtBuf::SetText(const CFX_WideString& wsText) {
  /external/pdfium/xfa/src/fwl/src/lightwidget/
edit.cpp 30 FWL_ERR CFWL_Edit::SetText(const CFX_WideString& wsText) {
33 return static_cast<IFWL_Edit*>(m_pIface)->SetText(wsText);

Completed in 1427 milliseconds

1 2