HomeSort by relevance Sort by last modified time
    Searched refs:List (Results 201 - 225 of 1434) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharset.java 31 import java.util.List;
41 private static final List CONTAINED = Arrays.asList(new String[] {
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigInfo.java 24 import java.util.List;
55 final List<WifiConfiguration> wifiConfigs = mWifiManager.getConfiguredNetworks();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinImeLogger.java 24 import java.util.List;
41 String before, String after, int position, List<CharSequence> suggestions) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
TestSuiteReference.java 21 import java.util.List;
31 private List<TestCaseReference> mTests;
  /cts/tests/tests/net/src/android/net/cts/
ListeningPortsTest.java 22 import java.util.List;
31 private static final List<String> ADDRESS_PATTERNS = new ArrayList<String>(2);
39 private static final List<String> EXCEPTION_PATTERNS = new ArrayList<String>(6);
117 private static boolean isPatternMatch(List<String> patterns, String input) {
  /cts/tools/annotation-helper/src/spechelper/
SimpleComputer.java 26 import java.util.List;
125 public List<ICompletionProposal> computeCompletionProposals(
127 List<ICompletionProposal> ret = new Vector<ICompletionProposal>();
161 public List<ICompletionProposal> computeContextInformation(
  /cts/tools/dex-tools/src/dex/reader/
TypeFormatter.java 26 import java.util.List;
79 public String format(List<String> typeNames) {
80 List<String> types = new ArrayList<String>(typeNames.size());
91 private String format(List<?> elements, String separator) {
DexEncodedAnnotationImpl.java 26 import java.util.List;
31 private List<DexAnnotationAttribute> values;
63 public List<DexAnnotationAttribute> getValue() {
  /cts/tools/signature-tools/src/signature/model/impl/
SigWildcardType.java 23 import java.util.List;
29 private List<ITypeReference> upperBounds;
32 List<ITypeReference> upperBounds) {
41 public List<ITypeReference> getUpperBounds() {
  /development/simulator/app/
PhoneCollection.h 13 * Only one instance of this class exists. It contains a list of all
46 android::List<PhoneData> mPhoneList;
  /external/easymock/src/org/easymock/internal/
UnorderedBehavior.java 20 import java.util.List;
26 private final List<ExpectedInvocationAndResults> results = new ArrayList<ExpectedInvocationAndResults>();
42 Results list = new Results(); local
43 list.add(result, count);
44 results.add(new ExpectedInvocationAndResults(expected, list));
78 public List<ErrorMessage> getMessages(Invocation invocation) {
79 List<ErrorMessage> messages = new ArrayList<ErrorMessage>(results
  /external/guava/src/com/google/common/collect/
EmptyImmutableList.java 26 import java.util.List;
32 * An empty immutable list.
104 if (object instanceof List) {
105 List<?> that = (List<?>) object;
SingletonImmutableList.java 23 import java.util.List;
87 if (object instanceof List) {
88 List<?> that = (List<?>) object;
  /frameworks/base/core/java/com/android/internal/appwidget/
IAppWidgetService.aidl 31 out List<RemoteViews> updatedViews);
44 List<AppWidgetProviderInfo> getInstalledProviders();
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBarService.aidl 37 out List<IBinder> notificationKeys, out List<StatusBarNotification> notifications);
  /frameworks/base/media/libstagefright/rtsp/
AAMRAssembler.h 23 #include <utils/List.h>
  /frameworks/base/services/surfaceflinger/
MessageQueue.h 26 #include <utils/List.h>
38 List< sp<MessageBase> > mList;
39 typedef List< sp<MessageBase> > LIST;
41 inline LIST::iterator begin() { return mList.begin(); }
42 inline LIST::const_iterator begin() const { return mList.begin(); }
43 inline LIST::iterator end() { return mList.end(); }
44 inline LIST::const_iterator end() const { return mList.end(); }
47 void remove(LIST::iterator pos);
90 typedef List< sp<MessageBase> > LIST
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephony.aidl 20 import java.util.List;
211 List<NeighboringCellInfo> getNeighboringCellInfo();
  /frameworks/base/tools/preload/
LoadedClass.java 31 final List<Operation> loads = new ArrayList<Operation>();
34 final List<Operation> initializations = new ArrayList<Operation>();
83 /** Calculates the median duration for a list of operations. */
84 private static int calculateMedian(List<Operation> operations) {
114 private void addProcessNames(List<Operation> ops, Set<String> names) {
  /libcore/luni/src/test/java/tests/xml/
NodeTest.java 32 import java.util.List;
77 private List<Node> flattenSubtree(Node subtree) {
78 List<Node> result = new ArrayList<Node>();
83 private void traverse(Node node, List<Node> sink) {
  /packages/apps/Tag/src/com/android/apps/tag/message/
NdefMessageParser.java 32 import java.util.List;
47 public static List<ParsedNdefRecord> getRecords(NdefMessage message) {
51 public static List<ParsedNdefRecord> getRecords(NdefRecord[] records) {
52 List<ParsedNdefRecord> elements = new ArrayList<ParsedNdefRecord>();
  /packages/inputmethods/PinyinIME/lib/com/android/inputmethod/pinyin/
IPinyinDecoderService.aidl 32 List<String> imGetChoiceList(int choicesStart, int choicesNum, int sentFixedLen);
39 List<String> imGetPredictList(int predictsStart, int predictsNum);
  /system/core/include/sysutils/
SocketClient.h 4 #include "../../../frameworks/base/include/utils/List.h"
35 typedef android::List<SocketClient *> SocketClientCollection;
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ParameterizedTypeProjection.java 25 import java.util.List;
65 private List<ITypeReference> arguments = null;
67 public List<ITypeReference> getTypeArguments() {
  /cts/tools/signature-tools/src/signature/model/util/
ITypeFactory.java 29 import java.util.List;
65 IClassReference rawType, List<ITypeReference> typeArguments);
101 List<ITypeReference> upperBounds);

Completed in 1638 milliseconds

1 2 3 4 5 6 7 891011>>