Searched refs:text (Results 26 - 50 of 831) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.awk29 function add_string(text) {
30 if (text != "IGNORE") {
32 offset = offset + length(text) + 1;
33 printf "%s\\0", text;
/freebsd-10.0-release/contrib/ofed/management/infiniband-diags/scripts/
H A Dibhosts.in50 text="`eval $netcmd`"
52 echo "$text" | awk '
H A Dibrouters.in50 text="`eval $netcmd`"
52 echo "$text" | awk '
H A Dibswitches.in50 text="`eval $netcmd`"
52 echo "$text" | awk '
/freebsd-10.0-release/sys/boot/arm/at91/
H A Dlinker.cfg29 /* Read-only sections, merged into text segment: */
31 .text :
33 *(.text)
/freebsd-10.0-release/crypto/openssl/crypto/mdc2/
H A Dmdc2test.c99 static char *text="Now is the time for all "; local
102 ebcdic2ascii(text,text,strlen(text));
107 EVP_DigestUpdate(&c,(unsigned char *)text,strlen(text));
126 EVP_DigestUpdate(&c,(unsigned char *)text,strlen(text));
/freebsd-10.0-release/contrib/gcc/
H A Dpretty-print.c95 /* Flush the formatted text of PRETTY-PRINTER onto the attached stream. */
99 const char *text = pp_formatted_text (pp); local
100 fputs (text, pp->buffer->stream);
104 /* Wrap a text delimited by START and END into PRETTY-PRINTER. */
137 /* Same as pp_wrap_text but wrap text only when in line-wrapping mode. */
180 %m: strerror(text->err_no) - does not consume a value from args_ptr.
191 Flag 'q': quote formatted text (must come immediately after '%').
208 pp_base_format (pretty_printer *pp, text_info *text) argument
229 %m, %%, %<, %>, and %' are replaced with the appropriate text at
234 for (p = text
579 pp_base_format_verbatim(pretty_printer *pp, text_info *text) argument
724 struct obstack *text = pp->buffer->obstack; local
744 text_info text; local
762 text_info text; local
[all...]
H A Dstringpool.c22 /* String text, identifier text and identifier node allocator. Strings
108 get_identifier (const char *text) argument
111 (const unsigned char *) text,
112 strlen (text), HT_ALLOC);
122 get_identifier_with_length (const char *text, size_t length) argument
125 (const unsigned char *) text,
137 maybe_get_identifier (const char *text) argument
141 ht_node = ht_lookup (ident_hash, (const unsigned char *) text,
142 strlen (text), HT_NO_INSER
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dcompleter.c45 char *line_completion_function (const char *text, int matches, char *line_buffer,
102 readline_line_completion_function (const char *text, int matches)
104 return line_completion_function (text, matches, rl_line_buffer, rl_point);
110 noop_completer (char *text, char *prefix)
117 filename_completer (char *text, char *word)
133 p = rl_filename_completion_function (text, subsequent_name);
158 if (word == text)
161 else if (word > text)
165 strcpy (q, p + (word - text));
172 q = xmalloc (strlen (p) + (text
101 readline_line_completion_function(const char *text, int matches) argument
109 noop_completer(char *text, char *prefix) argument
116 filename_completer(char *text, char *word) argument
199 location_completer(char *text, char *word) argument
340 command_completer(char *text, char *word) argument
379 complete_line(const char *text, char *line_buffer, int point) argument
626 line_completion_function(const char *text, int matches, char *line_buffer, int point) argument
[all...]
H A Dmacroexp.c39 /* An array of characters. The first LEN bytes are the real text,
44 of sharing, we can't assume in general that the text is
46 char *text;
90 b->text = (char *) xmalloc (n);
92 b->text = NULL;
104 buf->text = addr;
112 /* Free the text of the buffer B. Raise an error if B is shared. */
118 xfree (b->text);
144 b->text = xrealloc (b->text,
45 char *text; member in struct:macro_buffer
[all...]
/freebsd-10.0-release/contrib/libreadline/
H A Dundo.c7 reading lines of text with interactive input and history editing.
72 alloc_undo_entry (what, start, end, text)
75 char *text;
83 temp->text = text;
92 rl_add_undo (what, start, end, text)
95 char *text;
99 temp = alloc_undo_entry (what, start, end, text);
117 free (release->text);
132 new->text
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/widechar/
H A Dlib_inwstr.c50 cchar_t *text; local
58 text = win->_line[row].text;
60 if (!isWidecExt(text[col])) {
62 && ((wch = text[col].chars[inx]) != 0);
/freebsd-10.0-release/contrib/ntp/scripts/
H A Dhtml2man.in90 # $token->[1] has the tag name, or text (for "T" case)
94 my $text = $token->[1];
96 $text =~ s/^[\n ]*//;
97 $text =~ s/[\n ]*$/ /;
99 $text =~ s/&nbsp\;/ /g;
100 $text =~ s/^\./\\./;
101 print MANOUT "$text";
106 my $text = uc($p->get_trimmed_text("/h4"));
107 print MANOUT ".SH $text\n";
118 my $text
[all...]
/freebsd-10.0-release/contrib/ntp/util/
H A Dntp-keygen-opts.def26 Just some descriptive text.
38 Just some descriptive text.
48 Just some descriptive text.
58 Just some descriptive text.
68 Just some descriptive text.
78 Just some descriptive text.
88 Just some descriptive text.
97 Just some descriptive text.
110 Just some descriptive text.
120 Just some descriptive text
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Edit/
H A DCommit.h64 bool insert(SourceLocation loc, StringRef text, bool afterToken = false,
66 bool insertAfterToken(SourceLocation loc, StringRef text, argument
68 return insert(loc, text, /*afterToken=*/true, beforePreviousInsertions);
70 bool insertBefore(SourceLocation loc, StringRef text) { argument
71 return insert(loc, text, /*afterToken=*/false,
81 bool replace(CharSourceRange range, StringRef text);
83 bool replaceText(SourceLocation loc, StringRef text,
98 bool replace(SourceRange TokenRange, StringRef text) { argument
99 return replace(CharSourceRange::getTokenRange(TokenRange), text);
112 FileOffset Offs, StringRef text, boo
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DExpressionSourceCode.cpp45 bool ExpressionSourceCode::GetText (std::string &text, lldb::LanguageType wrapping_language, bool const_object, bool static_method) const argument
134 text = wrap_stream.GetString();
138 text.append(m_body);
/freebsd-10.0-release/sys/boot/arm/at91/boot0/
H A Dlinker.cfg29 /* Read-only sections, merged into text segment: */
31 .text :
33 *(.text)
34 *(.text.*)
/freebsd-10.0-release/contrib/compiler-rt/lib/arm/
H A Dswitch8.S25 .text
H A Dswitchu8.S25 .text
H A Dsync_synchronize.S19 .text
/freebsd-10.0-release/contrib/compiler-rt/lib/i386/
H A Dfloatdisf.S17 .text
H A Dfloatdixf.S17 .text
/freebsd-10.0-release/contrib/dialog/samples/
H A Deditbox12 Hi, this is an edit box. It can be used to edit text from a file.
14 It's like a simple text editor, with these keys implemented:
25 CTRL C - Copy text
26 CTRL V - Paste text
37 Try to input some text below:
H A Deditbox210 Hi, this is an edit box. It can be used to edit text from a file.
12 It's like a simple text editor, with these keys implemented:
23 CTRL C - Copy text
24 CTRL V - Paste text
35 Try to input some text below:
H A Deditbox412 Hi, this is an edit box. It can be used to edit text from a file.
14 It's like a simple text editor, with these keys implemented:
25 CTRL C - Copy text
26 CTRL V - Paste text
37 Try to input some text below:

Completed in 189 milliseconds

1234567891011>>