Searched defs:entries (Results 1 - 14 of 14) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_CheckVLCEscapeMode.c67 OMX_U8 escape = 0, fMode = 0, entries; local
76 entries = pRunIndexTable[run + 1]
80 entries = 1;
82 if (level > entries)
104 entries = pRunIndexTable[run + 1]
108 entries = 1;
110 if (levelPlus > entries)
129 entries = pRunIndexTable[runPlus + 1]
133 entries = 1;
135 if (level > entries)
[all...]
/frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
H A DClassPathScannerTest.java88 private Enumeration<String> createEntries(String... entries) { argument
89 Vector<String> v = new Vector<String>(entries.length);
90 for (String entry : entries) {
/frameworks/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp98 AllocEntry * entries = new AllocEntry[count]; local
102 AllocEntry *e = &entries[i];
114 // Now we need to sort the entries. They come sorted by size but
120 AllocEntry *e1 = &entries[i];
121 AllocEntry *e2 = &entries[i+1];
134 AllocEntry t = entries[i];
135 entries[i] = entries[i+1];
136 entries[i+1] = t;
143 AllocEntry *e = &entries[
[all...]
/frameworks/base/services/common_time/
H A Dutils.cpp52 LogRing::LogRing(const char* header, size_t entries) argument
53 : mSize(entries)
59 ALOGE("Failed to allocate log ring with %u entries.", mSize);
/frameworks/base/core/java/android/preference/
H A DListPreference.java29 * A {@link Preference} that displays a list of entries as
69 * Sets the human-readable entries to be shown in the list. This will be
75 * @param entries The entries.
78 public void setEntries(CharSequence[] entries) { argument
79 mEntries = entries;
84 * @param entriesResId The entries array as a resource.
91 * The list of entries to be shown in the list in subsequent dialogs.
101 * entries is selected. If a user clicks on the second item in entries, th
[all...]
H A DMultiCheckPreference.java31 * A {@link Preference} that displays a list of entries as
71 * Sets the human-readable entries to be shown in the list. This will be
77 * @param entries The entries.
80 public void setEntries(CharSequence[] entries) { argument
81 mEntries = entries;
82 mSetValues = new boolean[entries.length];
83 mOrigValues = new boolean[entries.length];
88 * @param entriesResId The entries array as a resource.
95 * The list of entries t
[all...]
H A DMultiSelectListPreference.java31 * A {@link Preference} that displays a list of entries as
63 * Sets the human-readable entries to be shown in the list. This will be
69 * @param entries The entries.
72 public void setEntries(CharSequence[] entries) { argument
73 mEntries = entries;
78 * @param entriesResId The entries array as a resource.
85 * The list of entries to be shown in the list in subsequent dialogs.
95 * entries is selected. If a user clicks on the second item in entries, th
[all...]
/frameworks/base/core/java/android/app/
H A DAppOpsManager.java593 public PackageOps(String packageName, int uid, List<OpEntry> entries) { argument
596 mEntries = entries;
/frameworks/ex/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java76 * The number of extra entries requested to allow for duplicates. Duplicates
192 public final List<RecipientEntry> entries; field in class:BaseRecipientAdapter.DefaultFilterResult
198 public DefaultFilterResult(List<RecipientEntry> entries, argument
203 this.entries = entries;
259 final List<RecipientEntry> entries = constructEntryList(
268 Log.d(TAG, "More entries should be needed (current: "
282 entries, entryMap, nonAggregatedEntries,
314 if (defaultFilterResult.entries.size() == 0 &&
319 updateEntries(defaultFilterResult.entries);
746 onChanged(List<RecipientEntry> entries) argument
[all...]
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp667 size_t entries = get_camera_metadata_entry_count(*slotEntry); local
671 allocate_camera_metadata(entries, dataBytes);
825 result.appendFormat(" Stream slot: %d entries\n",
840 result = String8::format(" Main queue has %d entries:\n",
928 size_t entries, size_t bytes,
933 allocate_camera_metadata(entries, bytes);
926 producer_dequeue( const camera2_frame_queue_dst_ops_t * , size_t entries, size_t bytes, camera_metadata_t **buffer) argument
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp2317 SortedVector<AaptGroupEntry> entries; local
2350 if (entries.indexOf(kind) < 0) {
2351 entries.add(kind);
2464 // containing no entries.
2500 // containing no entries.
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2417 #define MAX_SORT 20 // number of entries to sort
2418 #define MAX_KEEP 10 // number of entries to keep
2419 struct Entry entries[MAX_SORT]; local
2436 // ignore non .wav file entries
2442 strcpy(entries[entryCount++].mName, de.d_name);
2446 qsort(entries, entryCount, sizeof(Entry), comparEntry);
2448 strcpy(&teePath[teePathLen], entries[i].mName);
/frameworks/base/include/androidfw/
H A DResourceTypes.h763 * the names of entries or type identifiers however).
766 * Specific entries within a resource table can be uniquely identified
1105 * A collection of resource entries for a particular resource data
1116 * It would be nice to have an additional ordered index of entries, so
1143 // Configuration this collection of entries is designed for.
1175 * Extended form of a ResTable_entry for map entries, defining a parent map
1257 // supplied as additional entries in the map.
1261 // supplied as additional entries in the map.
1429 theme_entry* entries; member in struct:android::ResTable::Theme::type_info
1534 // but not the names their entries o
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp2598 theme_entry* te = pi->types[j].entries;
2614 theme_entry* te = pi->types[j].entries;
2617 newpi->types[j].entries = newte;
2620 newpi->types[j].entries = NULL;
2680 curEntries = curPI->types[t].entries;
2688 curPI->types[t].entries = curEntries;
2780 const theme_entry& te = ti.entries[e];
2845 theme_entry& te = ti.entries[k];
3590 bag_entry* entries = (bag_entry*)(set+1); local
3593 TABLE_NOISY(ALOGI("Starting with set %p, entries
[all...]

Completed in 446 milliseconds