HomeSort by relevance Sort by last modified time
    Searched refs:List (Results 1 - 25 of 4360) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/ADT/
ilistTest.cpp 29 ilist<Node> List;
30 List.push_back(Node(1));
31 EXPECT_EQ(1, List.back().Value);
32 EXPECT_EQ(0, List.back().getPrevNode());
33 EXPECT_EQ(0, List.back().getNextNode());
35 List.push_back(Node(2));
36 EXPECT_EQ(2, List.back().Value);
37 EXPECT_EQ(2, List.front().getNextNode()->Value);
38 EXPECT_EQ(1, List.back().getPrevNode()->Value);
40 const ilist<Node> &ConstList = List;
    [all...]
  /cts/tools/dex-tools/src/dex/structure/
DexClass.java 19 import java.util.List;
27 * Returns a list containing the names of all implemented interfaces.
29 * @return a list containing the names of all implemented interfaces
31 List<String> getInterfaces();
41 * Returns a list containing all fields declared by this {@code DexClass}.
43 * @return a list containing all fields declared by this {@code DexClass}
45 List<DexField> getFields();
48 * Returns a list containing all methods declared by this {@code DexClass}.
50 * @return a list containing all methods declared by this {@code DexClass}
52 List<DexMethod> getMethods()
    [all...]
DexFile.java 20 import java.util.List;
28 * Returns a list of {@code DexClass} elements that are part of this {@code
31 * @return a list of {@code DexClass} elements that are part of this {@code
34 public List<DexClass> getDefinedClasses();
DexEncodedAnnotation.java 19 import java.util.List;
24 List<DexAnnotationAttribute> getValue();
DexMethod.java 19 import java.util.List;
27 * Returns a list of strings representing the types of the parameters of
30 * @return a list of strings representing the types of the parameters of
33 public List<DexParameter> getParameters();
  /external/proguard/src/proguard/
Configuration.java 24 import java.util.List;
40 * A list of input and output entries (jars, wars, ears, zips, and directories).
45 * A list of library entries (jars, wars, ears, zips, and directories).
62 * A list of <code>String</code>s specifying directories to be kept in
63 * the output directories or the output jars. A <code>null</code> list
64 * means no directories. An empty list means all directories. The directory
68 public List keepDirectories;
90 * A list of {@link KeepClassSpecification} instances, whose class names and
94 public List keep;
118 * A list of {@link ClassSpecification} instances, for which an explanatio
    [all...]
ClassPathEntry.java 24 import java.util.List;
39 private List filter;
40 private List jarFilter;
41 private List warFilter;
42 private List earFilter;
43 private List zipFilter;
96 public List getFilter()
101 public void setFilter(List filter)
107 public List getJarFilter()
112 public void setJarFilter(List filter
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
LazyStringList.java 10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
33 import java.util.List;
36 * An interface extending {@code List<String>} that also provides access to the
37 * items of the list as UTF8-encoded ByteString objects. This is used by the
46 * attempting to support the functionality of say {@code List<ByteString>}, hence
51 public interface LazyStringList extends List<String> {
54 * Returns the element at the specified position in this list as a ByteString.
57 * @return the element at the specified position in this list
64 * Appends the specified element to the end of this list (optiona
    [all...]
  /external/mockito/src/org/mockito/internal/stubbing/
InvocationContainer.java 9 import java.util.List;
13 List<Invocation> getInvocations();
15 List<StubbedInvocationMatcher> getStubbedInvocations();
  /cts/tools/signature-tools/src/signature/model/
IGenericDeclaration.java 19 import java.util.List;
28 * Returns a list of all defined type variables on this generic declaration.
30 * @return a list of all defined type variables
32 List<ITypeVariableDefinition> getTypeParameters();
IParameterizedType.java 19 import java.util.List;
42 List<ITypeReference> getTypeArguments();
ITypeVariableDefinition.java 19 import java.util.List;
33 List<ITypeReference> getUpperBounds();
IWildcardType.java 19 import java.util.List;
33 List<ITypeReference> getUpperBounds();
IPackage.java 19 import java.util.List;
35 * Returns a list containing each package fragment.
37 * If {@link #getName()} returns : "a.b.c" this method returns a list
42 * @return a list containing each package fragment
44 List<String> getPackageFragments();
  /external/junit/src/org/junit/experimental/theories/
ParameterSupplier.java 3 import java.util.List;
7 public abstract List<PotentialAssignment> getValueSources(ParameterSignature sig);
  /external/smack/src/org/jivesoftware/smack/util/dns/
DNSResolver.java 18 import java.util.List;
27 * Gets a list of service records for the specified service.
29 * @return The list of SRV records mapped to the service name.
31 List<SRVRecord> lookupSRVRecords(String name);
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFunction.java 21 import java.util.List;
48 public Object evaluate(List args)
  /libcore/luni/src/main/java/java/net/
CookieStore.java 19 import java.util.List;
59 * @return an immutable list of HttpCookies, return empty list if no cookies
64 List<HttpCookie> get(URI uri);
69 * @return an empty list if there's no http cookie in store, or an immutable
70 * list of cookies
72 List<HttpCookie> getCookies();
78 * @return zero-length list if no cookie in the store is associated with any
79 * URIs, otherwise an immutable list of URIs.
81 List<URI> getURIs()
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
NodeInformationProvider.java 27 import java.util.List;
42 * Returns a list of the Items {@link org.jivesoftware.smackx.packet.DiscoverItems.Item}
46 * @return a list of the Items defined in the node.
48 List<DiscoverItems.Item> getNodeItems();
51 * Returns a list of the features defined in the node. For
56 * @return a list of the feature strings defined in the node.
58 List<String> getNodeFeatures();
61 * Returns a list of the indentites defined in the node. For
65 * @return a list of the Identities defined in the node.
67 List<DiscoverInfo.Identity> getNodeIdentities()
    [all...]
  /cts/libs/vogar-expect/src/vogar/commands/
CommandFailedException.java 19 import java.util.List;
26 private final List<String> args;
27 private final List<String> outputLines;
29 public CommandFailedException(List<String> args, List<String> outputLines) {
35 public List<String> getArgs() {
39 public List<String> getOutputLines() {
43 public static String formatMessage(List<String> args, List<String> outputLines) {
  /external/llvm/lib/CodeGen/
MachineModuleInfoImpls.cpp 39 MachineModuleInfoImpl::SymbolListTy List(Map.begin(), Map.end());
41 if (!List.empty())
42 qsort(&List[0], List.size(), sizeof(List[0]), SortSymbolPair);
43 return List;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarParserHelper.cs 14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
38 /** List of function definitions. Must point at the FUNC nodes. */
39 List<CommonTree> functionDefinitions = new List<CommonTree>();
ProfileGrammarParserHelper.cs 14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
38 /** List of function definitions. Must point at the FUNC nodes. */
39 List<CommonTree> functionDefinitions = new List<CommonTree>();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableAsList.java 19 import java.util.List;
27 ImmutableAsList(List<E> delegate) {
RegularImmutableList.java 19 import java.util.List;
27 RegularImmutableList(List<E> delegate) {

Completed in 860 milliseconds

1 2 3 4 5 6 7 8 91011>>