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

12 3 4

  /external/v8/src/
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/webkit/WebKitTools/android/flex-2.5.4a/
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...]
ecs.c 103 * Char ccls[];
105 * void mkeccl( Char ccls[], int lenccl, int fwd[llsiz], int bck[llsiz],
116 Char ccls[];
121 static unsigned char cclflags[CSIZE]; /* initialized to all '\0' */
  /external/bzip2/
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/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...]
  /libcore/include/
ScopedPrimitiveArray.h 55 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RO(jchar, Char);
99 INSTANTIATE_SCOPED_PRIMITIVE_ARRAY_RW(jchar, Char);
  /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;
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_tdec_int_file.h 254 Char data_stream_bytes[(1<<LEN_D_CNT)+1];
ps_all_pass_filter_coeff.cpp 174 const Char groupBorders[NO_IID_GROUPS + 1] =
180 const Char bins2groupMap[NO_IID_GROUPS] =
  /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...]
  /external/webkit/WebCore/platform/wx/
KeyboardEventWx.cpp 345 m_type = Char;
348 if (m_type != Char)
351 //ENTER is an editing command processed as a char (only Enter and Tab are)
355 //numpad_enter is a CHAR event.
374 // Can only change type from KeyDown to RawKeyDown or Char, as we lack information for other conversions.
  /external/webkit/WebKit/chromium/tests/
KeyboardTest.cpp 53 const char* interpretKeyEvent(
66 char keyCode,
79 const char* interpretOSModifierKeyPress(char keyCode)
92 const char* interpretCtrlKeyPress(char keyCode)
100 const char* interpretTab(int modifiers)
104 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::Char);
108 const char* interpretNewLine(int modifiers)
112 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::Char);
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacenc/basic_op/
typedefs.h 27 #define CHAR_BIT 8 /* number of bits in a char */
62 ********* define char type
64 typedef char Char;
69 typedef signed char Word8;
70 typedef unsigned char UWord8;
  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
typedefs.h 29 * Char character (none)
75 ********* define char type
77 typedef char Char;
83 typedef signed char Word8;
87 typedef unsigned char UWord8;
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.h 26 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
  /hardware/ti/omap3/dspbridge/inc/
std.h 166 typedef char SmInt; /* SMSIZE-bit signed integer */
174 typedef unsigned char SmUns; /* SMSIZE-bit unsigned integer */
182 typedef unsigned char SmBits; /* SMSIZE-bit bit string */
196 typedef char Char;
199 typedef char *String; /* pointer to null-terminated character
  /hardware/ti/omap3/dspbridge/libbridge/inc/
std.h 166 typedef char SmInt; /* SMSIZE-bit signed integer */
174 typedef unsigned char SmUns; /* SMSIZE-bit unsigned integer */
182 typedef unsigned char SmBits; /* SMSIZE-bit bit string */
196 typedef char Char;
199 typedef char *String; /* pointer to null-terminated character
  /external/webkit/WebCore/dom/
KeyboardEvent.cpp 43 case PlatformKeyboardEvent::Char:
46 // The caller should disambiguate the combined event into RawKeyDown or Char events.
  /external/webkit/WebCore/platform/
PlatformKeyboardEvent.h 72 // For DOM processing, it needs to be disambiguated as RawKeyDown or Char event.
78 // These events are sent by platforms such as Windows and wxWidgets. RawKeyDown only has information about a physical key, and Char
81 Char
108 // Zero for Char events.
193 Char event type.

Completed in 682 milliseconds

12 3 4