Home
last modified time | relevance | path

Searched refs:Text (Results 1 – 25 of 615) sorted by relevance

12345678910>>...25

/netbsd-src/crypto/external/bsd/openssl/dist/demos/cms/
H A Dcomp.txt3 Some Text To be Compressed
4 Some Text To be Compressed
5 Some Text To be Compressed
6 Some Text To be Compressed
7 Some Text To be Compressed
8 Some Text To be Compressed
9 Some Text To be Compressed
10 Some Text To be Compressed
11 Some Text To be Compressed
12 Some Text To be Compressed
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/demos/cms/
H A Dcomp.txt3 Some Text To be Compressed
4 Some Text To be Compressed
5 Some Text To be Compressed
6 Some Text To be Compressed
7 Some Text To be Compressed
8 Some Text To be Compressed
9 Some Text To be Compressed
10 Some Text To be Compressed
11 Some Text To be Compressed
12 Some Text To be Compressed
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
H A DSourceCodeBuilders.cpp65 StringRef Text = getText(E, Context); in buildParens() local
66 if (Text.empty()) in buildParens()
69 return ("(" + Text + ")").str(); in buildParens()
70 return Text.str(); in buildParens()
78 StringRef Text = in buildDereference() local
80 if (Text.empty()) in buildDereference()
82 return Text.str(); in buildDereference()
85 StringRef Text = getText(E, Context); in buildDereference() local
86 if (Text.empty()) in buildDereference()
90 return ("*(" + Text + ")").str(); in buildDereference()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DEncoding.h34 inline Encoding detectEncoding(StringRef Text) { in detectEncoding() argument
35 const llvm::UTF8 *Ptr = reinterpret_cast<const llvm::UTF8 *>(Text.begin()); in detectEncoding()
36 const llvm::UTF8 *BufEnd = reinterpret_cast<const llvm::UTF8 *>(Text.end()); in detectEncoding()
45 inline unsigned columnWidth(StringRef Text, Encoding Encoding) { in columnWidth() argument
47 int ContentWidth = llvm::sys::unicode::columnWidthUTF8(Text); in columnWidth()
55 return Text.size(); in columnWidth()
61 inline unsigned columnWidthWithTabs(StringRef Text, unsigned StartColumn, in columnWidthWithTabs() argument
64 StringRef Tail = Text; in columnWidthWithTabs()
97 inline unsigned getEscapeSequenceLength(StringRef Text) { in getEscapeSequenceLength() argument
98 assert(Text[0] == '\\'); in getEscapeSequenceLength()
[all …]
H A DBreakableToken.cpp68 getCommentSplit(StringRef Text, unsigned ContentStartColumn, in getCommentSplit() argument
72 LLVM_DEBUG(llvm::dbgs() << "Comment split: \"" << Text in getCommentSplit()
82 NumChars < MaxSplit && MaxSplitBytes < Text.size();) { in getCommentSplit()
84 encoding::getCodePointNumBytes(Text[MaxSplitBytes], Encoding); in getCommentSplit()
86 encoding::columnWidthWithTabs(Text.substr(MaxSplitBytes, BytesInChar), in getCommentSplit()
96 Text.find_first_of(Blanks, MaxSplitBytes); in getCommentSplit()
97 if (SpaceOffset != StringRef::npos && SpaceOffset + 1 < Text.size() && in getCommentSplit()
98 Text[SpaceOffset + 1] == '{') { in getCommentSplit()
103 StringRef::size_type SpaceOffset = Text.find_last_of(Blanks, MaxSplitBytes); in getCommentSplit()
115 Text.find_last_not_of(Blanks, SpaceOffset); in getCommentSplit()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/t/
H A Dbasic.t40 my $template = Text::Template->new('type' => 'FILE', 'source' => $TEMPFILE);
41 ok(defined $template) or diag $Text::Template::ERROR;
63 $text = Text::Template->fill_this_in($template_1, 'package' => 'X');
69 $template = Text::Template->new(type => 'FILEHANDLE', source => $tmpl);
70 ok defined $template or diag $Text::Template::ERROR;
83 $template = Text::Template->new(
103 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => 'B{"\\}"}C{"\\{"}D');
111 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => qq{A{"\t"}B});
141 my $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => $test);
153 $template = Text::Template->new(type => 'FILEHANDLE', source => $tmpl);
[all …]
H A Ddelimiters.t17 my $template1 = Text::Template->new(
21 or die "Couldn't construct template object: $Text::Template::ERROR; aborting";
27 $template1 = Text::Template->new(TYPE => 'STRING', SOURCE => $template);
34 $template1 = Text::Template->new(
38 or die "Couldn't construct template object: $Text::Template::ERROR; aborting";
44 $template1 = Text::Template->new(TYPE => 'STRING', SOURCE => $template);
73 my $tmpl = Text::Template->new(
H A Derror.t14 Text::Template->new();
20 eval { Text::Template->new(TYPE => 'FILE'); };
24 eval { Text::Template->new(TYPE => 'wlunch', SOURCE => 'fish food'); };
28 my $o = Text::Template->new(
33 ok defined($Text::Template::ERROR)
34 && $Text::Template::ERROR =~ /^Couldn't open file/;
H A Dbroken.t12 my $r = Text::Template->new(
20 my $r = Text::Template->new(
29 my $r = Text::Template->new(
37 my $r = Text::Template->new(
49 my $r = Text::Template->new(
62 my $r = Text::Template->new(TYPE => 'string', SOURCE => 'abc{1/0}defg')
/netbsd-src/crypto/external/bsd/openssl.old/dist/external/perl/Text-Template-1.46/t/
H A D01-basic.t6 use Text::Template;
27 $template = new Text::Template ('type' => 'FILE', 'source' => $TEMPFILE);
31 print "not ok $n $Text::Template::ERROR\n";
67 $text = Text::Template->fill_this_in( $template_1, 'package' => X);
77 $template = new Text::Template ('type' => 'FILEHANDLE',
82 print "not ok $n $Text::Template::ERROR\n";
112 $template = new Text::Template
123 print "not ok $n $Text::Template::ERROR\n";
143 unless (!defined($text)) { print STDERR "ERROR: $Text::Template::ERROR\n"};
151 my $tmpl = Text::Template->new(TYPE => 'STRING',
[all …]
H A D09-error.t6 use Text::Template;
9 You are using version $Text::Template::VERSION instead.
12 unless $Text::Template::VERSION == 1.46;
19 Text::Template->new();
29 Text::Template->new(TYPE => 'FILE');
41 Text::Template->new(TYPE => 'wlunch', SOURCE => 'fish food');
52 my $o = Text::Template->new(TYPE => 'file',
56 print defined($Text::Template::ERROR)
57 && $Text::Template::ERROR =~ /^Couldn't open file/
H A D10-delimiters.t6 use Text::Template;
9 You are using version $Text::Template::VERSION instead.
12 unless $Text::Template::VERSION == 1.46;
22 $template1 = Text::Template->new(TYPE => STRING,
26 or die "Couldn't construct template object: $Text::Template::ERROR; aborting";
32 $template1 = Text::Template->new(TYPE => STRING, SOURCE => $template);
40 $template1 = Text::Template->new(TYPE => STRING,
44 or die "Couldn't construct template object: $Text::Template::ERROR; aborting";
50 $template1 = Text::Template->new(TYPE => STRING, SOURCE => $template);
82 my $tmpl = Text::Template->new(TYPE => 'STRING',
H A D04-safe.t6 use Text::Template;
17 You are using version $Text::Template::VERSION instead.
20 unless $Text::Template::VERSION == 1.46;
40 $template1 = new Text::Template ('type' => 'STRING', 'source' => $goodtemplate)
42 $template2 = new Text::Template ('type' => 'STRING', 'source' => $goodtemplate)
86 $template1 = new Text::Template ('type' => 'STRING', 'source' => $badtemplate)
88 $template2 = new Text::Template ('type' => 'STRING', 'source' => $badtemplate)
131 $template1 = new Text::Template ('type' => 'STRING', 'source' => $template)
133 $template2 = new Text::Template ('type' => 'STRING', 'source' => $template)
148 $templateB = new Text::Template (TYPE => 'STRING', SOURCE => '{die}')
H A D14-broken.t4 use Text::Template;
11 You are using version $Text::Template::VERSION instead.
14 unless $Text::Template::VERSION == 1.46;
17 { my $r = Text::Template->new(TYPE => 'string',
29 { my $r = Text::Template->new(TYPE => 'string',
42 { my $r = Text::Template->new(TYPE => 'string',
54 { my $r = Text::Template->new(TYPE => 'string',
69 { my $r = Text::Template->new(TYPE => 'string',
H A D13-taint.t5 use Text::Template;
8 You are using version $Text::Template::VERSION instead.
11 unless $Text::Template::VERSION == 1.46;
36 my $obj = Text::Template->new(@_);
47 my $obj = Text::Template->new(@_);
58 if (Text::Template::_is_clean($_[0])) {
65 unless (Text::Template::_is_clean($_[0])) {
113 Text::Template::_unconditionally_untaint($ttemplate);
115 Text::Template::_unconditionally_untaint($tfile);
H A D07-safe3.t5 use Text::Template;
16 You are using version $Text::Template::VERSION instead.
19 unless $Text::Template::VERSION == 1.46;
44 $template = new Text::Template ('type' => 'STRING', 'source' => $template,
47 $templateOUT = new Text::Template ('type' => 'STRING', 'source' => $templateOUT,
76 my $o = Text::Template->new(type => 'string',
/netbsd-src/external/apache2/llvm/dist/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()
57 Text.take_while([](char C) { return llvm::isAlnum(C) || C == '_'; }); in Annotations()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp59 StringRef Text; member
116 Result.Text = StringRef(CodeCompletionLocation, 0); in getNextToken()
123 Result.Text = ""; in getNextToken()
133 Result.Text = Code.substr(0, 1); in getNextToken()
138 Result.Text = Code.substr(0, 1); in getNextToken()
145 Result.Text = Code.substr(0, 1); in getNextToken()
150 Result.Text = Code.substr(0, 1); in getNextToken()
155 Result.Text = Code.substr(0, 1); in getNextToken()
182 Result.Text = Code.substr(0, TokenLength); in getNextToken()
198 Result.Text = Code.substr(0, TokenLength); in getNextToken()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp174 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text) in Chunk() argument
175 : Kind(Kind), Text("") { in Chunk()
183 this->Text = Text; in Chunk()
190 this->Text = "("; in Chunk()
194 this->Text = ")"; in Chunk()
198 this->Text = "["; in Chunk()
202 this->Text = "]"; in Chunk()
206 this->Text = "{"; in Chunk()
210 this->Text = "}"; in Chunk()
214 this->Text = "<"; in Chunk()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp508 std::string Text; member
509 TextPiece(StringRef Text, StringRef Role = "") in TextPiece()
510 : Piece(TextPieceClass), Role(Role), Text(Text.str()) {} in TextPiece()
635 DiagText(DiagnosticTextBuilder &Builder, StringRef Text) in DiagText()
636 : Builder(Builder), Root(parseDiagText(Text, StopAt::End)) {} in DiagText()
647 Piece *parseDiagText(StringRef &Text, StopAt Stop);
725 CASE(Text); in Visit()
867 StringRef T = P->Text; in VisitText()
945 void VisitText(TextPiece *P) { Result += P->Text; } in VisitText()
1002 int DiagnosticTextBuilder::DiagText::parseModifier(StringRef &Text) const { in parseModifier()
[all …]
/netbsd-src/common/dist/zlib/contrib/ada/
H A Dbuffer_demo.adb27 Text : constant String constant
32 Source : Stream_Element_Array (1 .. Text'Length);
33 for Source'Address use Text'Address;
36 Ada.Text_IO.Put (Text);
39 ("Uncompressed size : " & Positive'Image (Text'Length) & " bytes");
42 Compressed_Data : Stream_Element_Array (1 .. Text'Length);
71 Uncompressed_Data : Stream_Element_Array (1 .. Text'Length);
/netbsd-src/external/gpl3/gdb/dist/zlib/contrib/ada/
H A Dbuffer_demo.adb27 Text : constant String constant
32 Source : Stream_Element_Array (1 .. Text'Length);
33 for Source'Address use Text'Address;
36 Ada.Text_IO.Put (Text);
39 ("Uncompressed size : " & Positive'Image (Text'Length) & " bytes");
42 Compressed_Data : Stream_Element_Array (1 .. Text'Length);
71 Uncompressed_Data : Stream_Element_Array (1 .. Text'Length);
/netbsd-src/external/gpl3/binutils/dist/zlib/contrib/ada/
H A Dbuffer_demo.adb27 Text : constant String constant
32 Source : Stream_Element_Array (1 .. Text'Length);
33 for Source'Address use Text'Address;
36 Ada.Text_IO.Put (Text);
39 ("Uncompressed size : " & Positive'Image (Text'Length) & " bytes");
42 Compressed_Data : Stream_Element_Array (1 .. Text'Length);
71 Uncompressed_Data : Stream_Element_Array (1 .. Text'Length);
/netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/ada/
H A Dbuffer_demo.adb27 Text : constant String constant
32 Source : Stream_Element_Array (1 .. Text'Length);
33 for Source'Address use Text'Address;
36 Ada.Text_IO.Put (Text);
39 ("Uncompressed size : " & Positive'Image (Text'Length) & " bytes");
42 Compressed_Data : Stream_Element_Array (1 .. Text'Length);
71 Uncompressed_Data : Stream_Element_Array (1 .. Text'Length);
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DComment.h262 StringRef Text; variable
267 StringRef Text) : in TextComment() argument
269 Text(Text) { in TextComment()
281 StringRef getText() const LLVM_READONLY { return Text; } in getText()
301 StringRef Text; member
303 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { } in Argument()
361 return Args[Idx].Text; in getArgText()
600 StringRef Text; member
603 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) { } in Argument()
673 return Args[Idx].Text; in getArgText()
[all …]

12345678910>>...25