Home
last modified time | relevance | path

Searched refs:lastchar (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DAutoComplete.py73 lastchar = self.text.get("insert-1c")
74 if lastchar == ".":
77 elif lastchar in SEPS:
/external/python/cpython3/Lib/idlelib/
Dautocomplete.py66 lastchar = self.text.get("insert-1c")
67 if lastchar == ".":
70 elif lastchar in SEPS:
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LineEditor/
DLineEditor.cpp147 StringRef(LI->buffer, LI->lastchar - LI->buffer), in ElCompletionFn()
184 << StringRef(LI->buffer, LI->lastchar - LI->buffer); in ElCompletionFn()
188 Data->PrevCount = LI->lastchar - LI->cursor; in ElCompletionFn()
/external/llvm/lib/LineEditor/
DLineEditor.cpp147 StringRef(LI->buffer, LI->lastchar - LI->buffer), in ElCompletionFn()
184 << StringRef(LI->buffer, LI->lastchar - LI->buffer); in ElCompletionFn()
188 Data->PrevCount = LI->lastchar - LI->cursor; in ElCompletionFn()
/external/python/cpython2/Lib/
Dimputil.py472 lastchar = a[-1:]
473 if lastchar == '/' or lastchar == sep:
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DPath.inc662 size_t lastchar = path.length() - 1 ;
664 if (pathname[lastchar] != '/')
665 ++lastchar;
667 pathname[lastchar] = '\0';
669 if (createDirectoryHelper(&pathname[0], &pathname[lastchar], create_parents))
736 size_t lastchar = path.length() - 1;
737 if (pathname[lastchar] == '/')
738 pathname[lastchar] = '\0';
740 pathname[lastchar+1] = '\0';
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DPath.inc703 int lastchar = path.length() - 1 ;
704 path.copy(pathname, lastchar+1);
707 if (pathname[lastchar] != '/')
708 pathname[++lastchar] = '/';
709 pathname[lastchar+1] = '*';
710 pathname[lastchar+2] = 0;
751 pathname[lastchar] = 0;
/external/python/cpython2/Modules/
Dzipimport.c1182 Py_ssize_t lastchar = strlen(path) - 1; in get_mtime_of_source() local
1183 char savechar = path[lastchar]; in get_mtime_of_source()
1184 path[lastchar] = '\0'; /* strip 'c' or 'o' from *.py[co] */ in get_mtime_of_source()
1195 path[lastchar] = savechar; in get_mtime_of_source()
/external/toybox/toys/pending/
Dfdisk.c455 char boot, lastchar = '\0', *dev = disk_device; in list_partitions() local
464 if (isdigit(dev[len - 1])) lastchar = 'p'; in list_partitions()
485 if (lastchar) xprintf("%s%c%d",dev, lastchar, i+1); in list_partitions()
/external/mesa3d/src/mesa/drivers/x11/
Dxfonts.c256 lastchar = (fs->max_byte1 << 8) + fs->max_char_or_byte2; in Fake_glXUseXFont()
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
Dglx_usefont.c257 lastchar = (fs->max_byte1 << 8) + fs->max_char_or_byte2; in glXUseXFont()
/external/mesa3d/src/glx/
Dxfont.c269 lastchar = (fs->max_byte1 << 8) + fs->max_char_or_byte2; in DRI_glXUseXFont()
/external/pcre/dist2/src/
Dpcre2_compile.c6489 PCRE2_UCHAR *lastchar = code - 1; in compile_branch() local
6490 BACKCHAR(lastchar); in compile_branch()
6491 mclength = (uint32_t)(code - lastchar); /* Length of UTF character */ in compile_branch()
6492 memcpy(mcbuffer, lastchar, CU2BYTES(mclength)); /* Save the char */ in compile_branch()
Dpcre2_jit_compile.c5312 struct sljit_jump *lastchar; in fast_forward_newline() local
5327 lastchar = CMP(SLJIT_GREATER_EQUAL, STR_PTR, 0, STR_END, 0); in fast_forward_newline()
5351 JUMPHERE(lastchar); in fast_forward_newline()
5367 lastchar = CMP(SLJIT_GREATER_EQUAL, STR_PTR, 0, STR_END, 0); in fast_forward_newline()
5388 JUMPHERE(lastchar); in fast_forward_newline()
/external/openssh/
Dsftp.c1994 len = lf->lastchar - lf->buffer; in complete()