Home
last modified time | relevance | path

Searched refs:start (Results 1976 - 2000 of 8001) sorted by relevance

1...<<71727374757677787980>>...321

/third_party/skia/third_party/externals/icu/source/i18n/
H A Dformattedvalue.cpp59 int32_t start, in setState()
63 fStart = start; in setState()
178 int32_t start, in ucfpos_setState()
185 impl->fImpl.setState(category, field, start, limit); in ucfpos_setState()
56 setState( int32_t category, int32_t field, int32_t start, int32_t limit) setState() argument
174 ucfpos_setState( UConstrainedFieldPosition* ptr, int32_t category, int32_t field, int32_t start, int32_t limit, UErrorCode* ec) ucfpos_setState() argument
H A Dstrmatch.cpp28 int32_t start, in StringMatcher()
37 theString.extractBetween(start, limit, pattern); in StringMatcher()
117 // forward start, limit, and only if a prior match does not in matches()
221 int32_t start, in replace()
238 text.handleReplaceBetween(start, limit, UnicodeString()); // delete original text in replace()
27 StringMatcher(const UnicodeString& theString, int32_t start, int32_t limit, int32_t segmentNum, const TransliterationRuleData& theData) StringMatcher() argument
220 replace(Replaceable& text, int32_t start, int32_t limit, int32_t& ) replace() argument
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-cff2-interp-cs.hh240 unsigned int start = env.argStack.get_count () - ((k+1) * n); in process_blend() local
242 if (unlikely (start > env.argStack.get_count ())) in process_blend()
249 const hb_array_t<const blend_arg_t> blends = env.argStack.get_subarray (start + n + (i * k)); in process_blend()
250 env.argStack[start + i].set_blends (n, i, k, blends); in process_blend()
H A Dhb-ot-map.hh149 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0; in get_stage_lookups() local
151 *plookups = end == start ? nullptr : &lookups[table_index][start]; in get_stage_lookups()
152 *lookup_count = end - start; in get_stage_lookups()
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/lexer/
H A Dlexer.go74 start := l.loc
78 return fmt.Errorf("%v unterminated string", start)
154 start := l.loc
159 src := tok.Source{S: start, E: end}
/third_party/typescript/tests/baselines/reference/
H A DstringLiteralTypeIsSubtypeOfString.js54 slice(start?: number, end?: number): string { return null; }
56 substring(start: number, end?: number): string { return null; }
134 C.prototype.slice = function (start, end) { return null; };
136 C.prototype.substring = function (start, end) { return null; };
/third_party/toybox/lib/
H A Dlinestack.c22 // New size rounded up to next multiple of 64, allocate and copy start. in linestack_addstack()
95 char *start, *end; in crunch_str() local
98 for (end = start = *str; *end; columns += col, end += bytes) { in crunch_str()
152 // Write width chars at start of string to strdout with standard escapes
154 int draw_str(char *start, int width) in draw_str() argument
156 return crunch_str(&start, width, stdout, 0, crunch_rev_escape); in draw_str()
/third_party/python/Objects/clinic/
H A Dlistobject.c.h3 [clinic start generated code]*/
219 "index($self, value, start=0, stop=sys.maxsize, /)\n"
230 list_index_impl(PyListObject *self, PyObject *value, Py_ssize_t start,
238 Py_ssize_t start = 0; in list_index() local
248 if (!_PyEval_SliceIndexNotNone(args[1], &start)) { in list_index()
258 return_value = list_index_impl(self, value, start, stop); in list_index()
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H A DTimeUtil.java291 public static Timestamp add(Timestamp start, Duration length) { in add() argument
292 return Timestamps.add(start, length); in add()
301 public static Timestamp subtract(Timestamp start, Duration length) { in subtract() argument
302 return Timestamps.subtract(start, length); in subtract()
/third_party/python/Lib/test/
H A Dtest_threadsignals.py197 self.start = None
209 self.start = time.monotonic()
226 self.assertLess(self.end - self.start, 2.0)
227 self.assertGreater(self.end - self.start, 0.3)
H A Dtest_threading_local.py40 t.start()
104 t.start()
152 t1.start()
155 t2.start()
/third_party/skia/experimental/sktext/include/
H A DTypes.h78 Range(T start, T end) : fStart(start) , fEnd(end) { } in Range() argument
101 // For RTL ranges start >= end
144 DirTextRange(TextIndex start, TextIndex end, bool leftToRight) in DirTextRange()
145 : TextRange(start, end) in DirTextRange()
/third_party/skia/experimental/sktext/src/
H A DPaint.cpp91 TextIndex start = 0; in findDecoratedBlock() local
93 if (start + block.charCount <= textRange.fStart) { in findDecoratedBlock()
94 start += block.charCount; in findDecoratedBlock()
96 } else if (start >= textRange.fEnd) { in findDecoratedBlock()
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/
H A Drich_editor_change_callback_test_ng.cpp283 delOptions.start = 0; in HWTEST_F()
573 delOptions.start = 0; in HWTEST_F()
613 EXPECT_EQ(onWillRangeBefore.start, 0); in HWTEST_F()
625 EXPECT_EQ(onDidRangeAfter.start, 0); in HWTEST_F()
652 EXPECT_EQ(onWillRangeBefore.start, 1); in HWTEST_F()
671 EXPECT_EQ(onDidRangeAfter.start, 1); in HWTEST_F()
702 EXPECT_EQ(onWillRangeBefore.start, 1); in HWTEST_F()
721 EXPECT_EQ(onDidRangeAfter.start, 1); in HWTEST_F()
746 EXPECT_EQ(onWillRangeBefore.start, 0); in HWTEST_F()
767 EXPECT_EQ(onDidRangeAfter.start, in HWTEST_F()
[all...]
/third_party/toybox/toys/pending/
H A Dvi.c236 //find start and end slices in cut_str()
295 static struct slice_list *slice_offset(size_t *start, size_t offset) in slice_offset() argument
300 //find start in slice_offset()
309 if (s) *start = spos; in slice_offset()
319 //find start in text_strchr()
340 //find start in text_strrchr()
369 static int text_count(size_t start, size_t end, char c) in text_count() argument
373 if (!(s = slice_offset(&spos, start))) return 0; in text_count()
374 i = start-spos; in text_count()
393 //find start in text_byte()
646 size_t start = from, end = TT.cursor; vi_yank() local
671 size_t start = from, end = TT.cursor; vi_delete() local
1014 char *start = TT.yank.data; vi_push() local
1316 char *start, *end; crunch_nstr() local
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUCharacterTest.java539 int start, end, c2, c3; in TestMirror()
540 while(iter.nextRange() && (start=iter.codepoint)>=0) { in TestMirror()
543 c2=UCharacter.getMirror(start); in TestMirror()
545 if(c3!=start) { in TestMirror()
546 errln("getMirror() does not roundtrip: U+"+hex(start)+"->U+"+hex(c2)+"->U+"+hex(c3)); in TestMirror()
548 c3=UCharacter.getBidiPairedBracket(start); in TestMirror()
549 if(UCharacter.getIntPropertyValue(start, UProperty.BIDI_PAIRED_BRACKET_TYPE)==UCharacter.BidiPairedBracketType.NONE) { in TestMirror()
550 if(c3!=start) { in TestMirror()
551 errln("u_getBidiPairedBracket(U+"+hex(start)+") != self for bpt(c)==None"); in TestMirror()
555 errln("u_getBidiPairedBracket(U+"+hex(start) in TestMirror()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterTest.java536 int start, end, c2, c3; in TestMirror()
537 while(iter.nextRange() && (start=iter.codepoint)>=0) { in TestMirror()
540 c2=UCharacter.getMirror(start); in TestMirror()
542 if(c3!=start) { in TestMirror()
543 errln("getMirror() does not roundtrip: U+"+hex(start)+"->U+"+hex(c2)+"->U+"+hex(c3)); in TestMirror()
545 c3=UCharacter.getBidiPairedBracket(start); in TestMirror()
546 if(UCharacter.getIntPropertyValue(start, UProperty.BIDI_PAIRED_BRACKET_TYPE)==UCharacter.BidiPairedBracketType.NONE) { in TestMirror()
547 if(c3!=start) { in TestMirror()
548 errln("u_getBidiPairedBracket(U+"+hex(start)+") != self for bpt(c)==None"); in TestMirror()
552 errln("u_getBidiPairedBracket(U+"+hex(start) in TestMirror()
[all...]
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/download/network_client/
H A Dhttp_curl_client.cpp141 std::size_t start = 0; in IsExcluded() local
144 if (end - start > 0 && IsMatch(str, Trim(exclusions.substr(start, end - start)))) { in IsExcluded()
147 start = end + 1; in IsExcluded()
148 end = exclusions.find(split, start); in IsExcluded()
150 return IsMatch(str, Trim(exclusions.substr(start))); in IsExcluded()
375 // Should call Open before start HttpDownload thread.
/third_party/ffmpeg/libavcodec/
H A Dcbs_mpeg2.c147 const uint8_t *start; in cbs_mpeg2_split_fragment() local
151 start = avpriv_find_start_code(frag->data, frag->data + frag->data_size, in cbs_mpeg2_split_fragment()
154 // No start code found. in cbs_mpeg2_split_fragment()
164 // really reads a new start code and does not reuse the old in cbs_mpeg2_split_fragment()
165 // start code in any way (as e.g. happens when there is a in cbs_mpeg2_split_fragment()
168 end = avpriv_find_start_code(start--, frag->data + frag->data_size, in cbs_mpeg2_split_fragment()
171 // start points to the byte containing the start_code_identifier in cbs_mpeg2_split_fragment()
173 // following the byte containing the start code identifier (or to in cbs_mpeg2_split_fragment()
176 // Unit runs from start to the beginning of the start cod in cbs_mpeg2_split_fragment()
[all...]
/third_party/ffmpeg/libavfilter/
H A Df_loop.c51 int64_t start; member
138 if (s->ignored_samples + frame->nb_samples > s->start && s->size > 0 && s->loop != 0) { in afilter_frame()
147 drain = FFMAX(0, s->start - s->ignored_samples); in afilter_frame()
150 s->pts += av_rescale_q(s->start - s->ignored_samples, (AVRational){1, outlink->sample_rate}, outlink->time_base); in afilter_frame()
262 { "start", "set the loop start sample", OFFSET(start), AV_OPT_TYPE_INT64, {.i64 = 0 }, 0, INT64_MAX, AFLAGS },
361 if (inlink->frame_count_out >= s->start && s->size > 0 && s->loop != 0) { in filter_frame()
434 { "start", "set the loop start fram
[all...]
H A Dvf_noise.c192 int width, int start, int end, NoiseContext *n, int comp) in noise()
201 av_image_copy_plane(dst, dst_linesize, src, src_linesize, width, end - start); in noise()
205 for (y = start; y < end; y++) { in noise()
232 const int start = (height * jobnr ) / nb_jobs; in filter_slice() local
234 noise(td->out->data[plane] + start * td->out->linesize[plane], in filter_slice()
235 td->in->data[plane] + start * td->in->linesize[plane], in filter_slice()
237 s->bytewidth[plane], start, end, s, plane); in filter_slice()
190 noise(uint8_t *dst, const uint8_t *src, int dst_linesize, int src_linesize, int width, int start, int end, NoiseContext *n, int comp) noise() argument
H A Dvf_transpose.c283 int start = (outh * jobnr ) / nb_jobs; in filter_slice() local
291 dst = out->data[plane] + start * dstlinesize; in filter_slice()
301 dst = out->data[plane] + dstlinesize * (outh - start - 1); in filter_slice()
305 for (y = start; y < end - 7; y += 8) { in filter_slice()
309 dst + (y - start) * dstlinesize + x * pixstep, in filter_slice()
315 dst + (y - start) * dstlinesize + x * pixstep, in filter_slice()
322 dst + (y - start) * dstlinesize + 0 * pixstep, in filter_slice()
/third_party/ffmpeg/libavformat/
H A Dbrstm.c106 uint32_t size, asize, start = 0; in read_header() local
150 && !(start && info_offset) in read_header()
164 start = read32(s) + 8; in read_header()
174 if (!info_offset || !start) in read_header()
241 start = read32(s); in read_header()
342 if ((start < avio_tell(s->pb)) || in read_header()
346 avio_skip(s->pb, start - avio_tell(s->pb)); in read_header()
H A Ddhav.c172 int64_t start, end, ret; in read_chunk() local
182 start = avio_tell(s->pb) - 4; in read_chunk()
183 dhav->last_good_pos = start; in read_chunk()
209 return frame_length - 8 - (end - start); in read_chunk()
235 int64_t start = 0, end = 0; in get_duration() local
261 start = av_timegm(&timeinfo) * 1000LL; in get_duration()
265 return end - start; in get_duration()
/third_party/backends/backend/
H A Dpieusb_usb.c167 long start = 0; in _hexdump() local
181 fprintf (stderr, "%s\t%08lx:", msg?msg:"", start); in _hexdump()
186 start++; in _hexdump()
241 time_t start; in sanei_pieusb_command() local
249 start = time(NULL); in sanei_pieusb_command()
250 while ((time(NULL)-start) < MAXTIME) { in sanei_pieusb_command()
326 if ((time(NULL)-start) > MAXTIME) { in sanei_pieusb_command()

Completed in 19 milliseconds

1...<<71727374757677787980>>...321