HomeSort by relevance Sort by last modified time
    Searched defs:list (Results 426 - 450 of 4851) sorted by null

<<11121314151617181920>>

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_pm_tags.c 9 The current list has all the buffers which contribute to this particular workload. So we walkthrough the
10 list and throw buf done for all the buffers which were consumed. This can be deduced from total bytes we
11 in list which represents the bytes that were used for this acces unit.
21 frame_start_found: Indicates we saw the beggining of frame in current list of ES buffers(which represent current acces unit).
37 This function generates contribution tags current workload by walking through list of consumed buffers.
38 If frame is done(ignore_partial is false) we generate continue tags for the last item in list(if its not completely consumed).
45 viddec_pm_utils_list_t *list = &(cxt->list); local
47 if(list->num_items != 0)
52 while((num_items < list->num_items) && (list->data[num_items].edpos <= (uint32_t)list->total_bytes)
88 viddec_pm_utils_list_t *list = &(cxt->list); local
129 viddec_pm_utils_list_t *list = &(cxt->list); local
214 viddec_pm_utils_list_t *list = &(cxt->list); local
250 viddec_pm_utils_list_t *list = &(cxt->list); local
280 viddec_pm_utils_list_t *list; local
    [all...]
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
RawThermalZone.java 68 ArrayList<ThermalSensor> list = getThermalSensorList(); local
69 if (list != null) {
71 ThermalSensor s = list.get(0);
  /libcore/benchmarks/src/benchmarks/regression/
CollectionsBenchmark.java 23 import java.util.List;
42 List<Integer> input = buildList(arrayListLength, ArrayList.class);
49 List<Integer> input = buildList(arrayListLength, ArrayList.class);
56 List<Integer> input = buildList(arrayListLength, Vector.class);
63 List<Integer> input = buildList(arrayListLength, Vector.class);
69 private static <T extends List<Integer>> List<Integer> buildList(
73 List<Integer> list = listClass.newInstance(); local
75 list.add(random.nextInt())
    [all...]
  /libcore/ojluni/src/main/java/sun/security/jca/
GetInstance.java 66 ProviderList list = Providers.getProviderList(); local
67 Service s = list.getService(type, algorithm);
107 * Return a List of all the available Services that implement
108 * (type, algorithm). Note that the list is initialized lazily
112 public static List<Service> getServices(String type, String algorithm) {
113 ProviderList list = Providers.getProviderList(); local
114 return list.getServices(type, algorithm);
120 * @deprecated use getServices(List<ServiceId>) instead
123 public static List<Service> getServices(String type,
124 List<String> algorithms)
125 ProviderList list = Providers.getProviderList(); local
134 ProviderList list = Providers.getProviderList(); local
156 ProviderList list = Providers.getProviderList(); local
    [all...]
  /packages/apps/Car/libs/car-list/src/com/android/car/list/
IconTextLineItem.java 17 package com.android.car.list;
27 import com.android.car.list.R;
SpinnerLineItem.java 17 package com.android.car.list;
29 import com.android.car.list.R;
31 import java.util.List;
47 * @param items The List of items in the spinner
54 List<?> items,
  /packages/apps/Contacts/src/com/android/contacts/
Collapser.java 22 import java.util.List;
27 * function that takes an ArrayList of items and returns a list of the same items collapsed into
54 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed
58 * @param list List of Objects of type <T extends Collapsible<T>> to be collapsed.
60 public static <T extends Collapsible<T>> void collapseList(List<T> list, Context context) {
62 int listSize = list.size();
69 T iItem = list.get(i)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsSectionIndexer.java 17 package com.android.contacts.list;
EmailAddressPickerFragment.java 16 package com.android.contacts.list;
26 * Fragment containing an email list for picking.
PostalAddressPickerFragment.java 16 package com.android.contacts.list;
26 * Fragment containing a postal address list for picking.
  /packages/apps/Dialer/java/com/android/contacts/common/
Collapser.java 21 import java.util.List;
26 * function that takes an ArrayList of items and returns a list of the same items collapsed into
43 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed if
47 * @param list List of Objects of type <T extends Collapsible<T>> to be collapsed.
49 public static <T extends Collapsible<T>> void collapseList(List<T> list, Context context) {
51 int listSize = list.size();
58 T iItem = list.get(i)
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/list/
ContactsSectionIndexer.java 17 package com.android.contacts.common.list;
  /packages/apps/Dialer/java/com/android/dialer/app/list/
DragDropController.java 17 package com.android.dialer.app.list;
23 import java.util.List;
31 private final List<OnDragDropListener> onDragDropListeners = new ArrayList<OnDragDropListener>();
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
IntentAsserts.java 30 import java.util.List;
64 public static List<Parcelable> assertHasExtraList(Intent intent, String key) {
65 ArrayList<Parcelable> list = intent.getParcelableArrayListExtra(key); local
66 assertNotNull(list);
67 return list;
70 public static List<Parcelable> assertHasExtraList(Intent intent, String key, int size) {
71 List<Parcelable> list = assertHasExtraList(intent, key); local
72 Assert.assertEquals(size, list.size());
73 return list;
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
DataModelTest.java 46 final ConversationListData list = dataModel.createConversationListData(getContext(), local
48 assertTrue(list instanceof ConversationListData);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/datetime/timezone/
RegionZonePickerTest.java 31 import java.util.List;
52 List<TimeZoneInfo> list = Arrays.asList(timeZone4, timeZone2, timeZone3, timeZone1); local
53 Collections.sort(list, comparator);
54 assertThat(list).isEqualTo(Arrays.asList(timeZone1, timeZone2, timeZone3, timeZone4));
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/
SuggestionService.java 25 import java.util.List;
32 public List<Suggestion> onGetSuggestions() {
34 final List<Suggestion> list = FeatureFactory.get(this) local
38 final List<String> ids = new ArrayList<>(list.size());
39 for (Suggestion suggestion : list) {
46 return list;
  /packages/apps/TV/src/com/android/tv/data/
ParcelableList.java 23 import java.util.List;
25 /** A convenience class for the list of {@link Parcelable}s. */
29 ParcelableList list = new ParcelableList(); local
33 list.mList.add(in.readParcelable(Thread.currentThread().getContextClassLoader()));
36 return list;
53 private final List<T> mList = new ArrayList<>();
61 /** Returns the list. */
62 public List<T> getList() {
  /packages/apps/TV/src/com/android/tv/dvr/ui/list/
DvrSchedulesFragment.java 17 package com.android.tv.dvr.ui.list;
23 import com.android.tv.dvr.ui.list.SchedulesHeaderRowPresenter.DateHeaderRowPresenter;
25 /** A fragment to show the list of schedule recordings. */
EpisodicProgramRow.java 17 package com.android.tv.dvr.ui.list;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Collapser.java 25 * function that takes an ArrayList of items and returns a list of the same items collapsed into
45 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed
49 * @param list ArrayList of Objects of type <T extends Collapsible<T>> to be collapsed.
51 public static <T extends Collapsible<T>> void collapseList(ArrayList<T> list) {
53 int listSize = list.size();
56 T iItem = list.get(i);
59 T jItem = list.get(j);
63 list.set(j, null);
71 Iterator<T> itr = list.iterator()
    [all...]
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperChange.java 32 import java.util.List;
54 List<ResolveInfo> list = getPackageManager().queryIntentServices( local
56 if (list != null) {
57 for (int i=0; i<list.size(); i++) {
58 ResolveInfo ri = list.get(i);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/wizards/templates/
FmActivityToLayoutMethodTest.java 22 import java.util.List;
31 List list = Collections.singletonList(new SimpleScalar(s)); local
32 assertEquals(expected, ((SimpleScalar) method.exec(list)).getAsString());
FmCamelCaseToUnderscoreMethodTest.java 22 import java.util.List;
31 List list = Collections.singletonList(new SimpleScalar(s)); local
32 assertEquals(expected, ((SimpleScalar) method.exec(list)).getAsString());
FmEscapeXmlAttributeMethodTest.java 22 import java.util.List;
31 List list = Collections.singletonList(new SimpleScalar(s)); local
32 assertEquals(expected, ((SimpleScalar) method.exec(list)).getAsString());

Completed in 789 milliseconds

<<11121314151617181920>>