Searched refs:get (Results 51 - 75 of 1237) sorted by last modified time

1234567891011>>

/frameworks/support/v4/java/android/support/v4/view/
H A DGestureDetectorCompat.java169 final ViewConfiguration configuration = ViewConfiguration.get(context);
192 * presses and holds down you get a longpress event and nothing further.
194 * moved their finger and you will get scroll events. By default
531 * presses and holds down you get a longpress event and nothing further.
533 * moved their finger and you will get scroll events. By default
H A DPagerTabStrip.java94 mTouchSlop = ViewConfiguration.get(context).getScaledTouchSlop();
H A DPagerTitleStrip.java256 updateAdapter(mWatchingAdapter != null ? mWatchingAdapter.get() : null, adapter);
H A DViewPager.java352 final ViewConfiguration configuration = ViewConfiguration.get(context);
407 final ItemInfo ii = mItems.get(i);
519 mItems.get(i).scrolling = true;
612 final int result = ((LayoutParams) mDrawingOrderedChildren.get(index).getLayoutParams()).childIndex;
820 final ItemInfo ii = mItems.get(i);
922 final ItemInfo ii = mItems.get(curIndex);
939 ItemInfo ii = itemIndex >= 0 ? mItems.get(itemIndex) : null;
955 ii = itemIndex >= 0 ? mItems.get(itemIndex) : null;
960 ii = itemIndex >= 0 ? mItems.get(itemIndex) : null;
965 ii = itemIndex >= 0 ? mItems.get(itemInde
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java864 * Argument for which HTML element to get moving to the next/previous HTML element.
1224 Object info = infos.get(i);
H A DAccessibilityNodeProviderCompat.java63 AccessibilityNodeInfoCompat infoCompat = compatInfos.get(i);
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java2033 keys[i] = get(i).first;
2034 values[i] = get(i).second;
2047 *do* get added multiples times. So the length of index is equals to the number of
2078 Integer index = keyToIndex.get(key);
/frameworks/support/volley/src/com/android/volley/
H A DCache.java28 public Entry get(String key); method in interface:Cache
H A DCacheDispatcher.java101 Cache.Entry entry = mCache.get(request.getCacheKey());
H A DRequestQueue.java50 * <li>get(cacheKey) returns waiting requests for the given cache key. The in flight request
232 Queue<Request> stagedRequests = mWaitingRequests.get(cacheKey);
H A DVolleyLog.java126 long prevTime = mMarkers.get(0).time;
151 long first = mMarkers.get(0).time;
152 long last = mMarkers.get(mMarkers.size() - 1).time;
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DAndroidAuthenticator.java29 * An Authenticator that uses {@link AccountManager} to get auth
58 final AccountManager accountManager = AccountManager.get(mContext);
84 AccountManager.get(mContext).invalidateAuthToken(mAccount.type, authToken);
H A DByteArrayPool.java93 byte[] buf = mBuffersBySize.get(i);
H A DDiskBasedCache.java104 public synchronized Entry get(String key) { method in class:DiskBasedCache
105 CacheHeader entry = mEntries.get(key);
171 Entry entry = get(key);
287 CacheHeader oldEntry = mEntries.get(key);
297 CacheHeader entry = mEntries.get(key);
369 // don't bother deleting, it'll get pruned eventually
H A DHttpClientStack.java51 httpRequest.setHeader(key, headers.get(key));
59 result.add(new BasicNameValuePair(key, postParams.get(key)));
H A DHttpHeaderParser.java53 headerValue = headers.get("Date");
58 headerValue = headers.get("Cache-Control");
77 headerValue = headers.get("Expires");
82 serverEtag = headers.get("ETag");
121 String contentType = headers.get(HTTP.CONTENT_TYPE);
H A DHurlStack.java88 connection.addRequestProperty(headerName, map.get(headerName));
105 Header h = new BasicHeader(header.getKey(), header.getValue().get(0));
H A DNoCache.java30 public Entry get(String key) { method in class:NoCache
H A DRequestFuture.java43 * JSONObject response = future.get();
86 public T get() throws InterruptedException, ExecutionException { method in class:RequestFuture
95 public T get(long timeout, TimeUnit unit) method in class:RequestFuture
/frameworks/support/volley/tests/src/com/android/volley/
H A DRequestQueueTest.java95 assertEquals(1, parsed.get()); // req1 must have been parsed.
96 assertEquals(1, delivered.get()); // req1 must have been parsed.
/frameworks/support/volley/tests/src/com/android/volley/mock/
H A DMockCache.java37 public Entry get(String key) { method in class:MockCache
/frameworks/support/volley/tests/src/com/android/volley/toolbox/
H A DBasicNetworkTest.java76 assertEquals("foo", mockHttpStack.getLastHeaders().get("requestheader"));
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java134 VCardEntry parent = entries.get(1);
135 VCardEntry child = entries.get(0);
141 assertEquals("1", phoneList.get(0).getNumber());
361 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(0).getType());
362 assertEquals(ContentProviderOperation.TYPE_INSERT, operationList.get(1).getType());
H A DVCardParserTests.java56 final Order top = mExpectedOrder.get(0);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DContentValuesVerifier.java47 mContentValuesVerifierElemList.get(mIndex).onEntryCreated(entry);

Completed in 952 milliseconds

1234567891011>>