Searched defs:need (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/collection/src/main/java/androidx/collection/
H A DContainerHelpers.java24 public static int idealIntArraySize(int need) { argument
25 return idealByteArraySize(need * 4) / 4;
28 public static int idealLongArraySize(int need) { argument
29 return idealByteArraySize(need * 8) / 8;
32 public static int idealByteArraySize(int need) { argument
34 if (need <= (1 << i) - 12)
37 return need;
/frameworks/ex/common/java/com/android/common/widget/
H A DGroupingListAdapter.java183 * Scans over the entire cursor looking for duplicate phone numbers that need
218 private int idealLongArraySize(int need) { argument
219 return idealByteArraySize(need * 8) / 8;
223 private int idealByteArraySize(int need) { argument
225 if (need <= (1 << i) - 12)
228 return need;
/frameworks/av/media/libnblog/
H A DNBLog.cpp565 size_t need = etr->mLength + Entry::kOverhead; // mEvent, mLength, data[mLength], mLength local
566 // need = number of bytes written to FIFO
573 for (size_t i = 0; i < need; i++) {
577 mFifoWriter->write(temp, need);
825 // TODO: hash for histogram ts and audio state need to match
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java727 * @deprecated All APIs accepting a network type are deprecated. There should be no need to
842 * with many more than two networks - we'd need an array to express
856 * with many more than two networks - we'd need an array to express
1377 * do this for SUPL requests, which are the only ones that we know need it. If
1421 // back out this hack for mms as they no longer need this and it's causing
2129 * and WifiStateMachine which need direct access. All other clients should use
2157 * and WifiStateMachine which need direct access. All other clients should use
2826 * changes capabilities but still satisfies the stated need.
3025 private NetworkRequest sendRequestForNetwork(NetworkCapabilities need, NetworkCallback callback, argument
3028 Preconditions.checkArgument(action == REQUEST || need !
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 144 milliseconds