Home
last modified time | relevance | path

Searched refs:Text (Results 1 - 25 of 326) sorted by relevance

12345678910>>...14

/third_party/PyYAML/examples/pygments-lexer/
H A Dyaml.py16 Text, Comment, Punctuation, Name, Literal namespace
170 (r'[ ]+(?=#|$)', Text.Blank),
172 (r'\n+', Text.Break),
186 save_indent(Text.Indent, start=True),
193 (r'[ ]+(?=#|$)', Text.Blank),
197 (r'\n', Text.Break, '#pop:2'),
204 bygroups(Text.Blank, Literal.Version), 'ignored-line'),
212 bygroups(Text.Blank, Name.Type, Text.Blank, Name.Type),
219 (r'[ ]*$', something(Text
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Testing/Support/
H A DAnnotations.cpp26 Annotations::Annotations(llvm::StringRef Text) { in Annotations() argument
27 auto Require = [Text](bool Assertion, const char *Msg) { in Annotations()
28 require(Assertion, Msg, Text); in Annotations()
33 Code.reserve(Text.size()); in Annotations()
34 while (!Text.empty()) { in Annotations()
35 if (Text.consume_front("^")) { in Annotations()
40 if (Text.consume_front("[[")) { in Annotations()
46 if (Text.consume_front("]]")) { in Annotations()
55 if (Text.consume_front("$")) { in Annotations()
56 Name = Text in Annotations()
[all...]
/third_party/skia/modules/sksg/src/
H A DSkSGText.cpp18 sk_sp<Text> Text::Make(sk_sp<SkTypeface> tf, const SkString& text) { in Make()
19 return sk_sp<Text>(new Text(std::move(tf), text)); in Make()
22 Text::Text(sk_sp<SkTypeface> tf, const SkString& text) in Text() function in sksg::Text
26 Text::~Text() = default;
28 SkPoint Text::alignedPosition(SkScalar advance) const { in alignedPosition()
45 SkRect Text
[all...]
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp63 // [SECTION] Example App: Long Text / ShowExampleAppLongText()
398 ImGui::Text("dear imgui says hello. (%s)", IMGUI_VERSION); in ShowDemoWindow()
403 ImGui::Text("ABOUT THIS DEMO:"); in ShowDemoWindow()
410 ImGui::Text("PROGRAMMER GUIDE:"); in ShowDemoWindow()
419 ImGui::Text("USER GUIDE:"); in ShowDemoWindow()
442 ImGui::Text("<<PRESS SPACE TO DISABLE>>"); in ShowDemoWindow()
458 ImGui::Text("Also see Style->Rendering for rendering options."); in ShowDemoWindow()
554 ImGui::Text("Thanks for clicking me!"); in ShowDemoWindowWidgets()
580 // (otherwise a Text+SameLine+Button sequence will have the text a little too high by default!) in ShowDemoWindowWidgets()
581 // See 'Demo->Layout->Text Baselin in ShowDemoWindowWidgets()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DtsxDynamicTagName5.js11 export class Text extends React.Component<{}, {}> {
39 exports.Text = void 0;
41 var Text = /** @class */ (function (_super) {
42 __extends(Text, _super);
43 function Text() {
48 Text.prototype.render = function () {
51 return Text;
53 exports.Text = Text;
H A DtsxDynamicTagName7.js11 export class Text extends React.Component<{}, {}> {
39 exports.Text = void 0;
41 var Text = /** @class */ (function (_super) {
42 __extends(Text, _super);
43 function Text() {
48 Text.prototype.render = function () {
52 return Text;
54 exports.Text = Text;
H A DtsxDynamicTagName8.js11 export class Text extends React.Component<{}, {}> {
39 exports.Text = void 0;
41 var Text = /** @class */ (function (_super) {
42 __extends(Text, _super);
43 function Text() {
48 Text.prototype.render = function () {
51 return Text;
53 exports.Text = Text;
H A DtsxDynamicTagName9.js11 export class Text extends React.Component<{}, {}> {
39 exports.Text = void 0;
41 var Text = /** @class */ (function (_super) {
42 __extends(Text, _super);
43 function Text() {
48 Text.prototype.render = function () {
51 return Text;
53 exports.Text = Text;
H A DconditionalTypeRelaxingConstraintAssignability.js4 | ElChildren.Text;
7 export type Text = string;
10 type Relax<C extends ElChildren> = C extends ElChildren.Text ? ElChildren.Text : C;
22 new Elem('' as ElChildren.Text);
23 new Elem('' as ElChildren.Void | ElChildren.Text); // error
/third_party/rust/crates/regex/bench/src/ffi/
H A Dtcl.rs12 /// Text is a TCL string object backed by a Rust string.
18 pub struct Text { structure names
24 // normally disqualify a Send bound. However, we don't permit Text to be used
28 unsafe impl Send for Text {}
30 impl Drop for Text {
40 impl Text { impls
41 pub fn new(text: String) -> Text { in new()
48 Text { s: text, obj: obj } in new()
62 pat: Text,
77 let pat = Text in new()
[all...]
/third_party/rust/crates/regex/src/
H A Dre_trait.rs106 type Text: ?Sized + fmt::Debug; types
122 fn next_after_empty(&self, text: &Self::Text, i: usize) -> usize; in next_after_empty()
127 text: &Self::Text, in shortest_match_at()
132 fn is_match_at(&self, text: &Self::Text, start: usize) -> bool; in is_match_at()
137 text: &Self::Text, in find_at()
146 text: &Self::Text, in captures_read_at()
152 fn find_iter(self, text: &Self::Text) -> Matches<'_, Self> { in find_iter()
158 fn captures_iter(self, text: &Self::Text) -> CaptureMatches<'_, Self> { in captures_iter()
168 R::Text: 't, in captures_iter()
171 text: &'t R::Text, in captures_iter()
[all...]
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_multicall.py6 from tkinter import Tk, Text namespace
16 cls.mc = multicall.MultiCallCreator(Text)
29 self.assertIs(multicall._multicall_dict[Text], mc)
30 self.assertTrue(issubclass(mc, Text))
31 mc2 = multicall.MultiCallCreator(Text)
42 self.assertIs(mc.yview, Text.yview)
44 self.assertIs(mctext.yview.__func__, Text.yview)
/third_party/python/Doc/tools/extensions/
H A Dpeg_highlight.py2 from pygments.token import Comment, Generic, Keyword, Name, Operator, Punctuation, Text namespace
28 "ws": [(r"\n", Text), (r"\s+", Text), (r"#.*$", Comment.Singleline),],
51 (r"'\W+?'", Text),
52 (r'"\W+?"', Text),
71 (r"\b(?!(NULL|EXTRA))([A-Z_]+)\b\s*(?!\()", Text,),
79 (r".", Text),
H A Dasdl_highlight.py10 Punctuation, Text)
24 (r"\n", Text),
25 (r"\s+", Text),
32 bygroups(Keyword, Text, Name.Tag),
42 bygroups(Name, Text, Operator),
47 (r".", Text),
H A Dc_annotations.py137 ref_node += nodes.Text('Limited API')
139 ref_node += nodes.Text('Stable ABI')
142 emph_node += nodes.Text(' (as an opaque struct)')
144 emph_node += nodes.Text(' (including all members)')
146 emph_node += nodes.Text(' ' + record['ifdef_note'])
151 emph_node += nodes.Text(f' since version {stable_added}')
152 emph_node += nodes.Text('.')
154 emph_node += nodes.Text(
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/Template/
H A DPreprocess.pm2 package Text::Template::Preprocess;
3 $Text::Template::Preprocess::VERSION = '1.56';
9 use Text::Template;
10 our @ISA = qw(Text::Template);
52 Text::Template::Preprocess - Expand template text with embedded Perl
60 use Text::Template::Preprocess;
62 my $t = Text::Template::Preprocess->new(...); # identical to Text::Template
71 C<Text::Template::Preprocess> provides a new C<PREPROCESSOR> option to
74 C<Text
[all...]
/third_party/openssl/external/perl/Text-Template-1.56/lib/Text/Template/
H A DPreprocess.pm2 package Text::Template::Preprocess;
3 $Text::Template::Preprocess::VERSION = '1.56';
9 use Text::Template;
10 our @ISA = qw(Text::Template);
52 Text::Template::Preprocess - Expand template text with embedded Perl
60 use Text::Template::Preprocess;
62 my $t = Text::Template::Preprocess->new(...); # identical to Text::Template
71 C<Text::Template::Preprocess> provides a new C<PREPROCESSOR> option to
74 C<Text
[all...]
/third_party/rust/crates/regex/bench/src/
H A Dbench.rs50 // Builds a ::Text from an owned string.
63 use crate::ffi::tcl::Text;
64 Text::new($text)
67 type Text = ffi::tcl::Text; types
75 type Text = Vec<u8>; types
80 type Text = String; types
151 static ref TEXT: Mutex<Text> = Mutex::new(text!($haystack));
189 static ref TEXT: Mutex<Text> = Mutex::new(text!($haystack));
222 static ref TEXT: Mutex<Text>
[all...]
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/t/
H A Dsafe.t3 # test apparatus for Text::Template module
18 use_ok 'Text::Template' or exit 1;
37 my $template1 = Text::Template->new(type => 'STRING', source => $goodtemplate);
38 my $template2 = Text::Template->new(type => 'STRING', source => $goodtemplate);
71 $template1 = Text::Template->new('type' => 'STRING', 'source' => $badtemplate);
72 isa_ok $template1, 'Text::Template';
74 $template2 = Text::Template->new('type' => 'STRING', 'source' => $badtemplate);
75 isa_ok $template2, 'Text::Template';
107 $template1 = Text::Template->new('type' => 'STRING', 'source' => $template);
108 isa_ok $template1, 'Text
[all...]
/third_party/openssl/external/perl/Text-Template-1.56/t/
H A Dsafe.t3 # test apparatus for Text::Template module
18 use_ok 'Text::Template' or exit 1;
37 my $template1 = Text::Template->new(type => 'STRING', source => $goodtemplate);
38 my $template2 = Text::Template->new(type => 'STRING', source => $goodtemplate);
71 $template1 = Text::Template->new('type' => 'STRING', 'source' => $badtemplate);
72 isa_ok $template1, 'Text::Template';
74 $template2 = Text::Template->new('type' => 'STRING', 'source' => $badtemplate);
75 isa_ok $template2, 'Text::Template';
107 $template1 = Text::Template->new('type' => 'STRING', 'source' => $template);
108 isa_ok $template1, 'Text
[all...]
/third_party/gn/src/gn/
H A Dvisual_studio_writer.cc482 project_config->SubElement("Configuration")->Text(kConfigurationName); in WriteProjectFileContents()
484 ->Text(solution_project.config_platform); in WriteProjectFileContents()
490 globals->SubElement("ProjectGuid")->Text(solution_project.guid); in WriteProjectFileContents()
491 globals->SubElement("Keyword")->Text("Win32Proj"); in WriteProjectFileContents()
492 globals->SubElement("RootNamespace")->Text(target->label().name()); in WriteProjectFileContents()
493 globals->SubElement("IgnoreWarnCompileDuplicatedFilename")->Text("true"); in WriteProjectFileContents()
494 globals->SubElement("PreferredToolArchitecture")->Text("x64"); in WriteProjectFileContents()
496 ->Text(windows_sdk_version_); in WriteProjectFileContents()
508 ->Text(unicode_target ? "Unicode" : "MultiByte"); in WriteProjectFileContents()
512 configuration->SubElement("ConfigurationType")->Text(configuration_typ in WriteProjectFileContents()
[all...]
/third_party/node/deps/openssl/config/
H A Dgenerate_headers.pl6 use Text::Template;
13 my $include_tmpl = Text::Template->new(TYPE => 'FILE',
16 my $include_conf_tmpl = Text::Template->new(TYPE => 'FILE',
19 my $include_asm_tmpl = Text::Template->new(TYPE => 'FILE',
22 my $include_no_asm_tmpl = Text::Template->new(TYPE => 'FILE',
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DOverlayWidgets.cpp21 // Internally, every widget is either Text or Graph.
24 Text, member in gl::__anon19941::WidgetInternalType
33 {WidgetType::Count, WidgetInternalType::Text},
34 {WidgetType::Text, WidgetInternalType::Text},
35 {WidgetType::PerSecond, WidgetInternalType::Text},
49 {WidgetInternalType::Text, kMaxRenderableTextWidgets},
54 {WidgetInternalType::Text, 0},
200 static std::ostream &OutputText(std::ostream &out, const overlay::Text *text);
247 ++(*widgetCounts)[WidgetInternalType::Text];
[all...]
/third_party/mesa3d/bin/pick/
H A Dui.py62 class CommitWidget(urwid.Text):
64 # urwid.Text is normally not interactable, this is required to tell urwid
114 feedback_box: typing.List['urwid.Text'] = attr.ib(factory=lambda: urwid.SimpleFocusListWalker([]), init=False)
115 header: 'urwid.Text' = attr.ib(factory=lambda: urwid.Text('Mesa Stable Picker', align='center'), init=False)
132 urwid.Text('[U]pdate'),
133 urwid.Text('[Q]uit'),
134 urwid.Text('[C]herry Pick'),
135 urwid.Text('[D]enominate'),
136 urwid.Text('[
[all...]
/third_party/skia/third_party/externals/imgui/examples/example_marmalade/
H A Dmain.cpp82 ImGui::Text("This is some useful text."); // Display some text (you can use a format strings too) in main()
92 ImGui::Text("counter = %d", counter); in main()
94 ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate); in main()
102 ImGui::Text("Hello from another window!"); in main()

Completed in 15 milliseconds

12345678910>>...14