HomeSort by relevance Sort by last modified time
    Searched full:toklen (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-token.re 48 #define TOKLEN (size_t)(cursor-s->tok)
74 handle_dot_label(YYSTYPE *lvalp, char *tok, size_t toklen, size_t zeropos,
80 toklen-zeropos-(parser_nasm->tasm?2:0));
87 lvalp->str_val = yasm__xstrndup(tok + zeropos, toklen - zeropos);
96 lvalp->str_val = yasm__xstrndup(tok + zeropos, toklen - zeropos);
100 lvalp->str_val = yasm__xstrndup(tok+zeropos, toklen-zeropos);
105 size_t len = toklen - zeropos + parser_nasm->locallabel_base_len;
108 strncat(lvalp->str_val, tok+zeropos, toklen-zeropos);
161 savech = s->tok[TOKLEN];
162 s->tok[TOKLEN] = '\0'
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-token.re 50 #define TOKLEN (size_t)(cursor-s->tok)
230 savech = s->tok[TOKLEN];
231 s->tok[TOKLEN] = '\0';
233 s->tok[TOKLEN] = savech;
239 savech = s->tok[TOKLEN];
240 s->tok[TOKLEN] = '\0';
242 s->tok[TOKLEN] = savech;
248 savech = s->tok[TOKLEN];
249 s->tok[TOKLEN] = '\0';
251 s->tok[TOKLEN] = savech
    [all...]
  /external/srec/seti/sltsEngine/src/
run_seq_lts.c 659 int i, toklen; local
676 tok = safe_strtok(line, seps, &toklen);
680 while(tok && toklen > 0){
681 count += toklen;
682 strncat(tempstr, tok, toklen);
687 tok = safe_strtok(tok+toklen, seps, &toklen);
1347 int toklen; local
    [all...]
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 378 unsigned TokLen = Tok.getLength();
390 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
395 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
401 --TokLen;
408 --TokLen;
412 HighlightRange(RB, TokOffs, TokOffs+TokLen, BufferStart,
422 unsigned TokEnd = TokOffs+TokLen;
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 604 static int get_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen)
621 *toklen = pos - *tokstart;
636 static int get_sub_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) {
652 *toklen = pos - *tokstart;
662 *toklen = pos - *tokstart;
665 *toklen = pos - *tokstart;
685 int toklen, tokstart; /*legnth and start of generic token*/ local
692 toklen = 0;
701 while (get_tok(str, pos, textlen, &tokstart, &toklen)) {
705 while (get_sub_tok(str, tokpos, tokstart+toklen, &stokstart, &stoklen))
    [all...]
  /external/clang/lib/Edit/
Commit.cpp 252 unsigned tokLen = Lexer::MeasureTokenLength(spellLoc, SourceMgr, LangOpts);
253 AfterLoc = loc.getLocWithOffset(tokLen);
  /external/clang/include/clang/Lex/
Lexer.h 123 unsigned TokLen, Preprocessor &PP);
217 SourceLocation getSourceLocation(const char *Loc, unsigned TokLen = 1) const;
464 unsigned TokLen = TokEnd-BufferPtr;
465 Result.setLength(TokLen);
466 Result.setLocation(getSourceLocation(BufferPtr, TokLen));
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldChecker.cpp 101 unsigned TokLen = 1;
103 TokLen = 2;
104 Token = Expr.substr(0, TokLen);
  /external/clang/lib/Lex/
Lexer.cpp 173 unsigned TokLen, Preprocessor &PP) {
187 L->BufferEnd = StrData+TokLen;
194 ExpansionLocEnd, TokLen);
816 unsigned tokLen = MeasureTokenLength(spellLoc, SM, LangOpts);
817 if (tokLen == 0)
820 SourceLocation afterLoc = loc.getLocWithOffset(tokLen);
    [all...]
LiteralSupport.cpp     [all...]
  /external/clang/lib/AST/
CommentLexer.cpp 273 const unsigned TokLen = TokEnd - BufferPtr;
276 Result.setLength(TokLen);

Completed in 527 milliseconds