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

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/tradcpp/dist/tests/
t04.c 1 #define string(x) "x" macro
2 string(abc)
  /src/usr.sbin/netgroup_mkdb/
str.h 34 struct string { struct
40 void str_init(struct string *);
41 void str_append(struct string *, const char *, int);
42 void str_prepend(struct string *, const char *, int);
43 void str_free(struct string *);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
break-f-std-string.cc 18 #include <string>
23 /* Work around missing std::string typedef before gcc commit
24 "Define std::string and related typedefs outside __cxx11 namespace". */
27 typedef __cxx11::string string; typedef in namespace:std
34 f (std::string s)
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
empty-string.f90 25 integer(kind=4) function string_length(string)
26 character*(*) :: string local in function:string_length
27 string_length = len(string) ! Break here.
mixed-lang-stack.c 18 #include <string.h>
43 char *string = "this is a string from C"; local
44 mixed_func_1d_ (&a, &b, &c, &d, string, strlen (string));
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
break-f-std-string.cc 18 #include <string>
23 /* Work around missing std::string typedef before gcc commit
24 "Define std::string and related typedefs outside __cxx11 namespace". */
27 typedef __cxx11::string string; typedef in namespace:std
34 f (std::string s)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
empty-string.f90 25 integer(kind=4) function string_length(string)
26 character*(*) :: string local in function:string_length
27 string_length = len(string) ! Break here.
mixed-lang-stack.c 18 #include <string.h>
43 char *string = "this is a string from C"; local
44 mixed_func_1d_ (&a, &b, &c, &d, string, strlen (string));
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
identifier.h 21 DString string; member in class:Identifier
24 static Identifier* create(const char *string);
  /src/external/ibm-public/postfix/dist/src/global/
string_list.c 7 /* match a string against a pattern list
25 /* This module implements tests for list membership of a string.
28 /* is either a string, a file name (in which case the contents
32 /* A string matches a string list when it appears in the list of
33 /* string patterns. The matching process is case insensitive.
46 /* The last argument specifies a list of string patterns.
48 /* string_list_match() matches the specified string against the
93 msg_fatal("usage: %s [-v] patterns string", progname);
99 char *string; local
    [all...]
  /src/crypto/external/cpl/trousers/dist/src/tspi/
tspi_getset.c 14 #include <string.h>
659 BYTE *string = NULL; local
718 if ((string = Trspi_UNICODE_To_Native(rgbAttribData,
724 string);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
stringfwd.h 0 // <string> Forward declarations -*- C++ -*-
27 * Do not attempt to use it directly. @headername{string}
76 /// A string of @c char
77 typedef basic_string<char> string; typedef
79 /// A string of @c wchar_t
83 /// A string of @c char8_t
88 /// A string of @c char16_t
91 /// A string of @c char32_t
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
stringfwd.h 0 // <string> Forward declarations -*- C++ -*-
27 * Do not attempt to use it directly. @headername{string}
76 /// A string of @c char
77 typedef basic_string<char> string; typedef
79 /// A string of @c wchar_t
83 /// A string of @c char8_t
88 /// A string of @c char16_t
91 /// A string of @c char32_t
  /src/lib/libutil/
stat_flags.c 51 #include <string.h>
58 (void)strlcat(string, prefix, sizeof(string)); \
59 (void)strlcat(string, s, sizeof(string)); \
65 * Convert stat flags to a comma-separated string. If no flags
66 * are set, return the default string.
71 char string[128]; local
74 string[0] = '\0';
97 return strdup(string);
128 char *string, *p; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
x_ietfatt.c 20 * octets OCTET STRING,
22 * string UTF8String
27 * same choice of value (octet, oid or string).
35 ASN1_UTF8STRING *string; member in union:OSSL_IETF_ATTR_SYNTAX_VALUE_st::__anon375
48 ASN1_SIMPLE(OSSL_IETF_ATTR_SYNTAX_VALUE, u.string, ASN1_UTF8STRING),
136 return val->u.string;
173 val->u.string = data;
  /src/crypto/external/bsd/heimdal/dist/lib/com_err/
compile_et.h 45 #include <string.h>
62 char *string; member in struct:error_code
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
sel-gram.y 47 char *string;
62 %type <expr> string
66 %token <string> NUMBER
67 %token <string> STRING
68 %token <string> IDENTIFIER
97 | string { $$ = $1; }
103 string : STRING { $$ = _hx509_make_expr(expr_STRING, $1, NULL); }; label
  /src/crypto/external/cpl/trousers/dist/src/tspi/gtk/
interface.h 19 char *string; member in struct:userdata
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 43 #include "gtest/internal/gtest-string.h"
67 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
80 const std::string& string() const { return pathname_; } function in class:testing::internal::FilePath
117 // the name, otherwise return the name string unmodified.
203 std::string pathname_;
  /src/external/bsd/elftosb/dist/common/
Value.h 11 #include <string>
27 virtual std::string getTypeName() const = 0;
41 virtual std::string getTypeName() const { return "integer"; }
73 virtual std::string getTypeName() const { return "sized integer"; }
95 * \brief String value.
97 * Simply wraps the STL std::string class.
103 StringValue(const std::string & value) : m_value(value) {}
104 StringValue(const std::string * value) : m_value(*value) {}
107 virtual std::string getTypeName() const { return "string"; }
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/test/
test_read_pax_xattr_rht_security_selinux.c 39 const char *string; local
55 string = "system_u:object_r:admin_home_t:s0";
56 assertEqualMem(xval, string, xsize);
57 assertEqualInt((int)xsize, strlen(string));
test_read_pax_xattr_schily.c 39 const char *string, *array; local
55 string = "system_u:object_r:unlabeled_t:s0";
56 assertEqualString(xval, string);
58 assertEqualInt((int)xsize, strlen(string) + 1);
  /src/external/bsd/libfido2/dist/openbsd-compat/
bsd-asprintf.c 39 char *string, *newstr; local
42 if ((string = malloc(INIT_SZ)) == NULL)
46 ret = vsnprintf(string, INIT_SZ, fmt, ap2);
49 *str = string;
51 free(string);
55 if ((newstr = realloc(string, len)) == NULL) {
56 free(string);
62 if (ret < 0 || (size_t)ret >= len) { /* failed with realloc'ed string */
  /src/external/bsd/libpcap/dist/rpcapd/
win32-svc.c 58 char string[PCAP_ERRBUF_SIZE]; local
63 pcapint_fmt_errmsg_for_win32_err(string, sizeof (string),
65 rpcapd_log(LOGPRIO_ERROR, "%s", string);
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
catch-fork-kill.c 42 const char string[] = "Hello, world!\n"; local

Completed in 30 milliseconds

1 2 3 4 5 6 7 8 91011>>