Searched refs:entries (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_CheckVLCEscapeMode.c82 OMX_U8 escape = 0, fMode = 0, entries; local
91 entries = pRunIndexTable[run + 1]
95 entries = 1;
97 if (level > entries)
119 entries = pRunIndexTable[run + 1]
123 entries = 1;
125 if (levelPlus > entries)
144 entries = pRunIndexTable[runPlus + 1]
148 entries = 1;
150 if (level > entries)
[all...]
/frameworks/base/core/tests/coretests/src/android/preference/
H A DListPreferenceTest.java24 String[] entries = { "one", "two", "three" };
27 lp.setEntries(entries);
34 assertEquals(entries[1], lp.getSummary());
37 assertEquals(entries[2], lp.getSummary());
43 assertEquals("The color is " + entries[2], lp.getSummary());
/frameworks/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp103 AllocEntry * entries = new AllocEntry[count]; local
107 AllocEntry *e = &entries[i];
119 // Now we need to sort the entries. They come sorted by size but
125 AllocEntry *e1 = &entries[i];
126 AllocEntry *e2 = &entries[i+1];
139 AllocEntry t = entries[i];
140 entries[i] = entries[i+1];
141 entries[i+1] = t;
151 AllocEntry *e = &entries[
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DLocalBroadcastManager.java144 ArrayList<ReceiverRecord> entries = mActions.get(action);
145 if (entries == null) {
146 entries = new ArrayList<ReceiverRecord>(1);
147 mActions.put(action, entries);
149 entries.add(entry);
215 ArrayList<ReceiverRecord> entries = mActions.get(intent.getAction());
216 if (entries != null) {
217 if (debug) Log.v(TAG, "Action list: " + entries);
220 for (int i=0; i<entries.size(); i++) {
221 ReceiverRecord receiver = entries
[all...]
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryableReprocessFormatsMap.java78 int[] entries = new int[len];
81 intBuffer.get(entries);
85 return new ReprocessFormatsMap(entries);
/frameworks/native/opengl/libs/tools/
H A Dgenfiles41 > ../entries.in
43 ./gltracegen ../entries.in >../trace.in
/frameworks/base/telephony/java/com/android/ims/
H A DImsConferenceState.java107 Set<Entry<String, Bundle>> entries = mParticipants.entrySet();
109 if (entries != null) {
110 Iterator<Entry<String, Bundle>> iterator = entries.iterator();
/frameworks/base/libs/common_time/
H A Dutils.h50 LogRing(const char* header, size_t entries);
H A Dutils.cpp52 LogRing::LogRing(const char* header, size_t entries) argument
53 : mSize(entries)
59 ALOGE("Failed to allocate log ring with %zu entries.", mSize);
/frameworks/base/core/java/android/preference/
H A DMultiSelectListPreference.java31 * A {@link Preference} that displays a list of entries as
73 * Sets the human-readable entries to be shown in the list. This will be
79 * @param entries The entries.
82 public void setEntries(CharSequence[] entries) { argument
83 mEntries = entries;
88 * @param entriesResId The entries array as a resource.
95 * The list of entries to be shown in the list in subsequent dialogs.
105 * 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
80 * Sets the human-readable entries to be shown in the list. This will be
86 * @param entries The entries.
89 public void setEntries(CharSequence[] entries) { argument
90 mEntries = entries;
91 mSetValues = new boolean[entries.length];
92 mOrigValues = new boolean[entries.length];
97 * @param entriesResId The entries array as a resource.
104 * The list of entries t
[all...]
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfoSource.java116 // polite and ignore missing entries.
213 Enumeration<String> apkClassNames = dexFile.entries();
244 * Gets the class and package entries from a Jar.
252 Enumeration<? extends ZipEntry> entries = zipFile.entries();
253 while (entries.hasMoreElements()) {
254 String entryName = entries.nextElement().getName();
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java29 * Given an InputStream representation of a feed, it returns a List of entries,
50 List<Entry> entries = new ArrayList<Entry>();
60 entries.add(readEntry(parser));
65 return entries;
H A DNetworkActivity.java218 List<Entry> entries = null;
236 entries = stackOverflowXmlParser.parse(stream);
245 // StackOverflowXmlParser returns a List (called "entries") of Entry objects.
247 // This section processes the entries list to combine each entry with HTML markup.
250 for (Entry entry : entries) {
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DScene.java220 ArrayList<Renderable> entries = mRenderableMeshMap.get(m.getName());
221 int numEntries = entries.size();
223 Renderable d = entries.get(i);
229 ArrayList<Renderable> entries = mRenderableMeshMap.get(d.mMeshName);
230 if (entries == null) {
231 entries = new ArrayList<Renderable>();
232 mRenderableMeshMap.put(d.mMeshName, entries);
234 entries.add(d);
/frameworks/av/include/ndk/
H A DNdkMediaExtractor.h142 PsshEntry entries[0]; member in struct:PsshInfo
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncQueue.java230 Iterator<Map.Entry<String, SyncOperation>> entries = mOperationsMap.entrySet().iterator();
231 while (entries.hasNext()) {
232 Map.Entry<String, SyncOperation> entry = entries.next();
245 entries.remove();
/frameworks/opt/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java68 * The number of extra entries requested to allow for duplicates. Duplicates
181 public final List<RecipientEntry> entries; field in class:BaseRecipientAdapter.DefaultFilterResult
187 public DefaultFilterResult(List<RecipientEntry> entries, argument
192 this.entries = entries;
250 final List<RecipientEntry> entries = constructEntryList(
257 entries, entryMap, nonAggregatedEntries,
286 if (defaultFilterResult.entries.size() == 0 &&
291 updateEntries(defaultFilterResult.entries);
323 Log.d(TAG, "More entries shoul
807 onChanged(List<RecipientEntry> entries) argument
[all...]
/frameworks/base/core/java/android/content/
H A DRestrictionsManager.java76 * android:entries="string-array resource"
89 * <li><code>entries</code> and <code>entryValues</code> are required if <code>restrictionType
591 int entries = a.getResourceId(R.styleable.RestrictionEntry_entries, 0);
607 if (entries != 0) {
608 restriction.setChoiceEntries(appContext, entries);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DHwTests.java82 Map<String, Boolean> entries = new HashMap<String, Boolean>();
102 if (entries.get(nextLabel) == null) {
105 entries.put(nextLabel, true);
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
H A DVectorDrawableTest.java81 Map<String, Boolean> entries = new HashMap<String, Boolean>();
101 if (entries.get(nextLabel) == null) {
104 entries.put(nextLabel, true);
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipUtilTest.java94 Enumeration<? extends ZipEntry> ref = zip.entries();
114 Enumeration<? extends ZipEntry> ref = zip.entries();
144 Enumeration<? extends ZipEntry> ref = zip.entries();
/frameworks/base/cmds/appops/src/com/android/commands/appops/
H A DAppOpsCommand.java227 List<AppOpsManager.OpEntry> entries = ops.get(i).getOps();
228 for (int j=0; j<entries.size(); j++) {
229 AppOpsManager.OpEntry ent = entries.get(j);
/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java78 CharSequence[] entries = a.getTextArray(R.styleable.AbsSpinner_entries);
79 if (entries != null) {
82 R.layout.simple_spinner_item, entries);
/frameworks/base/location/java/android/location/
H A DAddress.java539 Set<Map.Entry<Integer, String>> entries = mAddressLines.entrySet();
540 parcel.writeInt(entries.size());
541 for (Map.Entry<Integer, String> e : entries) {

Completed in 3435 milliseconds

123