/ndk/sources/host-tools/ndk-stack/regex/ |
H A D | cname.h | 19 * 3. Neither the name of the University nor the names of its contributors 38 /* character-name table */ 40 const char *name; member in struct:cname
|
H A D | cclass.h | 19 * 3. Neither the name of the University nor the names of its contributors 40 const char *name; member in struct:cclass
|
H A D | regerror.c | 18 * 3. Neither the name of the University nor the names of its contributors 51 const char *name; member in struct:rerr 96 assert(strlen(r->name) < sizeof(convbuf)); 97 (void) strncpy(convbuf, r->name, sizeof convbuf); 123 if (strcmp(r->name, preg->re_endp) == 0)
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
H A D | quote.c | 29 quote_n (int n, char const *name) argument 31 return quotearg_n_style (n, locale_quoting_style, name); 37 quote (char const *name) argument 39 return quote_n (0, name);
|
H A D | basename.c | 1 /* basename.c -- return the last element in a file name 27 /* Return the address of the last file name component of NAME. If 28 NAME has no relative file name components because it is a file 32 last_component (char const *name) argument 34 char const *base = name + FILE_SYSTEM_PREFIX_LEN (name); 60 Return the last file name component of NAME, allocated with 74 base_name (char const *name) argument 76 char const *base = last_component (name); 79 /* If there is no last component, then name i 111 base_len(char const *name) argument [all...] |
H A D | set-mode-acl.c | 37 chmod_or_fchmod (const char *name, int desc, mode_t mode) argument 42 return chmod (name, mode); 54 qset_acl (char const *name, int desc, mode_t mode) argument 115 ret = acl_set_file (name, ACL_TYPE_ACCESS, acl); 122 return chmod_or_fchmod (name, desc, mode); 132 if (S_ISDIR (mode) && acl_delete_def_file (name)) 139 return chmod_or_fchmod (name, desc, mode); 150 /* On MacOS X, acl_get_file (name, ACL_TYPE_ACCESS) 151 and acl_get_file (name, ACL_TYPE_DEFAULT) 153 acl_get_file (name, ACL_TYPE_EXTENDE 484 set_acl(char const *name, int desc, mode_t mode) argument [all...] |
H A D | file-has-acl.c | 275 file_has_acl (char const *name, struct stat const *sb) argument 291 ret = acl_extended_file (name); 296 /* On MacOS X, acl_get_file (name, ACL_TYPE_ACCESS) 297 and acl_get_file (name, ACL_TYPE_DEFAULT) 300 acl_get_file (name, ACL_TYPE_EXTENDED). */ 301 acl_t acl = acl_get_file (name, ACL_TYPE_EXTENDED); 310 acl_t acl = acl_get_file (name, ACL_TYPE_ACCESS); 320 /* On OSF/1, acl_get_file (name, ACL_TYPE_DEFAULT) always 324 /* On Linux, FreeBSD, IRIX, acl_get_file (name, ACL_TYPE_ACCESS) 325 and acl_get_file (name, ACL_TYPE_DEFAUL [all...] |
H A D | getopt.in.h | 141 of `struct option' terminated by an element containing a name which is 162 const char *name; member in struct:option 179 arguments in ARGV (ARGC of them, minus the program name) for
|
/ndk/sources/host-tools/make-3.81/ |
H A D | getopt.h | 62 of `struct option' terminated by an element containing a name which is 84 const char *name; member in struct:option 86 char *name;
|
H A D | dep.h | 26 #define RM_NO_TILDE (1 << 3) /* Don't expand ~ in file name. */ 39 char *name; member in struct:dep 54 char *name; member in struct:nameseq 64 extern char *tilde_expand PARAMS ((char *name)); 71 #define dep_name(d) ((d)->name == 0 ? (d)->file->name : (d)->name)
|
H A D | signame.c | 64 init_sig (int number, const char *abbrev, const char *name) argument 71 sys_siglist[number] = name; 199 is the confusion from giving it a different name than under Unix. */
|
H A D | ar.c | 29 extern int ar_name_equal PARAMS ((char *name, char *mem, int truncated)); 35 An archive-member reference is a name like `lib(member)'. 36 If a name like `lib((entry))' is used, a fatal error is signaled at 40 ar_name (char *name) argument 42 char *p = strchr (name, '('); 45 if (p == 0 || p == name) 53 fatal (NILF, _("attempt to use unsupported feature: `%s'"), name); 60 Put the malloc'd archive name in *ARNAME_P if ARNAME_P is non-nil; 61 put the malloc'd member name in *MEMNAME_P if MEMNAME_P is non-nil. */ 64 ar_parse_name (char *name, cha argument 81 ar_member_date(char *name) argument 123 ar_member_date_1(int desc UNUSED, char *mem, int truncated, long int hdrpos UNUSED, long int datapos UNUSED, long int size UNUSED, long int date, int uid UNUSED, int gid UNUSED, int mode UNUSED, char *name) argument 135 ar_touch(char *name) argument 142 ar_touch(char *name) argument [all...] |
H A D | vmsfunctions.c | 145 vms_stat (char *name, struct stat *buf) argument 183 name = vmsify (name, 0); 187 Fab.fab$l_fna = name; /* name of file */ 188 Fab.fab$b_fns = strlen (name); 231 status = stat (name, buf);
|
H A D | vmsify.c | 1 /* vmsify.c -- Module for vms <-> unix file name conversion 109 get translation of logical name 114 trnlog (char *name) argument 123 INIT_DSC_CSTRING (name_dsc, name); 168 convert unix style name to vms style 169 type = 0 -> name is a full name (directory and filename part) 170 type = 1 -> name is a directory 171 type = 2 -> name is a filename without directory 175 input full name di 212 vmsify(char *name, int type) argument 907 unixify(char *name) argument [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
H A D | locale_impl.h | 72 basic_string<char, char_traits<char>, allocator<char> > name; member in class:_Locale_impl 102 _Locale_name_hint* insert_ctype_facets(const char* &name, char *buf, _Locale_name_hint* hint); 103 _Locale_name_hint* insert_numeric_facets(const char* &name, char *buf, _Locale_name_hint* hint); 104 _Locale_name_hint* insert_time_facets(const char* &name, char *buf, _Locale_name_hint* hint); 105 _Locale_name_hint* insert_collate_facets(const char* &name, char *buf, _Locale_name_hint* hint); 106 _Locale_name_hint* insert_monetary_facets(const char* &name, char *buf, _Locale_name_hint* hint); 107 _Locale_name_hint* insert_messages_facets(const char* &name, char *buf, _Locale_name_hint* hint);
|
H A D | iostream.cpp | 162 static const char* _Stl_extract_open_param(const char* name) argument 163 { return name; }
|
H A D | messages.cpp | 100 _Messages::_Messages(bool is_wide, const char *name) : argument 102 if (!name) 107 _M_message_obj = _STLP_PRIV __acquire_messages(name, buf, 0, &__err_code); 109 locale::_M_throw_on_creation_failure(__err_code, name, "messages"); 191 messages_byname<char>::messages_byname(const char *name, size_t refs) argument 192 : messages<char>(refs), _M_impl(new _STLP_PRIV _Messages(false, name)) {} 220 messages_byname<wchar_t>::messages_byname(const char *name, size_t refs) argument 221 : messages<wchar_t>(refs), _M_impl(new _STLP_PRIV _Messages(true, name)) {}
|
H A D | locale.cpp | 32 static inline bool is_C_locale_name (const char* name) argument 33 { return ((name[0] == 'C') && (name[1] == 0)); } 59 { _STLP_THROW(runtime_error("Invalid null locale name")); } 61 void _STLP_CALL locale::_M_throw_on_combine_error(const string& name) { argument 64 what += name.empty() ? "system" : name.c_str(); 70 const char* name, const char* facet) { 77 what += name[0] == 0 ? "system" : name; 69 _M_throw_on_creation_failure(int __err_code, const char* name, const char* facet) argument 138 locale(const char* name) argument 190 _Stl_loc_combine_names_aux(_Locale_impl* L, const char* name, const char* ctype_name, const char* time_name, const char* numeric_name, const char* collate_name, const char* monetary_name, const char* messages_name, locale::category c) argument 221 _Stl_loc_combine_names(_Locale_impl* L, const char* name, const char* ctype_name, const char* time_name, const char* numeric_name, const char* collate_name, const char* monetary_name, const char* messages_name, locale::category c) argument 247 locale(const locale& L, const char* name, locale::category c) argument 389 string locale::name() const { function in class:locale [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
H A D | maketab.c | 10 documentation, and that the name Lucent Technologies or any of 39 const char *name; member in struct:xx 120 char buf[200], name[200], def[200]; local 145 n = sscanf(buf, "%1c %s %s %d", &c, def, name, &tok); 152 names[tok-FIRSTTOKEN] = (char *) malloc(strlen(name)+1); 153 strcpy(names[tok-FIRSTTOKEN], name); 154 printf("\t(char *) \"%s\",\t/* %d */\n", name, tok); 160 table[p->token-FIRSTTOKEN] = p->name;
|
/ndk/tests/device/test-gnustl-full/unit/cppunit/ |
H A D | test_main.cpp | 54 static void usage(const char* name) argument 57 name, Timer::supported() ? " [-m]": "");
|
/ndk/tests/device/test-stlport/unit/cppunit/ |
H A D | test_main.cpp | 54 static void usage(const char* name) argument 57 name, Timer::supported() ? " [-m]": "");
|
/ndk/tests/device/test-gnustl-full/unit/ |
H A D | num_facets_test.cpp | 15 const char *name; member in struct:ref_locale 21 //{ name, decimal_point, thousands_sepy_thousands_sep}, 52 //cout << "In " << loc.name() << " 1234.56 is written: " << fostr.str() << endl; 140 locale tmp(tested_locales[i].name); 149 CPPUNIT_MESSAGE( loc.name().c_str() ); 153 locale tmp(locale::classic(), tested_locales[i].name, locale::numeric); 159 locale tmp(locale::classic(), new numpunct_byname<char>(tested_locales[i].name)); 173 * instance from a null pointer or an unknown name should result in
|
/ndk/tests/device/test-stlport/unit/ |
H A D | num_facets_test.cpp | 15 const char *name; member in struct:ref_locale 21 //{ name, decimal_point, thousands_sepy_thousands_sep}, 52 //cout << "In " << loc.name() << " 1234.56 is written: " << fostr.str() << endl; 140 locale tmp(tested_locales[i].name); 149 CPPUNIT_MESSAGE( loc.name().c_str() ); 153 locale tmp(locale::classic(), tested_locales[i].name, locale::numeric); 159 locale tmp(locale::classic(), new numpunct_byname<char>(tested_locales[i].name)); 173 * instance from a null pointer or an unknown name should result in
|
/ndk/sources/cxx-stl/stlport/src/details/ |
H A D | fstream_stdio.cpp | 172 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode, argument 232 _M_file = FOPEN(name, flags); 261 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode) argument 266 return this->_M_open(name, openmode, S_IRUSR | S_IWUSR | S_IRGRP |
|
H A D | fstream_unistd.cpp | 155 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode, argument 193 file_no = OPEN(name, flags, permission); 215 bool _Filebuf_base::_M_open(const char* name, ios_base::openmode openmode) argument 220 return this->_M_open(name, openmode, S_IRUSR | S_IWUSR | S_IRGRP |
|