Searched refs:end (Results 151 - 175 of 908) sorted by relevance

1234567891011>>

/frameworks/base/tools/aapt2/compile/
H A DPseudolocalizer.cpp55 std::u16string end() override;
123 out.append(mImpl->end());
251 std::u16string PseudoMethodAccent::end() { function in class:aapt::PseudoMethodAccent
281 bool end = false; local
283 while (!end && i < I) {
288 end = true;
293 end = true;
305 bool end = false; local
307 while (!end && htmlCodePos < I) {
313 end
[all...]
H A DXmlIdCollector.cpp47 auto iter = std::lower_bound(mOutSymbols->begin(), mOutSymbols->end(),
49 if (iter == mOutSymbols->end() || iter->name != name) {
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java287 public void recordData(long start, long end, long rxBytes, long txBytes) { argument
288 recordData(start, end, new NetworkStats.Entry(
296 public void recordData(long start, long end, NetworkStats.Entry entry) { argument
311 ensureBuckets(start, end);
314 long duration = end - start;
315 final int startIndex = getIndexAfter(end);
323 if (curStart > end) continue;
325 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start);
361 public void recordHistory(NetworkStatsHistory input, long start, long end) { argument
369 if (bucketStart < start || bucketEnd > end) continu
384 ensureBuckets(long start, long end) argument
473 getValues(long start, long end, Entry recycle) argument
481 getValues(long start, long end, long now, Entry recycle) argument
529 generateRandom(long start, long end, long bytes) argument
547 generateRandom(long start, long end, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations, Random r) argument
574 randomLong(Random r, long start, long end) argument
581 intersects(long start, long end) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java92 // the style array is a flat array of <type, start, end> hence
175 + ", start=" + style[i+1] + ", end=" + style[i+2]);
360 int start, int end) {
371 if (end != 0 && end != len && buffer.charAt(end - 1) != '\n') {
372 for (end++; end < len; end++) {
373 if (buffer.charAt(end
359 addParagraphSpan(Spannable buffer, Object what, int start, int end) argument
411 chooseHeight(CharSequence text, int start, int end, int spanstartv, int v, Paint.FontMetricsInt fm) argument
418 chooseHeight(CharSequence text, int start, int end, int spanstartv, int v, Paint.FontMetricsInt fm, TextPaint paint) argument
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
H A DPageRangeUtils.java89 // sub-ranges whose start is less that or equal to the end.
111 * non-overlapping with the start lesser than or equal to the end
264 Integer end = retInt.second;
270 ((separator != null && (start != null || end != null)) ||
272 (separator == null && start != null && end == null))) {
277 if (end == null) {
279 end = start;
281 end = maxPageNumber;
285 if (start <= end && start >= 1 && end <
[all...]
/frameworks/compile/slang/
H A Dslang_rs_context.h211 return mExportables.end();
219 return mExportVars.end();
230 return mExportFuncs.end();
239 return mExportForEach.end();
249 return mExportReduce.end();
264 std::copy_if(mExportReduceResultType.begin(), mExportReduceResultType.end(), std::back_inserter(Return), Filt);
265 std::sort(Return.begin(), Return.end(), Comp);
266 auto ReturnNewEndIter = std::unique(Return.begin(), Return.end(),
270 Return.erase(ReturnNewEndIter, Return.end());
277 export_type_iterator export_types_end() { return mExportTypes.end(); }
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java174 NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end,
176 return getHistory(template, uid, set, tag, fields, start, end, accessLevel,
185 NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end,
193 mBucketDuration, start == end ? 1 : estimateBuckets(), fields);
196 if (start == end) return combined;
203 combined.recordHistory(value, start, end);
213 public NetworkStats getSummary(NetworkTemplate template, long start, long end, argument
215 return getSummary(template, start, end, accessLevel, Binder.getCallingUid());
222 public NetworkStats getSummary(NetworkTemplate template, long start, long end, argument
226 final NetworkStats stats = new NetworkStats(end
173 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end, @NetworkStatsAccess.Level int accessLevel) argument
184 getHistory( NetworkTemplate template, int uid, int set, int tag, int fields, long start, long end, @NetworkStatsAccess.Level int accessLevel, int callerUid) argument
264 recordData(NetworkIdentitySet ident, int uid, int set, int tag, long start, long end, NetworkStats.Entry entry) argument
550 dumpCheckin(PrintWriter pw, long start, long end) argument
561 dumpCheckin(PrintWriter pw, long start, long end, NetworkTemplate groupTemplate, String groupPrefix) argument
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp159 iterator out, outBegin = begin(), outEnd = end();
162 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end();
175 const_iterator out, outBegin = begin(), outEnd = end();
177 Output::const_iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end();
188 iterator out, outBegin = begin(), outEnd = end();
190 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end();
202 const_iterator out, outBegin = begin(), outEnd = end();
211 iterator out, outBegin = begin(), outEnd = end();
223 iterator out, outBegin = begin(), outEnd = end();
228 if (out != end()) {
[all...]
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp120 it != m_MultipartList.end();
153 if (itX != m_SymbolOrderMap.end() && itY != m_SymbolOrderMap.end())
156 return itX == m_SymbolOrderMap.end() && itY != m_SymbolOrderMap.end();
179 end = m_InputLocalSymbols.end();
180 it != end;
187 end = m_InputGlobalSymbols.end();
[all...]
H A DMipsGOTPLT.cpp34 for (iterator it = begin(), ie = end(); it != ie; ++it, ++buffer) {
59 for (; it != end(); ++it)
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3ZslStream.cpp157 List<sp<RingBufferConsumer::PinnedBufferItem> >::iterator it, end; local
159 end = mInputBufferQueue.end();
162 if (it == end) {
209 Vector<sp<PinnedBufferItem> >::iterator it, end; local
210 for (it = mBuffersInFlight.begin(), end = mBuffersInFlight.end();
211 it != end;
304 // TODO: this is problematic, we'll end up with using wrong result for this pinned buffer.
/frameworks/base/core/java/android/text/style/
H A DLeadingMarginSpan.java63 * @param end the end of the line
70 CharSequence text, int start, int end,
85 * the beginning to the end of a paragraph.
157 CharSequence text, int start, int end,
67 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
154 drawLeadingMargin(Canvas c, Paint p, int x, int dir, int top, int baseline, int bottom, CharSequence text, int start, int end, boolean first, Layout layout) argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnection.java108 * acting "after the cursor" would act after the end of the
208 * the cursor is really at the end of the text.</p>
367 * the end of the text, then this method does not fail but deletes all the characters in
394 * the end of the text, then this method does not fail but deletes all the characters in
447 * > 0, this is relative to the end of the text - 1; if <= 0, this
468 * The order of start and end is not important. In effect, the
469 * region from start to end and the region from end to start is
471 * greater than end.</p>
485 * @param end th
490 setComposingRegion(int start, int end) argument
630 setSelection(int start, int end) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationUtils.java43 public static float interpolate(float start, float end, float amount) { argument
44 return start * (1.0f - amount) + end * amount;
/frameworks/base/tools/aapt2/io/
H A DFileSystem.cpp48 mCurrent(collection->mFiles.begin()), mEnd(collection->mFiles.end()) {
67 if (iter != mFiles.end()) {
/frameworks/base/tools/aapt2/link/
H A DPrivateAttributeMover.cpp28 const auto last = inputContainer.end();
29 auto newEnd = std::find_if(inputContainer.begin(), inputContainer.end(), pred);
/frameworks/base/tools/split-select/
H A DRuleGenerator.cpp41 allDensities.end(), (int) ResTable_config::DENSITY_ANY) != allDensities.end();
81 std::find(familyVariants.begin(), familyVariants.end(), thisAbi);
83 Vector<abi::Variant>::const_iterator end = familyVariants.end(); local
85 end = std::find(start, familyVariants.end(), splitAbis[index + 1]);
91 while (start != end) {
/frameworks/minikin/include/minikin/
H A DFontCollection.h37 int end; member in struct:android::FontCollection::Run
62 size_t end; member in struct:android::FontCollection::Range
/frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
H A DInvisibleRecipientChip.java95 public void draw(final Canvas canvas, final CharSequence text, final int start, final int end, argument
101 public int getSize(final Paint paint, final CharSequence text, final int start, final int end, argument
/frameworks/support/compat/jellybean-mr1/android/support/v4/view/
H A DViewCompatJellybeanMr1.java56 public static void setPaddingRelative(View view, int start, int top, int end, int bottom) { argument
57 view.setPaddingRelative(start, top, end, bottom);
/frameworks/support/compat/jellybean-mr2/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellybeanMr2.java39 public static void setTextSelection(Object info, int start, int end) { argument
40 ((AccessibilityNodeInfo) info).setTextSelection(start, end);
/frameworks/support/design/honeycomb-mr1/android/support/design/widget/
H A DValueAnimatorCompatImplHoneycombMr1.java113 public void end() { method in class:ValueAnimatorCompatImplHoneycombMr1
114 mValueAnimator.end();
/frameworks/base/libs/hwui/tests/common/
H A DTestUtils.cpp26 SkColor TestUtils::interpolateColor(float fraction, SkColor start, SkColor end) { argument
32 int endA = (end >> 24) & 0xff;
33 int endR = (end >> 16) & 0xff;
34 int endG = (end >> 8) & 0xff;
35 int endB = end & 0xff;
/frameworks/base/tools/aapt/
H A DApkBuilder.cpp35 for (; iter != configs.end(); iter++) {
84 for (; iter != configs.end(); iter++) {
96 for (char* end = buf + len; buf < end; ++buf) {
121 for (; iter != mFiles.end(); iter++) {
/frameworks/base/tools/aapt2/java/
H A DManifestClassGenerator.cpp31 auto iter = std::find_end(value.begin(), value.end(), sep.begin(), sep.end());
34 if (iter != value.end()) {
35 result.assign(iter + sep.size(), value.end() - (iter + sep.size()));
46 if (iter != result.end()) {

Completed in 874 milliseconds

1234567891011>>