Searched defs:end (Results 126 - 150 of 219) sorted by relevance

123456789

/frameworks/base/services/sensorservice/
H A Dvec.h315 iterator end() { return base::v + SIZE; } function in class:android::vec
317 const_iterator end() const { return base::v + SIZE; } function in class:android::vec
/frameworks/base/tools/aapt/
H A DXMLNode.cpp84 const char16_t* end = str + str16.size(); local
89 while (p < end) {
93 if (*p == '%' && p + 1 < end) {
117 // Optionally '$' can be specified at the end.
118 if (p < end && *p == '$') {
126 while (p < end && (*p == '-' ||
148 if (p < end) {
1194 "Bad end element %s", name);
1207 "Bad end namespace %s", prefix);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter2.java363 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { argument
365 mOrgWriter.visitTryCatchBlock(start, end, handler, type);
420 Label start, Label end, int index) {
422 mOrgWriter.visitLocalVariable(name, desc, signature, start, end, index);
419 visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) argument
H A DRenameClassAdapter.java343 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { argument
346 super.visitTryCatchBlock(start, end, handler, type);
351 Label start, Label end, int index) {
355 super.visitLocalVariable(name, desc, signature, start, end, index);
350 visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) argument
H A DStubMethodAdapter.java278 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { argument
280 mParentVisitor.visitTryCatchBlock(start, end, handler, type);
335 Label start, Label end, int index) {
337 mParentVisitor.visitLocalVariable(name, desc, signature, start, end, index);
334 visitLocalVariable(String name, String desc, String signature, Label start, Label end, int index) argument
/frameworks/compile/mclinker/include/mcld/ADT/
H A DBinTree.h49 if (m_Stack.empty()) { // reach the end
84 if (m_Queue.empty()) { // reach the end
276 // +---> Root(end) <---+
306 iterator dEnd = pClient.end();
429 iterator end() function in class:mcld::BinaryTree
435 const_iterator end() const function in class:mcld::BinaryTree
/frameworks/native/include/utils/
H A DList.h168 insert(begin(), src.begin(), src.end());
185 return size_t(distance(begin(), end()));
199 inline iterator end() { function in class:android::List
202 inline const_iterator end() const { function in class:android::List
208 void push_back(const T& val) { insert(end(), val); }
318 iterator lastDst = end();
320 const_iterator lastSrc = right.end();
H A DVector.h101 //! same as operator [], but allows to access the vector backward (from the end) with a negative index
120 //! append another vector at the end of this one
127 //! append an array at the end of this vector
184 inline iterator end() { return editArray() + size(); } function in class:android::Vector
186 inline const_iterator end() const { return array() + size(); } function in class:android::Vector
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp187 size_t end = start + freedSize; local
189 end = (end + pagesize-1) & ~(pagesize-1);
196 if (end > free_end)
197 end = free_end;
199 end &= ~(pagesize-1);
201 if (start < end) {
203 size_t size = end-start;
/frameworks/av/media/libaah_rtp/
H A Daah_tx_sender.cpp353 // start and end. Also handles the case where there is a rollover of the
354 // range between start and end.
356 static inline bool withinIntervalWithRollover(T val, T start, T end) { argument
357 return ((start <= end && val >= start && val <= end) ||
358 (start > end && (val >= start || val <= end)));
443 // start of the retransmit ring buffer (unless the end of the retransmit
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_comp.cpp1946 UChar *end; local
1953 end = prev + (lx << 3);
1962 while ((UInt)src < (UInt)end);
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp392 char *end; local
393 long maxBw = strtoul(value, &end, 10);
394 if (end > value && *end == '\0') {
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.cpp134 while (it != mMessageQueue.end()) {
623 // 5% chance of seeking beyond end of stream.
754 it != componentInfos.end(); ++it) {
763 role_it != info.mRoles.end(); ++role_it) {
809 char *end; local
810 unsigned long x = strtoul(optarg, &end, 10);
812 if (*end != '\0' || end == optarg) {
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp815 char *end; local
816 *x = strtoul(from, &end, 10);
818 if (end == from || *end != '\0') {
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java125 * an animation (if state == STOPPED). Also used to end an animation that
126 * has been cancel()'d or end()'d since the last animation frame. Possible values are
150 * startDelay and whether start() was called before end().
211 * When the animation reaches the end and <code>repeatCount</code> is INFINITE
216 * When the animation reaches the end and <code>repeatCount</code> is INFINITE
536 * Internal per-thread collections used to avoid set collisions as animations start and end
765 * Defines what this animation should do when it reaches the end. This
776 * Defines what this animation should do when it reaches the end.
951 public void end() { method in class:ValueAnimator
984 * If the animation is not currently running, then it will start from the end an
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java279 public void recordData(long start, long end, long rxBytes, long txBytes) { argument
280 recordData(start, end, new NetworkStats.Entry(
288 public void recordData(long start, long end, NetworkStats.Entry entry) { argument
303 ensureBuckets(start, end);
306 long duration = end - start;
307 final int startIndex = getIndexAfter(end);
315 if (curStart > end) continue;
317 final long overlap = Math.min(curEnd, end) - Math.max(curStart, start);
353 public void recordHistory(NetworkStatsHistory input, long start, long end) { argument
361 if (bucketStart < start || bucketEnd > end) continu
376 ensureBuckets(long start, long end) argument
465 getValues(long start, long end, Entry recycle) argument
473 getValues(long start, long end, long now, Entry recycle) argument
521 generateRandom(long start, long end, long bytes) argument
539 generateRandom(long start, long end, long rxBytes, long rxPackets, long txBytes, long txPackets, long operations, Random r) argument
566 randomLong(Random r, long start, long end) argument
[all...]
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java210 // seek forward to the end of the paragraph
290 // If the new layout has a blank line at the end, but it is not
291 // the very end of the buffer, then we already have a line that
397 * not on the end line of the previous block.
638 public void onSpanAdded(Spannable s, Object o, int start, int end) { argument
640 reflow(s, start, end - start, end - start);
643 public void onSpanRemoved(Spannable s, Object o, int start, int end) { argument
645 reflow(s, start, end - start, end
648 onSpanChanged(Spannable s, Object o, int start, int end, int nstart, int nend) argument
[all...]
H A DHtml.java196 int start, int end) {
198 for (int i = start; i < end; i = next) {
199 next = text.nextSpanTransition(i, end, QuoteSpan.class);
214 private static String getOpenParaTagWithDirection(Spanned text, int start, int end) { argument
215 final int len = end - start;
218 TextUtils.getChars(text, start, end, buffer, 0);
232 int start, int end) {
233 out.append(getOpenParaTagWithDirection(text, start, end));
236 for (int i = start; i < end; i = next) {
237 next = TextUtils.indexOf(text, '\n', i, end);
195 withinDiv(StringBuilder out, Spanned text, int start, int end) argument
231 withinBlockquote(StringBuilder out, Spanned text, int start, int end) argument
255 withinParagraph(StringBuilder out, Spanned text, int start, int end, int nl, boolean last) argument
382 withinStyle(StringBuilder out, CharSequence text, int start, int end) argument
608 private static void end(SpannableStringBuilder text, Class kind, method in class:HtmlToSpannedConverter
[all...]
H A DStaticLayout.java471 // Log.e("text", "output rest " + here + " to " + end);
601 private int out(CharSequence text, int start, int end, argument
639 chooseHeight(text, start, end, chooseHtv[i], v, fm, paint);
642 chooseHt[i].chooseHeight(text, start, end, chooseHtv[i], v, fm);
661 if (end == bufEnd) {
689 lines[off + mColumns + START] = end;
704 start - widthStart, end - start);
720 calculateEllipsis(start, end, widths, widthStart,
/frameworks/base/core/java/android/view/
H A DGLES20DisplayList.java91 public void end() { method in class:GLES20DisplayList
94 mCanvas.end(mFinalizer.mNativeDisplayList);
96 mFinalizer = new DisplayListFinalizer(mCanvas.end(0));
H A DGLES20RecordingCanvas.java81 int end(int nativeDisplayList) { method in class:GLES20RecordingCanvas
255 public void drawText(CharSequence text, int start, int end, float x, float y, Paint paint) { argument
256 super.drawText(text, start, end, x, y, paint);
261 public void drawText(String text, int start, int end, float x, float y, Paint paint) { argument
262 super.drawText(text, start, end, x, y, paint);
293 public void drawTextRun(CharSequence text, int start, int end, int contextStart, argument
295 super.drawTextRun(text, start, end, contextStart, contextEnd, x, y, dir, paint);
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java540 private void processGroup(List<ResolveInfo> rList, int start, int end, ResolveInfo ro, argument
543 int num = end - start+1;
559 for (int j = start+1; j <= end ; j++) {
572 for (int k = start; k <= end; k++) {
575 // Use application name for all entries from start to end-1
579 // Use package name for all entries from start to end-1
/frameworks/base/core/java/com/android/internal/view/
H A DIInputConnectionWrapper.java125 public void setSelection(int start, int end) { argument
126 dispatchMessage(obtainMessageII(DO_SET_SELECTION, start, end));
137 public void setComposingRegion(int start, int end) { argument
138 dispatchMessage(obtainMessageII(DO_SET_COMPOSING_REGION, start, end));
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp133 unsigned long int end = 0; local
145 prevEnd = end;
153 if (sscanf(line, "%lx-%lx %*s %*x %*x:%*x %*d%n", &start, &end, &name_pos) != 2) {
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java845 private void assertNetworkTotal(NetworkTemplate template, long start, long end, long rxBytes, argument
849 assertValues(history, start, end, rxBytes, rxPackets, txBytes, txPackets, operations);
852 final NetworkStats stats = mSession.getSummaryForNetwork(template, start, end);
995 private static void assertValues(NetworkStatsHistory stats, long start, long end, long rxBytes, argument
997 final NetworkStatsHistory.Entry entry = stats.getValues(start, end, null);

Completed in 443 milliseconds

123456789