Home
last modified time | relevance | path

Searched refs:start (Results 1926 - 1950 of 8001) sorted by relevance

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

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_relative_container.cpp155 CalcDimension start; in ParseGuideline() local
159 JSRef<JSVal> startVal = val->GetProperty("start"); in ParseGuideline()
162 if (JSViewAbstract::ParseJsDimensionVpNG(startVal, start)) { in ParseGuideline()
163 guidelineInfoItem.start = start; in ParseGuideline()
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/
H A Drich_editor_preview_text_test_ng.cpp85 previewRange.start = -1; in HWTEST_F()
137 previewRange.start = -1; in HWTEST_F()
178 previewRange.start = -1; in HWTEST_F()
209 previewRange.start = -1; in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/
H A Dselection_info.h186 void SetSelectionStart(int32_t start) in SetSelectionStart() argument
188 selection_.selection[RichEditorSpanRange::RANGESTART] = start; in SetSelectionStart()
211 SelectionRangeInfo(int32_t start, int32_t end) : BaseEventInfo("SelectionRangeInfo"), start_(start), end_(end) {}; in SelectionRangeInfo() argument
/foundation/graphic/graphic_3d/lume/metaobject/src/animation/
H A Dtrack_animation_state.cpp225 auto start = last ? index - 1 : index; in JumpTo() local
226 auto end = start + 1; // < size - 1 ? start + 1 : start; in JumpTo()
229 keyframeArray_->GetAnyAt(start, *trackStart_); in JumpTo()
230 currentRangeStartTs_ = timestamps->GetValueAt(start); in JumpTo()
/foundation/multimedia/player_framework/services/services/engine_intf/
H A Di_player_engine.h68 virtual int32_t SetPlayRange(int64_t start, int64_t end) in SetPlayRange() argument
70 (void)start; in SetPlayRange()
74 virtual int32_t SetPlayRangeWithMode(int64_t start, int64_t end, PlayerSeekMode mode) in SetPlayRangeWithMode() argument
76 (void)start; in SetPlayRangeWithMode()
/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/
H A Dhttp_proxy.cpp196 size_t start = item.find_first_not_of(" \t"); in ParseProxyExclusionList() local
198 if (start != std::string::npos && end != std::string::npos) { in ParseProxyExclusionList()
199 item = item.substr(start, end - start + 1); in ParseProxyExclusionList()
/foundation/communication/netmanager_base/frameworks/native/netpolicyclient/src/
H A Dnet_quota_policy.cpp200 int32_t start = CommonUtils::StrToInt(quotapolicy.periodDuration.substr(1, quotapolicy.periodDuration.size())); in GetPeriodStart() local
203 tm.tm_hour = start; in GetPeriodStart()
210 tm.tm_yday = start - 1; in GetPeriodStart()
215 tm.tm_mday = start; in GetPeriodStart()
/test/xts/acts/developtools/hiplugintest/
H A Dhipluginmoduleapitest.cpp73 struct timeval start, end; in MemoryPluginTest() local
95 HILOG_DEBUG(LOG_CORE, "start failed"); in MemoryPluginTest()
102 gettimeofday(&start, nullptr); in MemoryPluginTest()
113 timeuse = MS_S * (end.tv_sec - start.tv_sec) + end.tv_usec - start.tv_usec; in MemoryPluginTest()
/third_party/elfutils/tests/
H A Ddwflmodtest.c163 Dwarf_Addr start; in list_module() local
167 if (dwfl_module_info (mod, NULL, &start, &end, in list_module()
169 || start != base) in list_module()
172 name, start, end, file, debug); in list_module()
H A Daddrcfi.c121 Dwarf_Addr start = pc; in handle_cfi() local
124 int ra_regno = dwarf_frame_info (stuff->frame, &start, &end, &signalp); in handle_cfi()
127 start += stuff->bias; in handle_cfi()
132 which, pc, start, end); in handle_cfi()
/third_party/ffmpeg/libavformat/
H A Dmccdec.c112 int start = 12, count = 0; in mcc_read_header() local
182 start += 4; in mcc_read_header()
184 if (j < start + count + 1) in mcc_read_header()
189 sub = ff_subtitles_queue_insert(&mcc->q, out + start, count, 0); in mcc_read_header()
H A Dpsxstr.c134 int start; in str_read_header() local
141 start = RIFF_HEADER_SIZE; in str_read_header()
143 start = 0; in str_read_header()
145 avio_seek(pb, start, SEEK_SET); in str_read_header()
H A Dffmetadec.c102 int64_t start, end; in read_chapter() local
110 ret = sscanf(line, "START=%"SCNd64, &start); in read_chapter()
112 av_log(s, AV_LOG_ERROR, "Expected chapter start timestamp, found %s.\n", line); in read_chapter()
113 start = (s->nb_chapters && s->chapters[s->nb_chapters - 1]->end != AV_NOPTS_VALUE) ? in read_chapter()
124 return avpriv_new_chapter(s, s->nb_chapters, tb, start, end, NULL); in read_chapter()
/third_party/curl/scripts/
H A Dcd2nroff111 my $start = 0;
127 if(!$start) {
130 $start = 1;
198 if(!$start) {
279 # start of a code section, not indented
286 # start of a quote section; not code, not indented
/third_party/cups-filters/filter/foomatic-rip/
H A Dpdf.c88 rip_die(EXIT_STARVED, "Could not start renderer\n"); in start_renderer()
223 size_t start, end; in render_pages() local
228 extract_command(&start, &end, cmd->data, "gs"); in render_pages()
229 if (start == end) in render_pages()
238 start, in render_pages()
/third_party/googletest/googletest/include/gtest/
H A Dgtest-param-test.h208 // Range(start, end)
209 // - returns a generator producing a sequence of values {start, start+1,
210 // start+2, ..., }.
211 // Range(start, end, step)
212 // - returns a generator producing a sequence of values {start, start+step,
213 // start+step+step, ..., }.
218 // * start and end must have the same type. That type may be any integral or
225 // * Condition start < en
229 Range(T start, T end, IncrementT step) Range() argument
235 Range(T start, T end) Range() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCompactCharArray.java162 * @param start the starting offset of the range
169 public void setElementAt(char start, char end, char value) in setElementAt() argument
175 for (i = start; i <= end; ++i) { in setElementAt()
258 private int FindOverlappingPosition(int start, char[] tempValues, int tempCount) in FindOverlappingPosition() argument
265 if (arrayRegionMatches(values, start, tempValues, i, currentCount)) in FindOverlappingPosition()
274 * The start indices and start+len must be valid.
/third_party/icu/icu4c/source/common/
H A Demojiprops.cpp114 // Add the start code point of each same-value range of the trie. in addPropertyStarts()
115 UChar32 start = 0, end; in addPropertyStarts() local
117 while ((end = ucptrie_getRange(cpTrie, start, UCPMAP_RANGE_NORMAL, 0, in addPropertyStarts()
119 sa->add(sa->set, start); in addPropertyStarts()
120 start = end + 1; in addPropertyStarts()
/third_party/PyYAML/lib/yaml/
H A Dreader.py142 position = self.index+(len(self.buffer)-self.pointer)+match.start()
159 character = self.raw_buffer[exc.start]
161 position = self.stream_pointer-len(self.raw_buffer)+exc.start
163 position = exc.start
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
H A Dutils.h262 return Vector<T>(start() + from, to - from); in SubVector()
271 // Returns the pointer to the start of the data in the vector.
272 T* start() const { return start_; }
355 DOUBLE_CONVERSION_ASSERT(strlen(buffer_.start()) == static_cast<size_t>(position_));
358 return buffer_.start();
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DCompactCharArray.java164 * @param start the starting offset of the range
171 public void setElementAt(char start, char end, char value) in setElementAt() argument
177 for (i = start; i <= end; ++i) { in setElementAt()
260 private int FindOverlappingPosition(int start, char[] tempValues, int tempCount) in FindOverlappingPosition() argument
267 if (arrayRegionMatches(values, start, tempValues, i, currentCount)) in FindOverlappingPosition()
276 * The start indices and start+len must be valid.
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DUTF16Util.java304 * @param start offset to substring in the source array for analyzing
306 * @param offset16 UTF-16 offset relative to start
311 * the range of start and limit.
314 public static int charAt(char source[], int start, int limit, in charAt() argument
317 offset16 += start; in charAt()
318 if (offset16 < start || offset16 >= limit) { in charAt()
341 if (offset16 == start) { in charAt()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
H A DUTF16Util.java308 * @param start offset to substring in the source array for analyzing
310 * @param offset16 UTF-16 offset relative to start
315 * the range of start and limit.
318 public static int charAt(char source[], int start, int limit, in charAt() argument
321 offset16 += start; in charAt()
322 if (offset16 < start || offset16 >= limit) { in charAt()
345 if (offset16 == start) { in charAt()
/third_party/icu/icu4c/source/i18n/
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
H A Dformattedval_impl.h110 * Sorts the fields: start index first, length second.
124 int32_t start; member
179 * start: the start position within the string of the span. -1 if unknown.
182 void appendSpanInfo(UFieldCategory category, int32_t spanValue, int32_t start, int32_t length, UErrorCode& status);
183 void prependSpanInfo(UFieldCategory category, int32_t spanValue, int32_t start, int32_t length, UErrorCode& status);
195 int32_t trimFront(int32_t start) const;

Completed in 14 milliseconds

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