HomeSort by relevance Sort by last modified time
    Searched defs:end (Results 1 - 25 of 4210) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
indic.bat 20 goto end
23 if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto end
25 :end label
  /external/iw/
offch.c 16 char *end; local
20 strtoul(argv[0], &end, 10));
21 if (*end != '\0')
28 strtoul(argv[0], &end, 10));
29 if (*end != '\0')
roc.c 20 char *end; local
26 freq = strtol(argv[0], &end, 0);
27 if (!end || *end)
30 time = strtol(argv[1], &end, 0);
31 if (!end || *end)
  /external/libcxx/test/std/re/re.alg/re.alg.search/
backup.pass.cpp 32 std::sregex_iterator it(s.begin(), s.end(), re);
33 std::sregex_iterator end = std::sregex_iterator(); local
43 assert(it == end);
49 std::list<char> l(s.begin(), s.end());
51 std::regex_iterator<std::list<char>::iterator> it(l.begin(), l.end(), re);
52 std::regex_iterator<std::list<char>::iterator> end = std::regex_iterator<std::list<char>::iterator>(); local
62 assert(it == end);
no_update_pos.pass.cpp 31 std::cregex_iterator end = std::cregex_iterator(); local
38 assert(it == end);
  /external/libutf/
utfecpy.c 22 char *end; local
26 end = (char*)memccpy(to, from, '\0', e - to);
27 if(end == nil){
28 end = e-1;
29 while(end>to && (*--end&0xC0)==0x80)
31 *end = '\0';
33 end--;
35 return end;
  /external/clang/test/Profile/
profile-summary.c 12 int end(int i) { function
20 end(1);
21 end(1);
  /external/compiler-rt/test/profile/Linux/
instrprof-basic.c 13 int end(int i) { function
22 end(1);
  /external/compiler-rt/test/profile/
instrprof-basic.c 27 int end(int i) { function
36 end(1);
  /external/dynamic_depth/internal/strings/
case.cc 8 string::iterator end = s->end(); local
9 for (string::iterator i = s->begin(); i != end; ++i) {
  /external/elfutils/lib/
crc32.c 96 unsigned char *end; local
99 for (end = buf + len; buf < end; ++buf)
  /external/elfutils/libdw/
dwarf_haspc.c 45 Dwarf_Addr end; local
48 &begin, &end)) > 0)
49 if (pc >= begin && pc < end)
  /external/mesa3d/src/mesa/state_tracker/
st_glsl_to_tgsi_temprename.h 30 * begin == end == -1 indicates that the register can be reused without
32 * a write operation may target this temporary, and end indicates the
34 * Hence, a register R2 can be merged with a register R1 if R1.end <= R2.begin.
38 int end; member in struct:lifetime
  /external/python/futures/docs/
make.bat 26 goto end
32 goto end
39 goto end
46 goto end
53 goto end
60 goto end
68 goto end
79 goto end
86 goto end
93 goto end
112 :end label
    [all...]
  /external/strace/
string_to_uint.c 43 char *end; local
50 val = strtoll(str, &end, 10);
52 if (str == end || val < 0 || (unsigned long long) val > max_val
56 if (*end && (!accepted_ending || !strchr(accepted_ending, *end)))
60 *endptr = end;
  /external/u-boot/arch/powerpc/lib/
cache.c 14 ulong addr, start, end; local
17 end = start_addr + size - 1;
19 for (addr = start; (addr <= end) && (addr >= start);
27 for (addr = start; (addr <= end) && (addr >= start);
  /external/u-boot/lib/
linux_string.c 38 char *end; local
45 end = s + size - 1;
46 while (end >= s && isspace(*end))
47 end--;
48 *(end + 1) = '\0';
  /bootable/recovery/edify/
yydefs.h 22 int start, end; member in struct:__anon1579
29 (Current).end = YYRHSLOC(Rhs, N).end; \
32 (Current).end = YYRHSLOC(Rhs, 0).end; \
  /external/e2fsprogs/contrib/android/
block_range.h 9 blk64_t end; member in struct:block_range
  /external/libtextclassifier/utils/
codepoint-range.h 27 // Represents a codepoint range [start, end).
30 int32 end; member in struct:libtextclassifier3::CodepointRangeStruct
33 : start(arg_start), end(arg_end) {}
  /external/mesa3d/src/gallium/docs/
make.bat 27 goto end
33 goto end
40 goto end
47 goto end
54 goto end
61 goto end
69 goto end
80 goto end
87 goto end
94 goto end
113 :end label
    [all...]
  /external/pdfium/fpdfsdk/
cpdfsdk_annotiteration.h 25 const_iterator end() const { return m_List.end(); } function in class:CPDFSDK_AnnotIteration
  /external/python/rsa/doc/
make.bat 34 goto end
40 goto end
48 goto end
56 goto end
64 goto end
72 goto end
80 goto end
89 goto end
101 goto end
109 goto end
170 :end label
    [all...]
  /external/skia/src/utils/
SkOSPath.cpp 36 const char* end = strrchr(fullPath, SEPARATOR); local
37 if (nullptr == end) {
40 if (end == fullPath) {
42 ++end;
44 return SkString(fullPath, end - fullPath);
  /external/skia/tools/timer/
Timer.h 19 void end() { fWall = (SkTime::GetNSecs() - fWall) * 1e-6; } function in class:WallTimer

Completed in 956 milliseconds

1 2 3 4 5 6 7 8 91011>>