HomeSort by: relevance | last modified time | path
    Searched defs:char (Results 1 - 19 of 19) sorted by relevancy

  /src/external/gpl2/gettext/dist/gettext-tools/libuniname/
gen-uninames 8 (defstruct unicode-char
37 (unless (eql (char name-string 0) #\<)
68 (push (make-unicode-char :code (transform code)
76 (dolist (name (list* "HANGUL SYLLABLE" "CJK COMPATIBILITY" (mapcar #'unicode-char-name all-chars)))
128 (format ostream "static const char unicode_name_words[~D] = {~%"
197 ;; Compute the word-indices for every unicode-char.
199 (let ((name (unicode-char-name uc))
213 (setf (unicode-char-word-indices uc)
234 :key #'unicode-char-word-indices
238 (reduce #'+ (mapcar (lambda (uc) (length (unicode-char-word-indices uc))) all-chars)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
escaped_string.h 34 operator const char *() const { return m_str; }
35 void escape (const char *);
39 char *m_str;
  /src/external/gpl3/gcc.old/dist/gcc/
escaped_string.h 34 operator const char *() const { return m_str; }
35 void escape (const char *);
39 char *m_str;
  /src/external/gpl2/gettext/dist/gettext-runtime/libasprintf/
autosprintf.cc 39 autosprintf::autosprintf (const char *format, ...)
61 autosprintf::operator char * () const
66 char *copy = new char[length];
  /src/external/bsd/elftosb/dist/common/
Value.h 110 operator const char * () const { return m_value.c_str(); }
118 StringValue & operator = (const char * value) { m_value = value; return *this; }
options.cpp 38 static const char ident[] = "@(#)Options 1.05" ;
46 #define NULLSTR (char *)NULL
60 static const char endl = '\n' ;
67 operator<<(char ch);
70 operator<<(const char * str);
73 write(const char * buf, unsigned bufsize);
80 ostream::operator<<(char ch) {
86 ostream::operator<<(const char * str) {
92 ostream::write(const char * buf, unsigned ) {
106 const char *
    [all...]
  /src/external/gpl2/groff/dist/src/libs/libdriver/
input.cpp 127 - The many usages of type `int' are differentiated by using `Char',
289 class Char {
292 Char(void) : data('\0') {}
293 Char(const int c) : data(c) {}
294 bool operator==(char c) const { return (data == c) ? true : false; }
296 bool operator==(const Char c) const
298 bool operator!=(char c) const { return !(*this == c); }
300 bool operator!=(const Char c) const { return !(*this == c); }
302 operator unsigned char() const { return (unsigned char) data;
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
cxx11-shim_facets.cc 89 char* _M_pc;
95 char _M_unused[16];
97 operator const char*() const { return _M_pc; }
104 char _M_bytes[sizeof(__str_rep)];
194 ios_base& io, ios_base::iostate& err, tm* t, char which);
215 __messages_open(other_abi, const facet*, const char*, size_t,
450 do_open(const basic_string<char>& s, const locale& l) const
472 template struct numpunct_shim<char>;
473 template struct collate_shim<char>;
474 template struct moneypunct_shim<char, true>
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
cxx11-shim_facets.cc 89 char* _M_pc;
95 char _M_unused[16];
97 operator const char*() const { return _M_pc; }
104 char _M_bytes[sizeof(__str_rep)];
194 ios_base& io, ios_base::iostate& err, tm* t, char which);
215 __messages_open(other_abi, const facet*, const char*, size_t,
450 do_open(const basic_string<char>& s, const locale& l) const
472 template struct numpunct_shim<char>;
473 template struct collate_shim<char>;
474 template struct moneypunct_shim<char, true>
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
cplusfuncs.cc 6 foo (int, const char *);
53 /**/ operator char* ();
56 int foofunc (int, signed char *); // forced to have int return type, which is required
58 const char *ccpfoo;
68 foo::foo (int i, const char *ccp) { ifoo = i; ccpfoo = ccp; }
115 /**/ foo::operator char* () { return 0; }
120 void overload1arg (char arg) { arg = 0; }
121 void overload1arg (signed char arg) { arg = 0; }
122 void overload1arg (unsigned char arg) { arg = 0; }
163 typedef int (*PFPc_i)(char *);
    [all...]
cpexprs.cc 39 void tclass<char>::do_something () { } // tclass<char>::do_something
120 typedef policyd<char> policyd3;
142 int overload (char* a) const { return 4; } // base::overload(char*) const
269 operator char* () const { return const_cast<char*> ("hello"); } // base::operator char*
334 test_function (int argc, char* argv[]) // test_function
345 (void) a.overload (static_cast<char*> (0))
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
cplusfuncs.cc 6 foo (int, const char *);
53 /**/ operator char* ();
56 int foofunc (int, signed char *); // forced to have int return type, which is required
58 const char *ccpfoo;
68 foo::foo (int i, const char *ccp) { ifoo = i; ccpfoo = ccp; }
115 /**/ foo::operator char* () { return 0; }
120 void overload1arg (char arg) { arg = 0; }
121 void overload1arg (signed char arg) { arg = 0; }
122 void overload1arg (unsigned char arg) { arg = 0; }
163 typedef int (*PFPc_i)(char *);
    [all...]
cpexprs.cc 39 void tclass<char>::do_something () { } // tclass<char>::do_something
120 typedef policyd<char> policyd3;
142 int overload (char* a) const { return 4; } // base::overload(char*) const
269 operator char* () const { return const_cast<char*> ("hello"); } // base::operator char*
334 test_function (int argc, char* argv[]) // test_function
345 (void) a.overload (static_cast<char*> (0))
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/
libgcc2.h 35 extern int __gcc_bcmp (const unsigned char *, const unsigned char *, size_t);
37 extern void __eprintf (const char *, const char *, unsigned int, const char *)
179 #define char bogus_type macro
libgcc2.c 2979 #undef char
2995 __gcc_bcmp (const unsigned char *s1, const unsigned char *s2, size_t size)
2999 const unsigned char c1 = *s1++, c2 = *s2++;
3021 __eprintf (const char *string, const char *expression,
3022 unsigned int line, const char *filename)
3042 /* Cast the void* pointers to char* as some implementations
3045 CLEAR_INSN_CACHE ((char *) beg, (char *) end)
2945 #undef char macro
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/
libgcc2.h 32 extern int __gcc_bcmp (const unsigned char *, const unsigned char *, size_t);
34 extern void __eprintf (const char *, const char *, unsigned int, const char *)
172 #define char bogus_type macro
libgcc2.c 2235 #undef char
2251 __gcc_bcmp (const unsigned char *s1, const unsigned char *s2, size_t size)
2255 const unsigned char c1 = *s1++, c2 = *s2++;
2277 __eprintf (const char *string, const char *expression,
2278 unsigned int line, const char *filename)
2298 /* Cast the void* pointers to char* as some implementations
2301 CLEAR_INSN_CACHE ((char *) beg, (char *) end)
2202 #undef char macro
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Driver.cpp 172 ArrayRef<const char *> Args) {
177 for (const char *ArgPtr : Args) {
205 InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings,
748 llvm::StringMap<const char *> FoundNormalizedTriples;
749 for (const char *Val : OpenMPTargets->getValues()) {
818 static bool searchForFile(SmallVectorImpl<char> &FilePath,
837 SmallVector<const char *, 32> NewCfgArgs;
1019 Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
1072 SmallVector<const char *, 16> CLModePassThroughArgList;
1461 for (const char *TempFile : TempFiles)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCodeComplete.cpp 1694 Results.AddResult(Result("char", CCP_Type));
1912 static const char *GetCompletionTypeString(QualType T, ASTContext &Context,
3201 const char *OperatorName = nullptr;
6285 auto GenerateCCS = [&](const NamedDecl *ND, const char *Name) {
6298 auto AddDefaultCtorInit = [&](const char *Name, const char *Type,
6319 const char *Name, const FieldDecl *FD) {
6336 const char *BaseName =
6344 const char *FieldName =
6620 const char *EncodeType = "char[]"
    [all...]

Completed in 62 milliseconds