Searched refs:List (Results 1 - 25 of 2551) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Ddisable-tail-calls.c3 typedef struct List { struct
4 struct List *next;
6 } List; typedef in typeref:struct:List
8 // CHECK-LABEL: define %struct.List* @find
9 List *find(List *head, int data) {
14 // CHECK: call %struct.List* @find
H A Dpragma-unroll.cpp4 void while_test(int *List, int Length) { argument
11 List[i] = i * 2;
17 void do_test(int *List, int Length) { argument
23 List[i] = i * 2;
29 void for_test(int *List, int Length) { argument
33 List[i] = i * 2;
39 double List[100]; local
42 for (int i : List) {
44 List[i] = i;
51 void for_define_test(int *List, in argument
61 for_template_test(A *List, int Length, A Value) argument
71 for_template_define_test(A *List, int Length, A Value) argument
82 template_test(double *List, int Length) argument
[all...]
H A Dtypes.c25 struct List { struct
30 struct List returned;
33 void test3(struct List a) {
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DProtocolStringList.java33 import java.util.List;
36 * An interface extending {@code List<String>} used for repeated string fields
43 public interface ProtocolStringList extends List<String> {
46 List<ByteString> asByteStringList();
/external/llvm/unittests/ADT/
H A DilistTest.cpp30 ilist<Node> List; local
31 List.push_back(Node(1));
32 EXPECT_EQ(1, List.back().Value);
33 EXPECT_EQ(nullptr, List.back().getPrevNode());
34 EXPECT_EQ(nullptr, List.back().getNextNode());
36 List.push_back(Node(2));
37 EXPECT_EQ(2, List.back().Value);
38 EXPECT_EQ(2, List.front().getNextNode()->Value);
39 EXPECT_EQ(1, List.back().getPrevNode()->Value);
41 const ilist<Node> &ConstList = List;
48 ilist<Node> List; local
60 List.splice(std::next(List.begin()), List, List.begin()); local
68 ilist<Node> List; local
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DPermutationChromosome.java19 import java.util.List;
42 List<T> decode(List<T> sequence);
/external/mockito/src/org/mockito/internal/stubbing/
H A DInvocationContainer.java9 import java.util.List;
13 List<Invocation> getInvocations();
15 List<StubbedInvocationMatcher> getStubbedInvocations();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarParserHelper.cs38 /** List of function definitions. Must point at the FUNC nodes. */
39 List<CommonTree> functionDefinitions = new List<CommonTree>();
H A DProfileGrammarParserHelper.cs38 /** List of function definitions. Must point at the FUNC nodes. */
39 List<CommonTree> functionDefinitions = new List<CommonTree>();
/external/junit/src/org/junit/experimental/theories/
H A DParameterSupplier.java3 import java.util.List;
7 public abstract List<PotentialAssignment> getValueSources(ParameterSignature sig);
/external/clang/test/PCH/
H A Dpragma-loop.cpp27 inline void run1(int *List, int Length) { argument
33 List[i] = i;
38 inline void run2(int *List, int Length) { argument
44 List[i] = i;
49 inline void run3(int *List, int Length) { argument
55 List[i] = i;
60 inline void run4(int *List, int Length) { argument
64 List[i] = i;
69 inline void run5(int *List, int Length) { argument
73 List[
78 run6(int *List, int Length) argument
88 run7(int *List, int Length) argument
99 int List[100]; local
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularImmutableList.java21 import java.util.List;
29 private final List<E> delegate;
31 RegularImmutableList(List<E> delegate) {
36 @Override List<E> delegateList() {
/external/vogar/src/vogar/commands/
H A DCommandFailedException.java19 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/
H A DMachineModuleInfoImpls.cpp36 MachineModuleInfoImpl::SymbolListTy List(Map.begin(), Map.end());
38 if (!List.empty())
39 qsort(&List[0], List.size(), sizeof(List[0]), SortSymbolPair);
42 return List;
/external/proguard/src/proguard/
H A DConfiguration.java24 import java.util.List;
71 public List keepDirectories;
97 public List keep;
124 public List whyAreYouKeeping;
141 public List optimizations;
152 public List assumeNoSideEffects;
220 public List keepPackageNames;
240 public List keepAttributes;
259 public List adaptClassStrings;
265 public List adaptResourceFileName
[all...]
/external/clang/test/Misc/
H A Dast-print-pragmas-xfail.cpp6 void run1(int *List, int Length) { argument
18 List[i] = i;
H A Dast-print-pragmas.cpp9 void test(int *List, int Length) { argument
15 List[i] = i * 2;
26 List[i] = i * 2;
37 List[i] = i * 2;
43 void test_nontype_template_param(int *List, int Length) { argument
46 List[i] = i;
53 void test_templates(int *List, int Length) { argument
54 test_nontype_template_param<2, 4>(List, Length);
/external/littlemock/src/com/google/testing/littlemock/
H A DArgumentCaptor.java19 import java.util.List;
33 public List<T> getAllValues();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
H A DSwitchPayload.java35 import java.util.List;
38 @Nonnull List<? extends SwitchElement> getSwitchElements();
/external/apache-http/src/org/apache/http/cookie/
H A DCookieSpec.java34 import java.util.List;
81 List<Cookie> parse(Header header, CookieOrigin origin) throws MalformedCookieException;
111 List<Header> formatCookies(List<Cookie> cookies);
/external/clang/test/CodeGenCXX/
H A Dconstructor-template.cpp22 template <typename T> class List { class
24 List(){ } // List<BinomialNode<int>*>::List() remains undefined. function in class:List
25 ~List() {}
39 List<BinomialNode<T>*> nodes;
/external/clang/test/Parser/
H A Dpragma-unroll.cpp6 void test(int *List, int Length) { argument
11 List[i] = i;
16 List[i] = i;
21 List[i] = i;
26 List[i] = i;
33 List[i] = i;
38 List[i] = i;
48 List[i] = i;
61 List[i] = i;
67 List[
[all...]
/external/junit/src/org/junit/internal/runners/
H A DInitializationError.java4 import java.util.List;
13 private final List<Throwable> fErrors;
15 public InitializationError(List<Throwable> errors) {
27 public List<Throwable> getCauses() {
/external/junit/src/org/junit/runners/model/
H A DInitializationError.java4 import java.util.List;
11 private final List<Throwable> fErrors;
17 public InitializationError(List<Throwable> errors) {
36 public List<Throwable> getCauses() {
/external/jdiff/src/jdiff/
H A DAPIDiff.java17 public List packagesAdded = null; // PackageAPI[]
19 public List packagesRemoved = null; // PackageAPI[]
21 public List packagesChanged = null; // PackageDiff[]

Completed in 903 milliseconds

1234567891011>>