/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
BluetoothMapSettingsAdapter.java | 18 import java.util.ArrayList; 58 ArrayList<Boolean> mPositionArray; 60 ArrayList<BluetoothMapAccountItem>> mProupList; 61 private ArrayList<BluetoothMapAccountItem> mMainGroup; 70 ArrayList<BluetoothMapAccountItem>> groupsList, 87 mMainGroup = new ArrayList<BluetoothMapAccountItem>(); 89 ArrayList<BluetoothMapAccountItem>> mapEntry : mProupList.entrySet()) { 99 private ArrayList<BluetoothMapAccountItem> getChild(BluetoothMapAccountItem group) { 134 ArrayList<BluetoothMapAccountItem> childList = getChild(parentGroup); 259 ArrayList<BluetoothMapAccountItem> childItem = getChild(groupItem) [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
ManagedProfileHeuristic.java | 42 import java.util.ArrayList; 87 private ArrayList<ShortcutInfo> mHomescreenApps; 88 private ArrayList<ShortcutInfo> mWorkFolderApps; 106 mHomescreenApps = new ArrayList<>(); 107 mWorkFolderApps = new ArrayList<>(); 141 ArrayList<ShortcutInfo> targetList = 149 private void sortList(ArrayList<ShortcutInfo> infos) { 184 final ArrayList<ShortcutInfo> shortcuts = mWorkFolderApps; 207 ArrayList<ItemInfo> itemList = new ArrayList<ItemInfo>(1) [all...] |
/frameworks/base/core/java/android/gesture/ |
GestureOverlayView.java | 36 import java.util.ArrayList; 107 private final ArrayList<GesturePoint> mStrokeBuffer = new ArrayList<GesturePoint>(100); 110 private final ArrayList<OnGestureListener> mOnGestureListeners = 111 new ArrayList<OnGestureListener>(); 113 private final ArrayList<OnGesturePerformedListener> mOnGesturePerformedListeners = 114 new ArrayList<OnGesturePerformedListener>(); 116 private final ArrayList<OnGesturingListener> mOnGesturingListeners = 117 new ArrayList<OnGesturingListener>(); 196 public ArrayList<GesturePoint> getCurrentStroke() [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ |
EventBus.java | 39 import java.util.ArrayList; 394 private HashMap<Class<? extends Event>, ArrayList<EventHandler>> mEventTypeMap = new HashMap<>(); 401 private HashMap<Class<? extends Object>, ArrayList<EventHandlerMethod>> mSubscriberTypeMap = new HashMap<>(); 413 private ArrayList<Subscriber> mSubscribers = new ArrayList<>(); 525 ArrayList<EventHandlerMethod> subscriberMethods = mSubscriberTypeMap.get(subscriberType); 530 ArrayList<EventHandler> eventHandlers = mEventTypeMap.get(method.eventType); 667 ArrayList<Class<?>> subsciberTypes = new ArrayList<>(mSubscriberTypeMap.keySet()); 683 ArrayList<Class<?>> classes = new ArrayList<>(mEventTypeMap.keySet()) [all...] |
/packages/apps/Nfc/src/com/android/nfc/cardemulation/ |
RegisteredServicesCache.java | 53 import java.util.ArrayList; 172 void dump(ArrayList<ApduServiceInfo> services) { 178 boolean containsServiceLocked(ArrayList<ApduServiceInfo> services, ComponentName serviceName) { 197 final ArrayList<ApduServiceInfo> services = new ArrayList<ApduServiceInfo>(); 206 final ArrayList<ApduServiceInfo> services = new ArrayList<ApduServiceInfo>(); 216 ArrayList<ApduServiceInfo> getInstalledServices(int userId) { 226 ArrayList<ApduServiceInfo> validServices = new ArrayList<ApduServiceInfo>() [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntityDelta.java | 37 import java.util.ArrayList; 71 private HashMap<String, ArrayList<ValuesDelta>> mEntries = Maps.newHashMap(); 120 for (ArrayList<ValuesDelta> mimeEntries : remote.mEntries.values()) { 151 final ArrayList<ValuesDelta> mimeEntries = getMimeEntries(mimeType, false); 179 final ArrayList<ValuesDelta> mimeEntries = getMimeEntries(mimeType, false); 206 private ArrayList<ValuesDelta> getMimeEntries(String mimeType, boolean lazyCreate) { 207 ArrayList<ValuesDelta> mimeEntries = mEntries.get(mimeType); 215 public ArrayList<ValuesDelta> getMimeEntries(String mimeType) { 220 final ArrayList<ValuesDelta> mimeEntries = getMimeEntries(mimeType); 252 for (ArrayList<ValuesDelta> mimeEntries : mEntries.values()) [all...] |
/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
ArithOpChanger.java | 28 import java.util.ArrayList; 82 arithmeticInsns = new ArrayList<MInsn>(); 173 private static List<Opcode> intOpcodes = new ArrayList<Opcode>(); 174 private static List<Opcode> int2addrOpcodes = new ArrayList<Opcode>(); 175 private static List<Opcode> longOpcodes = new ArrayList<Opcode>(); 176 private static List<Opcode> long2addrOpcodes = new ArrayList<Opcode>(); 177 private static List<Opcode> floatOpcodes = new ArrayList<Opcode>(); 178 private static List<Opcode> float2addrOpcodes = new ArrayList<Opcode>(); 179 private static List<Opcode> doubleOpcodes = new ArrayList<Opcode>(); 180 private static List<Opcode> double2addrOpcodes = new ArrayList<Opcode>() [all...] |
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
MetaData.java | 21 import java.util.ArrayList; 50 protected final List<WebDescriptor> _webOverrideRoots=new ArrayList<WebDescriptor>(); 52 protected final List<DiscoveredAnnotation> _annotations = new ArrayList<DiscoveredAnnotation>(); 53 protected final List<DescriptorProcessor> _descriptorProcessors = new ArrayList<DescriptorProcessor>(); 54 protected final List<FragmentDescriptor> _webFragmentRoots = new ArrayList<FragmentDescriptor>(); 58 protected final List<Resource> _webInfJars = new ArrayList<Resource>(); 59 protected final List<Resource> _orderedWebInfJars = new ArrayList<Resource>(); 60 protected final List<Resource> _orderedContainerJars = new ArrayList<Resource>(); 293 list = new ArrayList<DiscoveredAnnotation>(); 305 list = new ArrayList<DiscoveredAnnotation>() [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowApplication.java | 25 import java.util.ArrayList; 74 private List<Intent> startedActivities = new ArrayList<Intent>(); 75 private List<Intent> startedServices = new ArrayList<Intent>(); 76 private List<Intent> stoppedServies = new ArrayList<Intent>(); 77 private List<Intent> broadcastIntents = new ArrayList<Intent>(); 78 private List<ServiceConnection> unboundServiceConnections = new ArrayList<ServiceConnection>(); 79 private List<Wrapper> registeredReceivers = new ArrayList<Wrapper>(); 85 private ArrayList<Toast> shownToasts = new ArrayList<Toast>(); 97 private List<String> unbindableActions = new ArrayList<String>() [all...] |
/packages/apps/Settings/src/com/android/settings/applications/ |
ProcStatsEntry.java | 31 import java.util.ArrayList; 43 final ArrayList<String> mPackages = new ArrayList<String>(); 55 ArrayMap<String, ArrayList<Service>> mServices = new ArrayMap<String, ArrayList<Service>>(1); 109 ArrayList<Service> value = new ArrayList<Service>(); 141 ArrayList<ProcStatsEntry> subProcs = new ArrayList<>(); 220 ArrayList<Service> subProcServices = null [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
Suggest.java | 34 import java.util.ArrayList; 113 private static ArrayList<SuggestedWordInfo> getTransformedSuggestedWordInfoList( 121 final ArrayList<SuggestedWordInfo> suggestionsContainer = new ArrayList<>(results); 139 @Nonnull final ArrayList<SuggestedWordInfo> suggestions) { 168 final ArrayList<SuggestedWordInfo> suggestionsContainer = 261 final ArrayList<SuggestedWordInfo> suggestionsList; 299 final ArrayList<SuggestedWordInfo> suggestionsContainer = 300 new ArrayList<>(suggestionResults); 348 private static ArrayList<SuggestedWordInfo> getSuggestionsInfoListWithDebugInfo [all...] |
/frameworks/base/core/java/android/transition/ |
Transition.java | 46 import java.util.ArrayList; 181 ArrayList<Integer> mTargetIds = new ArrayList<Integer>(); 182 ArrayList<View> mTargets = new ArrayList<View>(); 183 ArrayList<String> mTargetNames = null; 184 ArrayList<Class> mTargetTypes = null; 185 ArrayList<Integer> mTargetIdExcludes = null; 186 ArrayList<View> mTargetExcludes = null; 187 ArrayList<Class> mTargetTypeExcludes = null [all...] |
/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
LambdaTestHelpers.java | 73 List<Integer> l = new ArrayList<>(); 118 List<Character> l = new ArrayList<>(); 143 ArrayList<Integer> list = new ArrayList<>(); 153 ArrayList<Integer> list = new ArrayList<>(u - l + 1); 161 ArrayList<Integer> list = new ArrayList<>(n); 169 ArrayList<Double> list = new ArrayList<>(); [all...] |
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
LambdaTestHelpers.java | 74 List<Integer> l = new ArrayList<>(); 119 List<Character> l = new ArrayList<>(); 144 ArrayList<Integer> list = new ArrayList<>(); 154 ArrayList<Integer> list = new ArrayList<>(u - l + 1); 162 ArrayList<Integer> list = new ArrayList<>(n); 170 ArrayList<Double> list = new ArrayList<>(); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/ |
AndroidTargetParser.java | 48 import java.util.ArrayList; 116 ArrayList<String> activity_actions = new ArrayList<String>(); 117 ArrayList<String> broadcast_actions = new ArrayList<String>(); 118 ArrayList<String> service_actions = new ArrayList<String>(); 119 ArrayList<String> categories = new ArrayList<String>(); 146 Collection<ViewClassInfo> mainList = new ArrayList<ViewClassInfo>() [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
FrameMetricsListenerTest.java | 38 import java.util.ArrayList; 71 final ArrayList<FrameMetrics> data = new ArrayList<>(); 132 final ArrayList<FrameMetrics> data1 = new ArrayList<>(); 146 final ArrayList<FrameMetrics> data2 = new ArrayList<>();
|
/dalvik/dx/src/com/android/dx/ssa/ |
PhiInsn.java | 28 import java.util.ArrayList; 48 private final ArrayList<Operand> operands = new ArrayList<Operand>(); 147 ArrayList<Operand> operandsToRemove = new ArrayList<Operand>(); 301 ArrayList<SsaBasicBlock> ret = new ArrayList<SsaBasicBlock>();
|
/external/apache-http/src/org/apache/http/protocol/ |
BasicHttpProcessor.java | 35 import java.util.ArrayList; 74 this.requestInterceptors = new ArrayList(); 93 this.requestInterceptors = new ArrayList(); 112 this.responseInterceptors = new ArrayList(); 194 this.responseInterceptors = new ArrayList(); 317 new ArrayList(this.requestInterceptors); 321 new ArrayList(this.responseInterceptors);
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
CMSSignedHelper.java | 3 import java.util.ArrayList; 170 List certList = new ArrayList(certSet.size()); 185 return new CollectionStore(new ArrayList()); 192 List certList = new ArrayList(certSet.size()); 207 return new CollectionStore(new ArrayList()); 214 List crlList = new ArrayList(crlSet.size()); 229 return new CollectionStore(new ArrayList()); 236 // List crlList = new ArrayList(crlSet.size()); 261 // return new CollectionStore(new ArrayList());
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
PhiInsn.java | 24 import java.util.ArrayList; 44 private final ArrayList<Operand> operands = new ArrayList<Operand>(); 143 ArrayList<Operand> operandsToRemove = new ArrayList<Operand>(); 297 ArrayList<SsaBasicBlock> ret = new ArrayList<SsaBasicBlock>();
|
/external/jcommander/src/test/java/com/beust/jcommander/ |
ParametersDelegateTest.java | 6 import java.util.ArrayList; 69 public List<String> list = new ArrayList<String>() {{ 111 Assert.assertEquals(p.nestedDelegate2.nestedDelegate1.leafDelegate.list, new ArrayList<String>() {{ 146 public List<String> mainParams = new ArrayList<String>(); 159 Assert.assertEquals(c.delegate.mainParams, new ArrayList<String>() {{ 203 public List<String> mainParams1 = new ArrayList<String>(); 207 public List<String> mainParams2 = new ArrayList<String>();
|
/frameworks/base/core/java/android/app/ |
Application.java | 19 import java.util.ArrayList; 48 private ArrayList<ComponentCallbacks> mComponentCallbacks = 49 new ArrayList<ComponentCallbacks>(); 50 private ArrayList<ActivityLifecycleCallbacks> mActivityLifecycleCallbacks = 51 new ArrayList<ActivityLifecycleCallbacks>(); 52 private ArrayList<OnProvideAssistDataListener> mAssistCallbacks = null; 169 mAssistCallbacks = new ArrayList<OnProvideAssistDataListener>();
|
/frameworks/base/core/java/android/widget/ |
SimpleAdapter.java | 29 import java.util.ArrayList; 35 * backing the list as an ArrayList of Maps. Each entry in the ArrayList corresponds to one row 70 private ArrayList<Map<String, ?>> mUnfilteredData; 366 mUnfilteredData = new ArrayList<Map<String, ?>>(mData); 370 ArrayList<Map<String, ?>> list = mUnfilteredData; 376 ArrayList<Map<String, ?>> unfilteredValues = mUnfilteredData; 379 ArrayList<Map<String, ?>> newValues = new ArrayList<Map<String, ?>>(count);
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
RippleComponent.java | 27 import java.util.ArrayList; 297 private final ArrayList<RenderNodeAnimator> mAnimators = new ArrayList<>(); 312 final ArrayList<RenderNodeAnimator> animators = mAnimators; 322 final ArrayList<RenderNodeAnimator> animators = mAnimators; 331 final ArrayList<RenderNodeAnimator> animators = mAnimators; 340 final ArrayList<RenderNodeAnimator> animators = mAnimators;
|
/frameworks/base/media/java/android/media/audiopolicy/ |
AudioPolicyConfig.java | 27 import java.util.ArrayList; 38 protected ArrayList<AudioMix> mMixes; 47 AudioPolicyConfig(ArrayList<AudioMix> mixes) { 64 public ArrayList<AudioMix> getMixes() { 94 final ArrayList<AudioMixMatchCriterion> criteria = mix.getRule().getCriteria(); 103 mMixes = new ArrayList<AudioMix>(); 160 final ArrayList<AudioMixMatchCriterion> criteria = mix.getRule().getCriteria();
|