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

12

/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/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.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/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/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/base/services/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 %u entries.", mSize);
/frameworks/native/opengl/libs/tools/
H A Dgenfiles47 > ../entries.in
49 ./gltracegen ../entries.in >../trace.in
/frameworks/base/core/java/android/preference/
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...]
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 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...]
/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/base/services/java/com/android/server/content/
H A DSyncQueue.java191 Iterator<Map.Entry<String, SyncOperation>> entries = mOperationsMap.entrySet().iterator();
192 while (entries.hasNext()) {
193 Map.Entry<String, SyncOperation> entry = entries.next();
204 entries.remove();
/frameworks/ex/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java76 * The number of extra entries requested to allow for duplicates. Duplicates
196 public final List<RecipientEntry> entries; field in class:BaseRecipientAdapter.DefaultFilterResult
202 public DefaultFilterResult(List<RecipientEntry> entries, argument
207 this.entries = entries;
264 final List<RecipientEntry> entries = constructEntryList(
273 Log.d(TAG, "More entries should be needed (current: "
287 entries, entryMap, nonAggregatedEntries,
319 if (defaultFilterResult.entries.size() == 0 &&
324 updateEntries(defaultFilterResult.entries);
754 onChanged(List<RecipientEntry> entries) argument
[all...]
H A DRecipientAlternatesAdapter.java135 // See if any entries did not resolve; if so, we need to check other
185 final Map<String, RecipientEntry> entries =
188 for (final String address : entries.keySet()) {
192 callback.matchesFound(entries);
205 final Map<String, RecipientEntry> entries =
207 if (entries != null && entries.size() > 0) {
208 callback.matchesFound(entries);
209 for (final String address : entries.keySet()) {
/frameworks/base/core/java/android/os/
H A DRecoverySystem.java105 Enumeration<? extends ZipEntry> entries = zip.entries();
106 while (entries.hasMoreElements()) {
107 ZipEntry entry = entries.nextElement();
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java215 Enumeration<? extends ZipEntry> entries = zip.entries();
217 while (entries.hasMoreElements()) {
218 entry = entries.nextElement();
/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/core/java/android/widget/
H A DAbsSpinner.java74 CharSequence[] entries = a.getTextArray(R.styleable.AbsSpinner_entries);
75 if (entries != null) {
78 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) {
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A DVCardEntryTests.java132 List<VCardEntry> entries = entryHandler.getEntries();
133 assertEquals(2, entries.size());
134 VCardEntry parent = entries.get(1);
135 VCardEntry child = entries.get(0);
/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DClassPathScanner.java31 * Finds class entries in apks.
165 * Gets the names of all entries contained in given apk file, that match given filter.
196 return dexFile.entries();
200 * Retrieves set of classpath entries that match given {@link ClassNameFilter}.

Completed in 1001 milliseconds

12