HomeSort by: relevance | last modified time | path
    Searched defs:text (Results 1 - 25 of 575) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/byacc/dist/test/yacc/
err_syntax12.tab.h 3 #define text 456 macro
  /src/external/bsd/byacc/dist/test/btyacc/
err_syntax12.tab.h 6 #define text 456 macro
  /src/external/bsd/kyua-cli/dist/utils/text/
operations.hpp 29 /// \file utils/text/operations.hpp
40 namespace text { namespace in namespace:utils
61 } // namespace text
exceptions.hpp 29 /// \file utils/text/exceptions.hpp
30 /// Exception types raised by the text module.
38 namespace text { namespace in namespace:utils
41 /// Base exceptions for text errors.
57 /// Exception denoting an error in a text value format.
65 } // namespace text
templates.hpp 29 /// \file utils/text/templates.hpp
30 /// Custom templating engine for text documents.
32 /// This module provides a simple mechanism to generate text documents based on
33 /// templates. The templates are just text files that contain template
38 /// generic enough to handle any kind of text document, hence why it lives
39 /// within the utils::text library.
66 namespace text { namespace in namespace:utils
117 } // namespace text
  /src/external/gpl3/gdb/dist/gdb/unittests/
tui-selftests.c 32 const char *text = "hello"; local
33 std::string result = tui_copy_source_line (&text);
35 SELF_CHECK (*text == '\0');
37 text = "hello\n";
38 result = tui_copy_source_line (&text);
40 SELF_CHECK (*text == '\0');
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
tui-selftests.c 32 const char *text = "hello"; local
33 std::string result = tui_copy_source_line (&text);
35 SELF_CHECK (*text == '\0');
37 text = "hello\n";
38 result = tui_copy_source_line (&text);
40 SELF_CHECK (*text == '\0');
  /src/external/apache2/llvm/dist/llvm/utils/
merge-stats.py 20 text = f.read() variable
22 data = json.loads(text)
  /src/external/bsd/kyua-cli/dist/utils/cmdline/
ui.hpp 42 namespace text { namespace in namespace:utils
45 } // namespace text
69 void out_table(const utils::text::table&, utils::text::table_formatter,
  /src/external/gpl2/texinfo/dist/info/
display.h 34 char *text; /* Text of the line as it appears. */ member in struct:__anon9519
35 int textlen; /* Printable Length of TEXT. */
56 writes the text on the screen. */
  /src/external/ibm-public/postfix/dist/src/global/
opened.c 32 /* Format of optional text.
87 VSTRING *text = vstring_alloc(100); local
89 #define TEXT (vstring_str(text))
91 vstring_vsprintf(text, fmt, ap);
94 *TEXT ? " (" : "", TEXT, *TEXT ? ")" : "");
95 vstring_free(text);
cleanup_strflags.c 46 const char *text; member in struct:cleanup_flag_map
79 vstring_sprintf_append(result, "%s ", cleanup_flag_map[i].text);
  /src/external/mpl/dhcp/dist/omapip/
result.c 41 static const char *text[DHCP_R_NRESULTS] = { variable
85 text, DHCP_RESULT_RESULTSET);
  /src/sys/stand/efiboot/
userconf.c 58 char *text; local
73 text = alloc(len);
74 if (text == NULL) {
77 memcpy(text, cmd, len);
79 uc->uc_text = text;
  /src/external/bsd/flex/dist/tests/
header_r_main.c 53 char * text; local
56 text = testget_text(scanner);
61 if ( !text || line < 0)
top_main.c 53 char * text; local
56 text = testget_text(scanner);
61 if ( !text || line < 0)
  /src/external/bsd/openldap/dist/servers/slapd/back-sock/
compare.c 46 char *text; local
77 text = ldif_put_wrap( LDIF_PUT_VALUE,
81 if ( text ) {
82 fprintf( fp, "%s\n", text );
83 ber_memfree( text );
  /src/external/ibm-public/postfix/dist/src/dns/
dns_strerror.c 47 const char *text; member in struct:dns_error_map
66 return (dns_error_map[i].text);
dns_strtype.c 58 const char *text; member in struct:dns_type_map
199 return (dns_type_map[i].text);
208 unsigned dns_type(const char *text)
213 if (strcasecmp(dns_type_map[i].text, text) == 0)
  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
rp_17.h 25 dns_name_t text; member in struct:dns_rdata_rp
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
rp_17.h 26 dns_name_t text; member in struct:dns_rdata_rp
  /src/tests/crypto/opencrypto/
h_comp.c 40 char text[100000] = {0}; variable
62 co1.len = sizeof(text);
63 co1.src = text;
87 if (memcmp(text, buf2, co2.dst_len))
h_comp_zlib.c 39 char text[10000] = {0}; variable
62 co1.len = sizeof(text);
63 co1.src = text;
87 if (z.total_out != sizeof(text))
89 if (memcmp(buf2, text, sizeof(text)))
h_comp_zlib_rnd.c 40 char text[1000]; variable
52 for (i = 0; i < sizeof(text)/sizeof(long); i++)
53 *(long *)(text + i * sizeof(long)) = random();
67 co1.len = sizeof(text);
68 co1.src = text;
91 if (z.total_out != sizeof(text))
93 if (memcmp(buf2, text, sizeof(text)))
  /src/crypto/external/bsd/openssl.old/dist/test/
mdc2test.c 42 static char text[] = "Now is the time for all "; local
43 size_t tlen = strlen(text);
46 ebcdic2ascii(text, text, tlen);
52 || !TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen))
60 if (!TEST_true(EVP_DigestUpdate(c, (unsigned char *)text, tlen))

Completed in 77 milliseconds

1 2 3 4 5 6 7 8 91011>>