Home
last modified time | relevance | path

Searched refs:GetText (Results 1 – 25 of 49) sorted by relevance

12

/third_party/flutter/flutter/packages/flutter_driver/lib/src/common/
Dtext.dart9 class GetText extends CommandWithTarget {
11 GetText(SerializableFinder finder, { Duration timeout }) : super(finder, timeout: timeout);
14 GetText.deserialize(Map<String, dynamic> json) : super.deserialize(json);
20 /// The result of the [GetText] command.
25 /// The text extracted by the [GetText] command.
49 /// The text extracted by the [GetText] command.
/third_party/cef/libcef/browser/views/
Dlabel_button_impl.h33 CefString GetText() override;
54 info->SetString("text", ParentClass::root_view()->GetText()); in GetDebugInfo()
71 CEF_LABEL_BUTTON_IMPL_T CefString CEF_LABEL_BUTTON_IMPL_D::GetText() { in GetText() function
73 return ParentClass::root_view()->GetText(); in GetText()
Dtextfield_impl.cc64 CefString CefTextfieldImpl::GetText() { in GetText() function in CefTextfieldImpl
66 return root_view()->GetText(); in GetText()
Dtextfield_impl.h33 CefString GetText() override;
/third_party/cef/tests/ceftests/views/
Dtextfield_unittest.cc45 EXPECT_TRUE(textfield->GetText().empty()); in RunTextfieldContents()
53 EXPECT_STREQ(kText, textfield->GetText().ToString().c_str()); in RunTextfieldContents()
62 textfield->GetText().ToString().c_str()); in RunTextfieldContents()
81 textfield->GetText().ToString().c_str()); in RunTextfieldContents()
251 EXPECT_STREQ(kTestInputMessage, textfield->GetText().ToString().c_str()); in FinishTest()
Dbutton_unittest.cc61 EXPECT_STREQ(kButtonText, button->GetText().ToString().c_str()); in VerifyLabelButtonStyle()
64 EXPECT_STREQ(kText, button->GetText().ToString().c_str()); in VerifyLabelButtonStyle()
217 EXPECT_STREQ(kButtonText, button->GetText().ToString().c_str()); in RunLabelButtonClick()
219 EXPECT_TRUE(button->GetText().empty()); in RunLabelButtonClick()
453 EXPECT_STREQ(kButtonText, button->GetText().ToString().c_str()); in RunMenuButtonClick()
455 EXPECT_TRUE(button->GetText().empty()); in RunMenuButtonClick()
/third_party/typescript/tests/baselines/reference/
Dparserindenter.js294 … if (twoCharSpan != null && (twoCharSpan.GetText() == "//" || twoCharSpan.GetText() == "/*")) {
406 var currentIndentText = this.snapshot.GetText(currentIndentSpan);
499 var currentIndent = this.snapshot.GetText(currentIndentSpan);
535 …var origIndentText = this.snapshot.GetText(new Span(indentEditInfo.OrigIndentPosition, indentEditI…
557 …var childIndentText = this.snapshot.GetText(new Span(childTokenLineStartPosition, childTokenStartP…
982 … if (twoCharSpan != null && (twoCharSpan.GetText() == "//" || twoCharSpan.GetText() == "/*")) {
1074 var currentIndentText = this.snapshot.GetText(currentIndentSpan);
1149 var currentIndent = this.snapshot.GetText(currentIndentSpan);
1175 …var origIndentText = this.snapshot.GetText(new Span(indentEditInfo.OrigIndentPosition, indentEditI…
1195 …var childIndentText = this.snapshot.GetText(new Span(childTokenLineStartPosition, childTokenStartP…
Dparserindenter.types1202 … if (twoCharSpan != null && (twoCharSpan.GetText() == "//" || twoCharSpan.GetText() == "/*")) {
1203 >twoCharSpan != null && (twoCharSpan.GetText() == "//" || twoCharSpan.GetText() == "/*") : boolean
1207 >(twoCharSpan.GetText() == "//" || twoCharSpan.GetText() == "/*") : boolean
1208 >twoCharSpan.GetText() == "//" || twoCharSpan.GetText() == "/*" : boolean
1209 >twoCharSpan.GetText() == "//" : boolean
1210 >twoCharSpan.GetText() : any
1211 >twoCharSpan.GetText : any
1213 >GetText : any
1215 >twoCharSpan.GetText() == "/*" : boolean
1216 >twoCharSpan.GetText() : any
[all …]
/third_party/python/Lib/idlelib/
Dstackviewer.py49 def GetText(self): member in StackTreeItem
66 def GetText(self): member in FrameTreeItem
104 def GetText(self): member in VariablesTreeItem
Dtree.py266 text = self.item.GetText() or "<no text>"
315 if text and text != self.item.GetText():
317 text = self.item.GetText()
345 def GetText(self): member in TreeItem
400 def GetText(self): member in FileTreeItem
Dpathbrowser.py31 def GetText(self): member in PathBrowserTreeItem
48 def GetText(self): member in DirBrowserTreeItem
Dbrowser.py150 def GetText(self): member in ModuleBrowserTreeItem
199 def GetText(self): member in ChildBrowserTreeItem
Ddebugobj.py26 def GetText(self): member in ObjectTreeItem
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/
Dparserindenter.ts293 … if (twoCharSpan != null && (twoCharSpan.GetText() == "//" || twoCharSpan.GetText() == "/*")) {
405 var currentIndentText = this.snapshot.GetText(currentIndentSpan);
498 var currentIndent = this.snapshot.GetText(currentIndentSpan);
534 …var origIndentText = this.snapshot.GetText(new Span(indentEditInfo.OrigIndentPosition, indentEditI…
556 …var childIndentText = this.snapshot.GetText(new Span(childTokenLineStartPosition, childTokenStartP…
/third_party/python/Lib/idlelib/idle_test/
Dtest_browser.py124 self.assertEqual(self.mbt.GetText(), fname)
188 self.assertEqual(self.cbt_C1.GetText(), 'class C1()')
189 self.assertEqual(self.cbt_f1.GetText(), 'def f1(...)')
240 self.assertIn(cb.name, cb.GetText())
Dtest_pathbrowser.py68 self.assertEqual('', d.GetText())
79 self.assertEqual(p.GetText(), 'sys.path')
/third_party/cef/include/views/
Dcef_label_button.h82 virtual CefString GetText() = 0;
Dcef_textfield.h87 virtual CefString GetText() = 0;
/third_party/cef/include/
Dcef_frame.h130 virtual void GetText(CefRefPtr<CefStringVisitor> visitor) = 0;
/third_party/cef/libcef_dll/ctocpp/
Dframe_ctocpp.h52 void GetText(CefRefPtr<CefStringVisitor> visitor) override;
/third_party/cef/libcef_dll/ctocpp/views/
Dmenu_button_ctocpp.h45 CefString GetText() override;
Dlabel_button_ctocpp.h41 CefString GetText() override;
Dtextfield_ctocpp.h41 CefString GetText() override;
/third_party/cef/libcef/browser/
Dframe_host_impl.h59 void GetText(CefRefPtr<CefStringVisitor> visitor) override;
/third_party/cef/libcef/renderer/
Dframe_impl.h62 void GetText(CefRefPtr<CefStringVisitor> visitor) override;

12