Home
last modified time | relevance | path

Searched refs:start (Results 301 - 325 of 7116) sorted by relevance

1...<<11121314151617181920>>...285

/third_party/node/deps/v8/src/diagnostics/
H A Dunwinder.cc25 const i::byte* CalculateEnd(const void* start, size_t length_in_bytes) { in CalculateEnd() argument
28 const i::byte* start_as_byte = reinterpret_cast<const i::byte*>(start); in CalculateEnd()
33 return pc >= code_range.start && in PCIsInCodeRange()
34 pc < CalculateEnd(code_range.start, code_range.length_in_bytes); in PCIsInCodeRange()
43 return a.start < b.start; in PCIsInCodePages()
50 return a.start < b.start; in PCIsInCodePages()
52 DCHECK_IMPLIES(it != code_pages + code_pages_length, pc < it->start); in PCIsInCodePages()
55 return it->start < in PCIsInCodePages()
[all...]
/third_party/python/Doc/includes/
H A Dtzinfo_examples.py71 # DST start and end times. For a complete and up-to-date set of DST rules
81 # From 1987 to 2006, DST used to start at 2am (standard time) on the first
86 # From 1967 to 1986, DST used to start at 2am (standard time) on the last
94 # Find start and end times for US DST. For years before 1967, return
95 # start = end for no DST.
105 start = first_sunday_on_or_after(dststart.replace(year=year))
107 return start, end
138 start, end = us_dst_range(dt.year)
142 if start + HOUR <= dt < end - HOUR:
148 if start <
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUBiDiProps.java98 int c, start, limit; in addPropertyStarts()
102 /* add the start code point of each same-value range of the trie */ in addPropertyStarts()
117 start=indexes[IX_JG_START]; in addPropertyStarts()
121 length=limit-start; in addPropertyStarts()
126 set.add(start); in addPropertyStarts()
129 ++start; in addPropertyStarts()
132 /* add the limit code point if the last value was not 0 (it is now start==limit) */ in addPropertyStarts()
137 start=indexes[IX_JG_START2]; in addPropertyStarts()
225 int start, limit; in getJoiningGroup()
227 start in getJoiningGroup()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUScriptRun.java41 * int start = scriptRun.getScriptStart();
46 * start + " to " + limit + ".");
92 * @param start the index of the first character over which to iterate
99 public UScriptRun(String text, int start, int count) in UScriptRun() argument
101 reset(text, start, count); in UScriptRun()
124 * @param start the index of the first character over which to iterate
131 public UScriptRun(char[] chars, int start, int count) in UScriptRun() argument
133 reset(chars, start, count); in UScriptRun()
138 * Reset the iterator to the start of the text.
168 * @param start th
176 reset(int start, int count) reset() argument
208 reset(char[] chars, int start, int count) reset() argument
253 reset(String str, int start, int count) reset() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUBiDiProps.java102 int c, start, limit; in addPropertyStarts()
106 /* add the start code point of each same-value range of the trie */ in addPropertyStarts()
121 start=indexes[IX_JG_START]; in addPropertyStarts()
125 length=limit-start; in addPropertyStarts()
130 set.add(start); in addPropertyStarts()
133 ++start; in addPropertyStarts()
136 /* add the limit code point if the last value was not 0 (it is now start==limit) */ in addPropertyStarts()
141 start=indexes[IX_JG_START2]; in addPropertyStarts()
229 int start, limit; in getJoiningGroup()
231 start in getJoiningGroup()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/lang/
H A DUScriptRun.java42 * int start = scriptRun.getScriptStart();
47 * start + " to " + limit + ".");
94 * @param start the index of the first character over which to iterate
101 public UScriptRun(String text, int start, int count) in UScriptRun() argument
103 reset(text, start, count); in UScriptRun()
126 * @param start the index of the first character over which to iterate
133 public UScriptRun(char[] chars, int start, int count) in UScriptRun() argument
135 reset(chars, start, count); in UScriptRun()
140 * Reset the iterator to the start of the text.
170 * @param start th
178 reset(int start, int count) reset() argument
210 reset(char[] chars, int start, int count) reset() argument
255 reset(String str, int start, int count) reset() argument
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dunesctrn.cpp176 int32_t start = pos.start; in handleTransliterate() local
180 while (start < limit) { in handleTransliterate()
193 // s is a copy of start that is advanced over the in handleTransliterate()
195 int32_t s = start; in handleTransliterate()
225 if (s > start && isIncremental) { in handleTransliterate()
248 if (s > start && isIncremental) { in handleTransliterate()
264 text.handleReplaceBetween(start, s, str); in handleTransliterate()
265 limit -= s - start - str.length(); in handleTransliterate()
278 if (start < limi in handleTransliterate()
[all...]
/third_party/node/deps/base64/base64/test/
H A Dbenchmark.c128 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument
130 uint64_t diff = *end - *start; in timediff_sec()
151 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument
154 return (end->QuadPart - start->QuadPart) / 1e7f; in timediff_sec()
166 timediff_sec (base64_timespec *start, base64_timespec *end) in timediff_sec() argument
168 return (end->tv_sec - start->tv_sec) + (end->tv_nsec - start->tv_nsec) / 1e9f; in timediff_sec()
176 base64_timespec start, end; in codec_bench_enc() local
185 base64_gettime(&start); in codec_bench_enc()
191 timediff = timediff_sec(&start, in codec_bench_enc()
205 base64_timespec start, end; codec_bench_dec() local
[all...]
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Duparse.cpp81 char *start, *limit; in u_parseDelimitedFile() local
110 * start parsing after that, or else from the beginning of the line in u_parseDelimitedFile()
113 start=(char *)getMissingLimit(line); in u_parseDelimitedFile()
114 if(start==line) { in u_parseDelimitedFile()
121 if(*start==0 || *start=='#') { in u_parseDelimitedFile()
126 limit=uprv_strchr(start, '#'); in u_parseDelimitedFile()
129 while(limit>start && U_IS_INV_WHITESPACE(*(limit-1))) { in u_parseDelimitedFile()
138 if(u_skipWhitespace(start)[0]==0) { in u_parseDelimitedFile()
145 limit=start; in u_parseDelimitedFile()
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dunesctrn.cpp176 int32_t start = pos.start; in handleTransliterate() local
180 while (start < limit) { in handleTransliterate()
193 // s is a copy of start that is advanced over the in handleTransliterate()
195 int32_t s = start; in handleTransliterate()
225 if (s > start && isIncremental) { in handleTransliterate()
248 if (s > start && isIncremental) { in handleTransliterate()
264 text.handleReplaceBetween(start, s, str); in handleTransliterate()
265 limit -= s - start - str.length(); in handleTransliterate()
278 if (start < limi in handleTransliterate()
[all...]
/third_party/icu/icu4c/source/tools/toolutil/
H A Duparse.cpp81 char *start, *limit; in u_parseDelimitedFile() local
110 * start parsing after that, or else from the beginning of the line in u_parseDelimitedFile()
113 start=(char *)getMissingLimit(line); in u_parseDelimitedFile()
114 if(start==line) { in u_parseDelimitedFile()
121 if(*start==0 || *start=='#') { in u_parseDelimitedFile()
126 limit=uprv_strchr(start, '#'); in u_parseDelimitedFile()
129 while(limit>start && U_IS_INV_WHITESPACE(*(limit-1))) { in u_parseDelimitedFile()
138 if(u_skipWhitespace(start)[0]==0) { in u_parseDelimitedFile()
145 limit=start; in u_parseDelimitedFile()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dunesctrn.cpp176 int32_t start = pos.start; in handleTransliterate() local
180 while (start < limit) { in handleTransliterate()
193 // s is a copy of start that is advanced over the in handleTransliterate()
195 int32_t s = start; in handleTransliterate()
225 if (s > start && isIncremental) { in handleTransliterate()
248 if (s > start && isIncremental) { in handleTransliterate()
264 text.handleReplaceBetween(start, s, str); in handleTransliterate()
265 limit -= s - start - str.length(); in handleTransliterate()
278 if (start < limi in handleTransliterate()
[all...]
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Duparse.cpp81 char *start, *limit; in u_parseDelimitedFile() local
110 * start parsing after that, or else from the beginning of the line in u_parseDelimitedFile()
113 start=(char *)getMissingLimit(line); in u_parseDelimitedFile()
114 if(start==line) { in u_parseDelimitedFile()
121 if(*start==0 || *start=='#') { in u_parseDelimitedFile()
126 limit=uprv_strchr(start, '#'); in u_parseDelimitedFile()
129 while(limit>start && U_IS_INV_WHITESPACE(*(limit-1))) { in u_parseDelimitedFile()
138 if(u_skipWhitespace(start)[0]==0) { in u_parseDelimitedFile()
145 limit=start; in u_parseDelimitedFile()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUTF16.java21 * Substringing is safe if the start and end are both on UTF-32 boundaries. In normal code, the
22 * values for start and end are on those boundaries, since they arose from operations like
213 * @param offset16 UTF-16 offset to the start of the character.
267 * @param offset16 UTF-16 offset to the start of the character.
323 * @param offset16 UTF-16 offset to the start of the character.
373 * @param start Offset to substring in the source array for analyzing
375 * @param offset16 UTF-16 offset relative to start
378 * @exception IndexOutOfBoundsException Thrown if offset16 is not within the range of start and limit.
381 public static int charAt(char source[], int start, int limit, int offset16) { in charAt() argument
382 offset16 += start; in charAt()
576 bounds(char source[], int start, int limit, int offset16) bounds() argument
750 valueOf(char source[], int start, int limit, int offset16) valueOf() argument
836 findOffsetFromCodePoint(char source[], int start, int limit, int offset32) findOffsetFromCodePoint() argument
981 findCodePointOffset(char source[], int start, int limit, int offset16) findCodePointOffset() argument
1119 countCodePoint(char source[], int start, int limit) countCodePoint() argument
1345 moveCodePointOffset(char source[], int start, int limit, int offset16, int shift32) moveCodePointOffset() argument
2160 hasMoreCodePointsThan(char source[], int start, int limit, int number) hasMoreCodePointsThan() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DUTF16.java22 * Substringing is safe if the start and end are both on UTF-32 boundaries. In normal code, the
23 * values for start and end are on those boundaries, since they arose from operations like
194 * @param offset16 UTF-16 offset to the start of the character.
247 * @param offset16 UTF-16 offset to the start of the character.
302 * @param offset16 UTF-16 offset to the start of the character.
351 * @param start Offset to substring in the source array for analyzing
353 * @param offset16 UTF-16 offset relative to start
356 * @exception IndexOutOfBoundsException Thrown if offset16 is not within the range of start and limit.
358 public static int charAt(char source[], int start, int limit, int offset16) { in charAt() argument
359 offset16 += start; in charAt()
548 bounds(char source[], int start, int limit, int offset16) bounds() argument
710 valueOf(char source[], int start, int limit, int offset16) valueOf() argument
793 findOffsetFromCodePoint(char source[], int start, int limit, int offset32) findOffsetFromCodePoint() argument
935 findCodePointOffset(char source[], int start, int limit, int offset16) findCodePointOffset() argument
1067 countCodePoint(char source[], int start, int limit) countCodePoint() argument
1288 moveCodePointOffset(char source[], int start, int limit, int offset16, int shift32) moveCodePointOffset() argument
2086 hasMoreCodePointsThan(char source[], int start, int limit, int number) hasMoreCodePointsThan() argument
[all...]
/third_party/icu/icu4c/source/common/
H A Dcwchar.cpp26 wchar_t *start=dst; in uprv_wcscat() local
34 return start; in uprv_wcscat()
38 wchar_t *start=dst; in uprv_wcscpy() local
43 return start; in uprv_wcscpy()
47 const wchar_t *start=src; in uprv_wcslen() local
51 return src-start; in uprv_wcslen()
/third_party/node/deps/icu-small/source/common/
H A Dcwchar.cpp26 wchar_t *start=dst; in uprv_wcscat() local
34 return start; in uprv_wcscat()
38 wchar_t *start=dst; in uprv_wcscpy() local
43 return start; in uprv_wcscpy()
47 const wchar_t *start=src; in uprv_wcslen() local
51 return src-start; in uprv_wcslen()
/third_party/skia/third_party/externals/icu/source/common/
H A Dcwchar.cpp26 wchar_t *start=dst; in uprv_wcscat() local
34 return start; in uprv_wcscat()
38 wchar_t *start=dst; in uprv_wcscpy() local
43 return start; in uprv_wcscpy()
47 const wchar_t *start=src; in uprv_wcslen() local
51 return src-start; in uprv_wcslen()
/third_party/node/deps/npm/node_modules/graceful-fs/
H A Dlegacy-streams.js38 if (this.start !== undefined) {
39 if ('number' !== typeof this.start) {
40 throw TypeError('start must be a Number');
48 if (this.start > this.end) {
49 throw new Error('start must be <= end');
52 this.pos = this.start;
98 if (this.start !== undefined) {
99 if ('number' !== typeof this.start) {
100 throw TypeError('start must be a Number');
102 if (this.start <
[all...]
/third_party/elfutils/libdwfl/
H A Dsegment.c37 __libdwfl_segment_start (Dwfl *dwfl, GElf_Addr start) in __libdwfl_segment_start() argument
40 start &= -dwfl->segment_align; in __libdwfl_segment_start()
41 return start; in __libdwfl_segment_start()
54 insert (Dwfl *dwfl, size_t i, GElf_Addr start, GElf_Addr end, int segndx) in insert() argument
56 bool need_start = (i == 0 || dwfl->lookup_addr[i - 1] != start); in insert()
108 dwfl->lookup_addr[i] = start; in insert()
166 const GElf_Addr start = __libdwfl_segment_start (dwfl, mod->low_addr); in reify_segments() local
170 int idx = lookup (dwfl, start, hint); in reify_segments()
174 if (unlikely (insert (dwfl, 0, start, end, -1))) in reify_segments()
179 else if (dwfl->lookup_addr[idx] > start) in reify_segments()
310 GElf_Addr start = __libdwfl_segment_start (dwfl, bias + phdr->p_vaddr); INTDEF() local
[all...]
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DAnyTransliterator.java55 run.start = run.limit; // show we processed in handleTransliterate()
97 if (run.start == run.limit) offsets.start = offsets.limit; in handleTransliterate()
98 else offsets.start = run.start; in handleTransliterate()
108 + ", s: " + offsets.start in toString()
132 * The only time that contextStart != start is for the first run
133 * (the context is the start context of the entire expanse)
157 current.start = current.limit = current.contextLimit = expanse.start; in reset()
[all...]
/third_party/node/deps/v8/src/profiler/
H A Dallocation-tracker.cc104 void AddressToTraceMap::AddRange(Address start, int size, in AddRange() argument
106 Address end = start + size; in AddRange()
107 RemoveRange(start, end); in AddRange()
109 RangeStack new_range(start, trace_node_id); in AddRange()
117 if (it->second.start <= addr) { in GetTraceNodeId()
140 PrintF("[%p - %p] => %u\n", reinterpret_cast<void*>(it->second.start), in Print()
147 void AddressToTraceMap::RemoveRange(Address start, Address end) { in RemoveRange() argument
148 RangeMap::iterator it = ranges_.upper_bound(start); in RemoveRange()
154 if (it->second.start < start) { in RemoveRange()
276 UnresolvedLocation(Script script, int start, FunctionInfo* info) UnresolvedLocation() argument
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dtime_test.cc82 DateTime start, end; in TEST() local
83 start.year = 1; in TEST()
84 start.month = 1; in TEST()
85 start.day = 1; in TEST()
86 start.hour = 0; in TEST()
87 start.minute = 0; in TEST()
88 start.second = 0; in TEST()
96 ASSERT_TRUE(DateTimeToSeconds(start, &start_time)); in TEST()
206 DateTime start, end; in TEST() local
207 start in TEST()
[all...]
/third_party/python/Lib/test/
H A Dtest_slice.py42 # Find lower and upper bounds for start and stop.
46 # Compute start.
47 if slice.start is None:
48 start = upper if step < 0 else lower
50 start = evaluate_slice_index(slice.start)
51 start = max(start + length, lower) if start < 0 else min(start, uppe
[all...]
/third_party/icu/icu4c/source/common/unicode/
H A Duniset.h386 * start</code> then an empty set is created.
388 * @param start first character, inclusive, of range
392 UnicodeSet(UChar32 start, UChar32 end);
450 * @param pos on input, the position in pattern at which to start parsing.
607 * Make this object represent the range `start - end`.
608 * If `start > end` then this object is set to an empty range.
611 * @param start first character in the set, inclusive
615 UnicodeSet& set(UChar32 start, UChar32 end);
619 * to be the start of a UnicodeSet pattern.
815 * @param start firs
1724 containsSome(UChar32 start, UChar32 end) const containsSome() argument
1756 span(const UnicodeString &s, int32_t start, USetSpanCondition spanCondition) const span() argument
[all...]

Completed in 15 milliseconds

1...<<11121314151617181920>>...285