HomeSort by relevance Sort by last modified time
    Searched refs:rm_so (Results 76 - 87 of 87) sorted by null

1 2 34

  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 215 fprintf(parser->out_handle, "%s\n", line + match.rm_so);
224 fprintf(parser->out_handle, "%s\n", line + match.rm_so);
246 return ParseFrame(parser, line + match.rm_so);
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.cpp 382 if (matches[1].rm_so != -1)
383 m_opcode_name.assign(out_string + matches[1].rm_so, matches[1].rm_eo - matches[1].rm_so);
384 if (matches[2].rm_so != -1)
385 m_mnemonics.assign(out_string + matches[2].rm_so, matches[2].rm_eo - matches[2].rm_so);
  /external/llvm/lib/Support/
regengine.inc 149 start = string + pmatch[0].rm_so;
217 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = -1;
249 assert(m->pmatch[i].rm_so == -1);
269 pmatch[0].rm_so = m->coldp - m->offp;
278 pmatch[i].rm_so = -1;
462 m->pmatch[i].rm_so = sp - m->offp;
588 assert(m->pmatch[i].rm_so != -1);
589 len = m->pmatch[i].rm_eo - m->pmatch[i].rm_so;
595 ssp = m->offp + m->pmatch[i].rm_so;
649 offsave = m->pmatch[i].rm_so;
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 203 start = string + (size_t)pmatch[0].rm_so;
269 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = (regoff_t)-1;
300 assert(m->pmatch[i].rm_so == (regoff_t)-1);
320 pmatch[0].rm_so = m->coldp - m->offp;
329 pmatch[i].rm_so = (regoff_t)-1;
539 m->pmatch[i].rm_so = sp - m->offp;
676 assert(m->pmatch[i].rm_so != (regoff_t)-1);
677 len = (size_t)(m->pmatch[i].rm_eo - m->pmatch[i].rm_so);
683 ssp = m->offp + (size_t)m->pmatch[i].rm_so;
736 offsave = m->pmatch[i].rm_so;
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 145 start = string + pmatch[0].rm_so;
213 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = -1;
245 assert(m->pmatch[i].rm_so == -1);
265 pmatch[0].rm_so = m->coldp - m->offp;
274 pmatch[i].rm_so = -1;
453 m->pmatch[i].rm_so = sp - m->offp;
579 assert(m->pmatch[i].rm_so != -1);
580 len = m->pmatch[i].rm_eo - m->pmatch[i].rm_so;
586 ssp = m->offp + m->pmatch[i].rm_so;
640 offsave = m->pmatch[i].rm_so;
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
regexp.c 201 regs->start[i] = pmatch[i].rm_so;
239 regmatch[0].rm_so = CAST(int)buf_start_offset;
  /ndk/sources/host-tools/sed-4.2.1/lib/
regexec.c 245 start = pmatch[0].rm_so;
500 assert (pmatch[0].rm_so == start);
504 rval = pmatch[0].rm_so;
569 regs->start[i] = pmatch[i].rm_so;
913 pmatch[reg_idx].rm_so = pmatch[reg_idx].rm_eo = -1;
916 pmatch[0].rm_so = 0;
934 if (pmatch[reg_idx].rm_so != -1)
939 pmatch[reg_idx].rm_so =
940 (pmatch[reg_idx].rm_so == mctx.input.valid_len
942 : mctx.input.offsets[pmatch[reg_idx].rm_so]);
    [all...]
regex.h 549 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
545 regoff_t rm_so; \/* Byte offset from string's start to substring's start. *\/ member in struct:__anon23049
  /cts/suite/audio_quality/lib/src/task/
TaskCase.cpp 254 matchStart = strStart + pmatch[1].rm_so;
256 translated.append(StringUtil::substr(orig, strStart, pmatch[1].rm_so - 1)); //-1 for $
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
regex.h 468 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
464 regoff_t rm_so; \/* Byte offset from string's start to substring's start. *\/ member in struct:__anon26197
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
regex.h 468 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
464 regoff_t rm_so; \/* Byte offset from string's start to substring's start. *\/ member in struct:__anon27933
  /external/pcre/dist/
pcretest.c     [all...]

Completed in 67 milliseconds

1 2 34