HomeSort by relevance Sort by last modified time
    Searched refs:Char (Results 26 - 50 of 99) sorted by null

12 3 4

  /external/opencore/codecs_v2/audio/mp3/dec/include/
pvmp3_audio_type_defs.h 67 #ifndef Char
68 typedef int8 Char;
  /external/opencore/codecs_v2/audio/aac/dec/src/
s_progconfig.h 89 Char comments[(1<<LEN_PC_COMM)+1]; /* TO BE DELETED */
s_tdec_int_file.h 254 Char data_stream_bytes[(1<<LEN_D_CNT)+1];
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_progconfig.h 89 Char comments[(1<<LEN_PC_COMM)+1]; /* TO BE DELETED */
pv_audio_type_defs.h 72 typedef int8_t Char;
s_tdec_int_file.h 254 Char data_stream_bytes[(1<<LEN_D_CNT)+1];
  /external/webkit/WebKitTools/android/flex-2.5.4a/
sym.c 36 int hashfunct PROTO((register char[], int));
52 register char sym[];
53 char *str_def;
102 Char ccltxt[];
108 Char *copy_unsigned_string();
110 (void) addsym( (char *) copy_unsigned_string( ccltxt ),
111 (char *) 0, cclnum,
122 Char ccltxt[];
124 return findsym( (char *) ccltxt, ccltab, CCL_HASH_SIZE )->int_val;
131 register char sym[]
    [all...]
flexdef.h 75 #define Char unsigned char
326 char *name;
327 char *str_val;
432 extern const char *skel[];
434 extern char *infilename, *outfilename;
436 extern char *prefix, *yyclass;
438 extern char **input_files;
440 extern char *program_name;
442 extern char *action_array
    [all...]
misc.c 35 char *defname;
38 char buf[MAXLINE];
53 char *new_text;
100 register char *str;
104 if ( ! isascii( (Char) *str ) || ! islower( *str ) )
116 register char *str;
120 if ( ! isascii( (Char) *str ) || ! isupper( *str ) )
182 Char clower( c )
185 return (Char) ((isascii( c ) && isupper( c )) ? tolower( c ) : c);
191 char *copy_string( str
    [all...]
scan.l 48 yylval = (unsigned char) yytext[0]; \
49 return CHAR;
101 Char nmdef[MAXLINE], myesc();
187 strcpy( (char *) nmdef, yytext );
190 for ( i = strlen( (char *) nmdef ) - 1;
409 if ( (cclval = ccllookup( (Char *) nmstr )) != 0 )
423 cclinstal( (Char *) nmstr, lastccl + 1 );
436 register Char *nmdefptr;
437 Char *ndlookup();
449 int len = strlen( (char *) nmdefptr )
    [all...]
  /external/bzip2/
bzip2.c 161 typedef char Char;
162 typedef unsigned char Bool;
163 typedef unsigned char UChar;
205 Char inName [FILE_NAME_LEN];
206 Char outName[FILE_NAME_LEN];
207 Char tmpName[FILE_NAME_LEN];
208 Char *progName;
209 Char progNameReally[FILE_NAME_LEN];
213 static void panic ( const Char* ) NORETURN
    [all...]
bzip2recover.c 53 typedef unsigned char UChar;
54 typedef char Char;
55 typedef unsigned char Bool;
62 Char inFileName[BZ_MAX_FILENAME];
63 Char outFileName[BZ_MAX_FILENAME];
64 Char progName[BZ_MAX_FILENAME];
148 Char mode;
261 static Bool endsInBz2 ( Char* name )
301 Int32 main ( Int32 argc, Char** argv
    [all...]
  /external/bluetooth/glib/tests/
utf8-validate.c 22 #define UNICODE_VALID(Char) \
23 ((Char) < 0x110000 && \
24 (((Char) & 0xFFFFF800) != 0xD800) && \
25 ((Char) < 0xFDD0 || (Char) > 0xFDEF) && \
26 ((Char) & 0xFFFE) != 0xFFFE)
310 main (int argc, char *argv[])
  /external/opencore/codecs_v2/audio/sbc/enc/src/
sbc_type_defs.h 70 * define char type
72 typedef char Char;
  /external/v8/src/
dateparser.h 49 template <typename Char>
50 static bool Parse(Vector<Char> str, FixedArray* output);
65 template <typename Char>
68 explicit InputReader(Vector<Char> s)
137 Vector<Char> buffer_;
dateparser-inl.h 36 template <typename Char>
37 bool DateParser::Parse(Vector<Char> str, FixedArray* out) {
39 InputReader<Char> in(str);
interpreter-irregexp.cc 69 Vector<const char> subject) {
89 const char* bytecode_name) {
92 const char* format =
108 unsigned char b = pc[i];
190 template <typename Char>
192 Vector<const Char> subject,
325 Char next = subject[pos + 1];
327 (subject[pos] | (next << (kBitsPerByte * sizeof(Char))));
334 Char next = subject[pos + 1];
335 current_char = (subject[pos] | (next << (kBitsPerByte * sizeof(Char))));
    [all...]
  /external/webkit/WebCore/platform/win/
KeyEventWin.cpp 191 , m_text((type == Char) ? singleCharacterString(code) : String())
192 , m_unmodifiedText((type == Char) ? singleCharacterString(code) : String())
193 , m_keyIdentifier((type == Char) ? String() : keyIdentifierForWindowsKeyCode(code))
  /external/webkit/WebCore/platform/chromium/
PlatformKeyboardEventChromium.cpp 46 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
48 ASSERT(type == RawKeyDown || type == Char);
  /external/webkit/WebKit/chromium/public/
WebInputEvent.h 99 Char
130 || type == Char;
168 char keyIdentifier[keyIdentifierLengthCap];
  /external/bluetooth/glib/glib/
gutf8.c 48 #define UTF8_COMPUTE(Char, Mask, Len) \
49 if (Char < 128) \
54 else if ((Char & 0xe0) == 0xc0) \
59 else if ((Char & 0xf0) == 0xe0) \
64 else if ((Char & 0xf8) == 0xf0) \
69 else if ((Char & 0xfc) == 0xf8) \
74 else if ((Char & 0xfe) == 0xfc) \
82 #define UTF8_LENGTH(Char) \
83 ((Char) < 0x80 ? 1 : \
84 ((Char) < 0x800 ? 2 :
    [all...]
guniprop.c 40 #define ATTTABLE(Page, Char) \
41 ((ATTR_TABLE(Page) == G_UNICODE_MAX_TABLE_INDEX) ? 0 : (attr_data[ATTR_TABLE(Page)][Char]))
43 #define TTYPE_PART1(Page, Char) \
46 : (type_data[type_table_part1[Page]][Char]))
48 #define TTYPE_PART2(Page, Char) \
51 : (type_data[type_table_part2[Page]][Char]))
53 #define TYPE(Char) \
54 (((Char) <= G_UNICODE_LAST_CHAR_PART1) \
55 ? TTYPE_PART1 ((Char) >> 8, (Char) & 0xff)
    [all...]
  /external/webkit/WebKit/chromium/src/
WebInputEventConversion.cpp 115 case WebInputEvent::Char:
116 return PlatformKeyboardEvent::Char;
143 // we need to convert KeyDown to RawKeydown and Char events
146 ASSERT(type == RawKeyDown || type == Char);
242 type = WebInputEvent::Char;
  /external/webkit/WebKit/chromium/src/win/
WebInputEventFactory.cpp 114 result.type = WebInputEvent::Char;
118 result.type = WebInputEvent::Char;
120 result.type = WebInputEvent::Char;
126 if (result.type == WebInputEvent::Char || result.type == WebInputEvent::RawKeyDown) {
130 if (result.type != WebInputEvent::Char)
  /external/dbus/dbus/
dbus-string.c 79 unsigned char *aligned;
80 unsigned char *real_block;
209 const char *value)
229 const char *value,
241 real->str = (unsigned char*) value;
299 unsigned char *new_str;
321 unsigned char *new_str;
416 char*
421 return (char*) real->str;
433 const char*
    [all...]

Completed in 778 milliseconds

12 3 4