HomeSort by relevance Sort by last modified time
    Searched refs:ArrayList (Results 501 - 525 of 3324) sorted by null

<<21222324252627282930>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodereplacechildnewchildexists.java 73 java.util.List actual = new java.util.ArrayList();
75 java.util.List expected = new java.util.ArrayList();
77 java.util.List expectedWithoutWhitespace = new java.util.ArrayList();
84 java.util.List expectedWithWhitespace = new java.util.ArrayList();
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifData.java 23 import java.util.ArrayList;
48 private ArrayList<byte[]> mStripBytes = new ArrayList<byte[]>();
256 ArrayList<ExifTag> ret = new ArrayList<ExifTag>();
286 ArrayList<ExifTag> ret = new ArrayList<ExifTag>(tags.length);
301 ArrayList<ExifTag> ret = new ArrayList<ExifTag>();
  /packages/apps/Gallery2/src/com/android/camera/
ListPreference.java 28 import java.util.ArrayList;
169 ArrayList<CharSequence> entries = new ArrayList<CharSequence>();
170 ArrayList<CharSequence> entryValues = new ArrayList<CharSequence>();
183 ArrayList<CharSequence> entries = new ArrayList<CharSequence>();
184 ArrayList<CharSequence> entryValues = new ArrayList<CharSequence>();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMergeAlbum.java 25 import java.util.ArrayList;
73 ArrayList<MediaSet> matches = new ArrayList<MediaSet>();
120 public ArrayList<MediaItem> getMediaItem(int start, int count) {
135 ArrayList<MediaItem> result = new ArrayList<MediaItem>();
215 private SoftReference<ArrayList<MediaItem>> mCacheRef;
228 ArrayList<MediaItem> cache = null;
241 mCacheRef = new SoftReference<ArrayList<MediaItem>>(cache);
TimeClustering.java 26 import java.util.ArrayList;
71 private ArrayList<Cluster> mClusters;
95 mClusters = new ArrayList<Cluster>();
119 ArrayList<SmallItem> items = new ArrayList<SmallItem>(total);
163 public ArrayList<Path> getCluster(int index) {
164 ArrayList<SmallItem> items = mClusters.get(index).getItems();
165 ArrayList<Path> result = new ArrayList<Path>(items.size());
249 ArrayList<SmallItem> currClusterItems = mCurrCluster.getItems()
    [all...]
  /packages/apps/Settings/src/com/android/settings/
AccountPreference.java 19 import java.util.ArrayList;
41 private ArrayList<String> mAuthorities;
46 ArrayList<String> authorities, boolean showTypeIcon) {
66 public ArrayList<String> getAuthorities() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryCollection.java 24 import java.util.ArrayList;
58 public ArrayList<SuggestedWordInfo> getSuggestions(final WordComposer composer,
65 ArrayList<SuggestedWordInfo> suggestions = dictionaries.get(0).getSuggestions(composer,
70 final ArrayList<SuggestedWordInfo> sugg = dictionaries.get(i).getSuggestions(composer,
  /packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/makedict/
FusionDictionaryTest.java 27 import java.util.ArrayList;
35 private static final ArrayList<String> sWords = new ArrayList<String>();
70 private void checkDictionary(final FusionDictionary dict, final ArrayList<String> words,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
ComposingText.java 20 import java.util.ArrayList;
61 protected ArrayList<StrSegment>[] mStringLayer;
69 mStringLayer = new ArrayList[MAX_LAYER];
72 mStringLayer[i] = new ArrayList<StrSegment>();
103 ArrayList<StrSegment> strLayer = mStringLayer[layer];
127 ArrayList<StrSegment> strLayer = mStringLayer[layer];
164 ArrayList<StrSegment> strUplayer = mStringLayer[uplayer];
286 ArrayList<StrSegment> strLayer = mStringLayer[i];
309 ArrayList<StrSegment> strLayer = mStringLayer[layer];
363 ArrayList<StrSegment> strLayer2 = mStringLayer[2]
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 37 private HashMap<String, ArrayList<WnnWord>> mIndepWordBag;
39 private HashMap<String, ArrayList<WnnWord>> mAllIndepWordBag;
41 private HashMap<String, ArrayList<WnnWord>> mFzkPatterns;
74 mIndepWordBag = new HashMap<String, ArrayList<WnnWord>>();
75 mAllIndepWordBag = new HashMap<String, ArrayList<WnnWord>>();
260 ArrayList<WnnWord> stems = getIndependentWords(input, all);
276 ArrayList<WnnWord> fzks = getAncillaryPattern(str);
397 private ArrayList<WnnWord> getAncillaryPattern(String input) {
402 HashMap<String,ArrayList<WnnWord>> fzkPat = mFzkPatterns;
403 ArrayList<WnnWord> fzks = fzkPat.get(input)
    [all...]
  /external/doclava/src/com/google/doclava/
Comment.java 21 import java.util.ArrayList;
409 ArrayList<TagInfo> results = new ArrayList<TagInfo>();
561 ArrayList<TagInfo> mInlineTagsList = new ArrayList<TagInfo>();
562 ArrayList<TagInfo> mTagsList = new ArrayList<TagInfo>();
563 ArrayList<ParamTagInfo> mParamTagsList = new ArrayList<ParamTagInfo>();
564 ArrayList<SeeTagInfo> mSeeTagsList = new ArrayList<SeeTagInfo>()
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
PerformanceCollectorTest.java 24 import java.util.ArrayList;
73 verifyTimingBundle(measurement, new ArrayList<String>());
95 ArrayList<String> labels = new ArrayList<String>();
140 verifyTimingBundle(measurement, new ArrayList<String>());
162 ArrayList<String> labels = new ArrayList<String>();
255 ArrayList<String> labels = new ArrayList<String>();
319 ArrayList<String> labels1 = new ArrayList<String>()
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CollectionsTest.java 24 import java.util.ArrayList;
107 ArrayList normalCountingList;
109 ArrayList offsetCountingList;
136 normalCountingList = new ArrayList(colSize);
137 offsetCountingList = new ArrayList(colSize);
353 ArrayList al = new ArrayList();
373 ArrayList a1 = new ArrayList();
377 ArrayList a2 = new ArrayList()
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ScriptGroup.java 20 import java.util.ArrayList;
79 ArrayList<Script.KernelID> mKernels = new ArrayList<Script.KernelID>();
80 ArrayList<ConnectLine> mInputs = new ArrayList<ConnectLine>();
81 ArrayList<ConnectLine> mOutputs = new ArrayList<ConnectLine>();
171 private ArrayList<Node> mNodes = new ArrayList<Node>();
172 private ArrayList<ConnectLine> mLines = new ArrayList<ConnectLine>()
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptGroup.java 20 import java.util.ArrayList;
80 ArrayList<Script.KernelID> mKernels = new ArrayList<Script.KernelID>();
81 ArrayList<ConnectLine> mInputs = new ArrayList<ConnectLine>();
82 ArrayList<ConnectLine> mOutputs = new ArrayList<ConnectLine>();
172 private ArrayList<Node> mNodes = new ArrayList<Node>();
173 private ArrayList<ConnectLine> mLines = new ArrayList<ConnectLine>()
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/event/
EditEventHelperTest.java 46 import java.util.ArrayList;
155 ArrayList<ContentProviderOperation> cpo, long delayMillis) {
194 ArrayList<ContentProviderOperation> operations) {
240 private void addOwnerAttendeeToOps(ArrayList<ContentProviderOperation> expectedOps, int id) {
248 private void addOwnerAttendeeToOps(ArrayList<ContentProviderOperation> expectedOps) {
265 private void addAttendeeChangesOps(ArrayList<ContentProviderOperation> expectedOps) {
297 private void addTestAttendees(ArrayList<ContentProviderOperation> ops,
401 private boolean verifySaveEventNewEvent(ArrayList<ContentProviderOperation> ops) {
402 ArrayList<ContentProviderOperation> expectedOps = new ArrayList<ContentProviderOperation>()
    [all...]
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 37 import java.util.ArrayList;
102 ArrayList<Long> ids = new ArrayList<Long>();
103 ArrayList<Long> deletedIds = new ArrayList<Long>();
174 ArrayList<Long> setupAccountMailboxAndMessages(int numMessages) {
175 ArrayList<Long> ids = new ArrayList<Long>();
195 ArrayList<Long> messageIds = setupAccountMailboxAndMessages(3);
213 ArrayList<Long> deleteList = new ArrayList<Long>()
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 37 import java.util.ArrayList;
102 ArrayList<Long> ids = new ArrayList<Long>();
103 ArrayList<Long> deletedIds = new ArrayList<Long>();
174 ArrayList<Long> setupAccountMailboxAndMessages(int numMessages) {
175 ArrayList<Long> ids = new ArrayList<Long>();
195 ArrayList<Long> messageIds = setupAccountMailboxAndMessages(3);
213 ArrayList<Long> deleteList = new ArrayList<Long>()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
LayoutDescriptors.java 47 import java.util.ArrayList;
138 ArrayList<ViewElementDescriptor> newViews = new ArrayList<ViewElementDescriptor>(40);
151 List<ViewElementDescriptor> newLayouts = new ArrayList<ViewElementDescriptor>(30);
169 List<ElementDescriptor> newDescriptors = new ArrayList<ElementDescriptor>(80);
236 ArrayList<AttributeDescriptor> attributes = new ArrayList<AttributeDescriptor>(120);
259 List<String> attributeSources = new ArrayList<String>();
280 ArrayList<AttributeDescriptor> layoutAttributes = new ArrayList<AttributeDescriptor>()
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsManagerTest.java 34 import java.util.ArrayList;
202 ArrayList<String> dividedMessages = divideMessage(LONG_TEXT);
285 ArrayList<String> parts = divideMessage(LONG_TEXT);
287 ArrayList<PendingIntent> sentIntents = new ArrayList<PendingIntent>();
288 ArrayList<PendingIntent> deliveryIntents = new ArrayList<PendingIntent>();
319 protected ArrayList<String> divideMessage(String text) {
327 protected void sendMultiPartTextMessage(String destAddr, ArrayList<String> parts,
328 ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 26 import java.util.ArrayList;
50 private final ArrayList<LocalsArray> secondaries;
62 secondaries = new ArrayList();
73 ArrayList<LocalsArray> secondaries) {
89 secondaries = new ArrayList(toCopy.secondaries.size());
261 ArrayList<LocalsArray> newSecondaries;
269 newSecondaries = new ArrayList(sz);
312 ArrayList<LocalsArray> newSecondaries;
316 newSecondaries = new ArrayList(secondaries.size());
412 ArrayList<LocalsArray> newSecondaries = new ArrayList(sz)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java 40 import java.util.ArrayList;
316 protected ArrayList<ByteBuffer> data;
344 clone.data = data != null ? new ArrayList<ByteBuffer>(data) : null;
355 data = new ArrayList<ByteBuffer>(1);
377 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data,
422 this.data = new ArrayList<ByteBuffer>(1);
441 public Image(Format format, int width, int height, int depth, ArrayList<ByteBuffer> data) {
495 public void setData(ArrayList<ByteBuffer> data) {
508 this.data = new ArrayList<ByteBuffer>(1);
515 this.data = new ArrayList<ByteBuffer>(1)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/h264/
AvcConfigurationBox.java 31 import java.util.ArrayList;
193 public List<byte[]> sequenceParameterSets = new ArrayList<byte[]>();
194 public List<byte[]> pictureParameterSets = new ArrayList<byte[]>();
200 public List<byte[]> sequenceParameterSetExts = new ArrayList<byte[]>();
324 ArrayList<String> l = new ArrayList<String>();
339 ArrayList<String> l = new ArrayList<String>();
353 List <String> result = new ArrayList<String>(sequenceParameterSets.size());
361 List <String> result = new ArrayList<String>(sequenceParameterSetExts.size())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
GlobalProjectMonitor.java 44 import java.util.ArrayList;
198 private final ArrayList<FileListenerBundle> mFileListeners =
199 new ArrayList<FileListenerBundle>();
201 private final ArrayList<FolderListenerBundle> mFolderListeners =
202 new ArrayList<FolderListenerBundle>();
204 private final ArrayList<IProjectListener> mProjectListeners = new ArrayList<IProjectListener>();
206 private final ArrayList<IResourceEventListener> mEventListeners =
207 new ArrayList<IResourceEventListener>();
209 private final ArrayList<IRawDeltaListener> mRawDeltaListeners
    [all...]
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberMatcherTest.java 22 import java.util.ArrayList;
239 ArrayList<NumberContext> possibleOnlyContexts = new ArrayList<NumberContext>();
254 ArrayList<NumberContext> possibleOnlyContexts = new ArrayList<NumberContext>();
263 ArrayList<NumberContext> possibleOnlyContexts = new ArrayList<NumberContext>();
272 ArrayList<NumberContext> contexts = new ArrayList<NumberContext>();
281 ArrayList<NumberContext> possibleOnlyContexts = new ArrayList<NumberContext>()
    [all...]

Completed in 1026 milliseconds

<<21222324252627282930>>