Searched defs:start (Results 1 - 25 of 492) sorted by last modified time

1234567891011>>

/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DViewPropertyAnimatorCompatSet.java54 public void start() { method in class:ViewPropertyAnimatorCompatSet
66 animator.start();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DMenuBuilder.java696 public int findGroupIndex(int group, int start) { argument
699 if (start < 0) {
700 start = 0;
703 for (int i = start; i < size; i++) {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DRtlSpacingHelper.java21 * RtlSpacingHelper manages the relationship between left/right and start/end for views
56 public void setRelative(int start, int end) { argument
57 mStart = start;
62 if (start != UNDEFINED) mRight = start;
64 if (start != UNDEFINED) mLeft = start;
/frameworks/support/v7/cardview/src/android/support/v7/widget/
H A DCardView.java114 public void setPaddingRelative(int start, int top, int end, int bottom) { argument
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java687 private static boolean fits(int[] a, int value, int start, int end) { argument
691 for (int i = start; i < end; i++) {
699 private static void procrusteanFill(int[] a, int start, int end, int value) { argument
701 Arrays.fill(a, Math.min(start, length), Math.min(end, length), value);
814 " indices (start + span) mustn't exceed the " + groupName + " count");
2439 private Spec(boolean startDefined, int start, int size, Alignment alignment, float weight) { argument
2440 this(startDefined, new Interval(start, start + size), alignment, weight);
2498 * <li> {@code spec.span = [start, start
2510 spec(int start, int size, Alignment alignment, float weight) argument
2521 spec(int start, Alignment alignment, float weight) argument
2534 spec(int start, int size, float weight) argument
2544 spec(int start, float weight) argument
2555 spec(int start, int size, Alignment alignment) argument
2573 spec(int start, Alignment alignment) argument
2590 spec(int start, int size) argument
2606 spec(int start) argument
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouter.java247 sGlobal.start();
512 * // Add the callback on start to tell the media router what kinds of routes
1656 public void start() { method in class:MediaRouter.GlobalMediaRouter
1661 mRegisteredProviderWatcher.start();
H A DRegisteredMediaRouteProvider.java100 public void start() { method in class:RegisteredMediaRouteProvider
H A DRegisteredMediaRouteProviderWatcher.java55 public void start() { method in class:RegisteredMediaRouteProviderWatcher
105 provider.start();
110 provider.start(); // restart the provider if needed
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java87 * Defines if layout should be calculated from end to start.
94 * This keeps the final value for how LayoutManager should start laying out views.
148 * @param reverseLayout When set to true, layouts from end to start.
316 * Calculates the view layout order. (e.g. from end to start or start to end)
435 // 2) fill towards start, stacking from bottom
507 // fill towards start
530 // fill towards start
617 + " towards start and " + scrapExtraEnd + " towards end");
663 * start o
1516 findReferenceChild(int start, int end, int itemCount) argument
[all...]
H A DRecyclerView.java462 public void offsetPositionsForRemovingInvisible(int start, int count) {
463 offsetPositionRecordsForRemove(start, count, true);
2565 final int start, end, inBetweenOffset;
2567 start = from;
2571 start = to;
2578 if (holder == null || holder.mPosition < start || holder.mPosition > end) {
2647 * @param positionStart Adapter position to start at
4129 final int start, end, inBetweenOffset;
4131 start = from;
4135 start
7563 void start(RecyclerView recyclerView, LayoutManager layoutManager) { method in class:RecyclerView.SmoothScroller
[all...]
H A DStaggeredGridLayoutManager.java403 * Sets whether LayoutManager should start laying out items from the end of the UI. The order
502 * Calculates the views' layout order. (e.g. from end to start or start to end)
575 // Layout start.
586 // Layout start.
1109 final View start = findFirstVisibleItemClosestToStart(false, true);
1111 if (start == null || end == null) {
1114 final int startPos = getPosition(start);
1407 final int start;
1410 start
2228 isEmpty(int start, int end) argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DAdapterHelperTest.java159 final int start, end, inBetweenOffset;
161 start = from;
165 start = to;
170 if (holder == null || holder.mPosition < start || holder.mPosition > end) {
778 final int start = nextInt(random, count - 1);
779 final int layoutCount = Math.max(1, nextInt(random, count - start));
780 setupBasic(count, start, layoutCount);
863 final int start = mViewHolders.get(0).getLayoutPosition();
866 start + i, mViewHolders.get(i).getLayoutPosition());
887 AdapterHelper.UpdateOp op(int cmd, int start, in argument
891 addOp(int start, int count) argument
895 rmOp(int start, int count) argument
899 upOp(int start, int count) argument
903 add(int start, int count) argument
926 rm(int start, int count) argument
939 up(int start, int count) argument
[all...]
H A DBaseRecyclerViewInstrumentationTest.java381 void layoutRange(RecyclerView.Recycler recycler, int start, int end) { argument
384 Log.d(TAG, "will layout items from " + start + " to " + end);
386 int diff = end > start ? 1 : -1;
388 for (int i = start; i != end; i+=diff) {
519 public void deleteAndNotify(final int start, final int count) throws Throwable { argument
520 deleteAndNotify(new int[]{start, count});
544 public void offsetOriginalIndices(int start, int offset) { argument
545 for (int i = start; i < mItems.size(); i++) {
551 * @param start inclusive
555 public void offsetOriginalIndicesBetween(int start, in argument
561 addAndNotify(final int start, final int count) argument
578 changeAndNotify(final int start, final int count) argument
[all...]
H A DOpReorderTest.java265 UpdateOp rm(int start, int count) { argument
267 return record(new UpdateOp(REMOVE, start, count));
274 UpdateOp add(int start, int count) { argument
276 return record(new UpdateOp(ADD, start, count));
279 UpdateOp up(int start, int count) { argument
280 return record(new UpdateOp(UPDATE, start, count));
H A DRecyclerViewAnimationsTest.java711 private void setLayoutRange(int start, int count) { argument
712 mLayoutManager.mOnLayoutCallbacks.mLayoutMin = start;
1045 final int start = mLayoutMin == Integer.MIN_VALUE ? 0 : mLayoutMin;
1048 lm.layoutRange(recycler, start, start + count);
H A DRecyclerViewBasicTest.java351 void removeItems(int start, int count) { argument
353 notifyItemRangeRemoved(start, count);
356 void addItems(int start, int count) { argument
358 notifyItemRangeInserted(start, count);
H A DStaggeredGridLayoutManagerTest.java721 assertRectSetsEqual(logPrefix + " when an item from the start of the list is deleted, "
798 void assertSpanAssignmentEquality(String msg, int[] set1, int[] set2, int start, int end) { argument
799 for (int i = start; i < end; i++) {
1167 + " layout its start should align with recycler view's start + "
1303 config + " when scrolling to an invisible child above, its start should"
1304 + " align with recycler view's start",
1344 // validate all children's order. first child should have min start mPosition
1410 int start, end;
1412 start
1840 offsetOriginalIndices(int start, int offset) argument
[all...]
/frameworks/volley/src/com/android/volley/
H A DRequestQueue.java71 /** Number of network request dispatcher threads to start. */
90 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
106 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
118 * Creates the worker pool. Processing will not begin until {@link #start()} is called.
130 public void start() { method in class:RequestQueue
132 // Create the cache dispatcher and start it.
134 mCacheDispatcher.start();
141 networkDispatcher.start();
/frameworks/volley/src/com/android/volley/toolbox/
H A DBasicNetwork.java204 protected void logError(String what, String url, long start) { argument
206 VolleyLog.v("HTTP ERROR(%s) %d ms to fetch %s", what, (now - start), url);
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp229 status_t AacAdtsSource::start(MetaData *params) { function in class:android::AacAdtsSource
/frameworks/rs/api/
H A Dgen_runtime.cpp469 void trim(string* s, size_t start) { argument
470 if (start > 0) {
471 s->erase(0, start);
733 const int start = l - SPEC_SIZE; local
734 if (start >= 0 && headerFileName.compare(start, SPEC_SIZE, SPEC) == 0) {
735 headerFileName.erase(start);
739 // Write the start of the header file.
1008 if (s.compare(0, 8, "start:") == 0) {
1056 int start[ local
[all...]
/frameworks/rs/driver/
H A DrsdMesh.cpp41 void rsdMeshDraw(const Context *rsc, const Mesh *m, uint32_t primIndex, uint32_t start, uint32_t len) { argument
49 drv->renderPrimitiveRange(rsc, primIndex, start, len);
H A DrsdMeshObj.cpp129 size_t start, uint32_t len) const {
171 (uint16_t *)(start * 2));
178 RSD_CALL_GL(glDrawArrays, mGLPrimitives[primIndex], start, len);
128 renderPrimitiveRange(const Context *rsc, uint32_t primIndex, size_t start, uint32_t len) const argument
H A DrsdRuntimeStubs.cpp386 static void SC_DrawMeshPrimitiveRange(Mesh *m, uint32_t primIndex, uint32_t start, uint32_t len) { argument
388 rsrDrawMeshPrimitiveRange(rsc, m, primIndex, start, len);
/frameworks/rs/driver/runtime/
H A Drs_cl.c793 extern float __attribute__((overloadable)) mix(float start, float stop, float amount) { argument
794 return start + (stop - start) * amount;
796 extern float2 __attribute__((overloadable)) mix(float2 start, float2 stop, float2 amount) { argument
797 return start + (stop - start) * amount;
799 extern float3 __attribute__((overloadable)) mix(float3 start, float3 stop, float3 amount) { argument
800 return start + (stop - start) * amount;
802 extern float4 __attribute__((overloadable)) mix(float4 start, float argument
805 mix(float2 start, float2 stop, float amount) argument
808 mix(float3 start, float3 stop, float amount) argument
811 mix(float4 start, float4 stop, float amount) argument
[all...]

Completed in 555 milliseconds

1234567891011>>