HomeSort by relevance Sort by last modified time
    Searched full:first_char (Results 1 - 25 of 29) sorted by null

1 2

  /external/skia/tools/
skdiff_utils.cpp 87 const char *first_char = input_cstr; local
90 while ((match_char = strstr(first_char, oldSubstring))) {
91 output.append(first_char, (match_char - first_char));
93 first_char = match_char + oldSubstringLen;
95 output.append(first_char);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
Hex.java 30 private static final char[] FIRST_CHAR = new char[256];
34 FIRST_CHAR[i] = HEX_DIGITS[(i >> 4) & 0xF];
68 cArray[j++] = FIRST_CHAR[index];
  /system/core/libutils/
Unicode.cpp 131 const char first_char = *cur; local
132 if ((first_char & 0x80) == 0) { // ASCII
139 char32_t utf32 = first_char;
141 (first_char & mask);
363 const char first_char = *cur++; local
364 if ((first_char & 0x80) == 0) { // ASCII
370 if ((first_char & 0x40) == 0) {
378 num_to_read < 5 && (first_char & mask);
386 // "first_char" must be (110xxxxx - 11110xxx)
391 utf32 |= ((~to_ignore_mask) & first_char) << (6 * (num_to_read - 1))
454 const char first_char = *cur; local
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
named_parameter.ipp 89 unit_test::first_char( cstring( p_name ) ) == unit_test::first_char( cstring( cnp.p_name ) );
argv_traverser.ipp 145 return first_char( m_work_buffer ) == c;
  /external/pcre/dist/
pcre_byte_order.c 139 re->first_char = swap_uint16(re->first_char);
142 re->first_char = swap_uint32(re->first_char);
pcre_fullinfo.c 139 ((re->flags & PCRE_FIRSTSET) != 0)? (int)re->first_char :
145 (re->flags & PCRE_FIRSTSET) != 0 ? re->first_char : 0;
pcre_dfa_exec.c 3202 pcre_uchar first_char = 0; local
    [all...]
pcretest.c 4158 pcre_uint32 first_char, need_char; local
    [all...]
pcre_exec.c 6359 pcre_uchar first_char = 0; local
    [all...]
pcre_internal.h 2324 pcre_uint16 first_char; \/* Starting character *\/ member in struct:real_pcre8_or_16
2350 pcre_uint32 first_char; \/* Starting character *\/ member in struct:real_pcre32
    [all...]
pcre_compile.c     [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
unit_test_main.ipp 58 else if( first_char( in ) == '*' && last_char( in ) == '*' ) {
62 else if( first_char( in ) == '*' ) {
  /system/core/liblog/
logprint.c 770 const char first_char = *cur++; local
776 if ((first_char & 0x80) == 0) { /* ASCII */
784 if ((first_char & 0x40) == 0) {
789 num_to_read < 5 && (first_char & mask);
799 /* "first_char" must be (110xxxxx - 11110xxx) */
804 utf32 |= ((~to_ignore_mask) & first_char) << (6 * (num_to_read - 1));
  /external/freetype/include/
ftwinfnt.h 206 FT_Byte first_char; member in struct:FT_WinFNT_HeaderRec_
  /external/pdfium/third_party/freetype/include/
ftwinfnt.h 206 FT_Byte first_char; member in struct:FT_WinFNT_HeaderRec_
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_parser_old.cpp 592 int first_char = m_WordBuffer[0]; local
593 if (first_char == '/') {
596 if (first_char == '(') {
599 if (first_char == '<') {
633 if (first_char == '[') {
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/
WBAmrDecTest.c 1908 signed char first_char; local
1956 OMX_S8 first_char; local
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/
basic_cstring.hpp 681 // ************** first_char ************** //
686 first_char( basic_cstring<CharT> source ) function in namespace:boost::unit_test
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
AndroidManifestDescriptors.java 599 boolean first_char = true;
602 if (!first_char) {
608 first_char = false;
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 258 unsigned int first_char, last_char, pages, rows;
  /external/mesa3d/src/glx/
xfont.c 261 unsigned int first_char, last_char, pages, rows;
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 264 unsigned int first_char, last_char, pages, rows;
  /external/v8/src/
scanner.cc 1044 uc32 first_char = c0_; local
1046 AddLiteralChar(first_char);
    [all...]
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp 1238 const char first_char = command_string[0]; local
    [all...]

Completed in 1369 milliseconds

1 2