Searched refs:another (Results 1 - 25 of 121) sorted by relevance

12345

/external/clang/test/SemaCXX/
H A Dwarn-static-function-inheader.cpp5 static void another(void) { // expected-warning {{function 'another' is not needed and will not be emitted}} function
11 another();
H A Dconstexpr-printing.cpp27 constexpr U(const int *p) : T(), another(), p(p) {}
28 constexpr U(const U &u) : T(), another(), p(u.p) {}
29 T another; member in struct:U
39 static_assert(test_printing(12, 39.762, 3 + 4i, 12.9 + 3.6i, &u2.arr[4], u2.another.arr[2], (vector_int){5, 1, 2, 3}, u1) == 0, ""); // \
41 expected-note {{in call to 'test_printing(12, 3.976200e+01, 3+4i, 1.290000e+01+3.600000e+00i, &u2.T::arr[4], u2.another.arr[2], {5, 1, 2, 3}, {{{}}, {{}}, &u1.T::arr[2]})'}}
H A Dmember-init.cpp88 struct another { struct in namespace:PR14838
89 another() : r(thing()) {} function in struct:PR14838::another
/external/objenesis/tck/src/org/objenesis/tck/candidates/
H A DConstructorWithArguments.java24 private final int another; field in class:ConstructorWithArguments
26 public ConstructorWithArguments(String something, int another) { argument
28 this.another = another;
32 return something + another;
H A DSerializableConstructorWithArguments.java28 private final int another; field in class:SerializableConstructorWithArguments
30 public SerializableConstructorWithArguments(String something, int another) { argument
32 this.another = another;
36 return something + another;
H A Dserializable-candidates.properties60 org.objenesis.tck.candidates.SerializableReplacer = Serializable replacing with another class
61 org.objenesis.tck.candidates.SerializableResolver = Serializable resolving to another class
H A Dcandidates.properties66 org.objenesis.tck.candidates.SerializableReplacer = Serializable replacing with another class
67 org.objenesis.tck.candidates.SerializableResolver = Serializable resolving to another class
/external/clang/test/Misc/
H A Ddiag-presumed.c26 another error;
30 // PRESUMED: systemheader.h:7:1: error: unknown type name 'another'
33 // SPELLING: diag-presumed.c:26:1: error: unknown type name 'another'
/external/valgrind/gdbserver_tests/
H A Dmcmain_pic.stdout.exp2 another func called msg called from gdb
4 another func called msg called from main
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DChromosome.java56 * @param another another chromosome to compare
59 * <li>-1 if <code>another</code> is better than <code>this</code></li>
60 * <li>1 if <code>another</code> is worse than <code>this</code></li>
64 public int compareTo(Chromosome another) { argument
65 return ((Double)this.getFitness()).compareTo(another.getFitness());
69 * Returns <code>true<code> iff <code>another</code> has the same
72 * @param another chromosome to compare
73 * @return true if <code>another</code> is equivalent to this chromosome
75 protected boolean isSame(Chromosome another) { argument
[all...]
H A DBinaryChromosome.java76 protected boolean isSame(Chromosome another) { argument
78 if (! (another instanceof BinaryChromosome))
80 BinaryChromosome anotherBc = (BinaryChromosome) another;
H A DRandomKey.java142 * Returns <code>true</code> iff <code>another</code> is a RandomKey and
145 * @param another chromosome to compare
149 protected boolean isSame(Chromosome another) { argument
151 if (! (another instanceof RandomKey<?>))
153 RandomKey<?> anotherRk = (RandomKey<?>) another;
/external/llvm/test/MC/MachO/AArch64/
H A Dclassrefs.s4 ; an internal relocation. We just have to be careful to not use another symbol.
/external/compiler-rt/lib/lsan/
H A DMakefile.mk23 # lsan functions used in another sanitizers.
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/android/
H A DHttpResponseCacheTest.java81 HttpResponseCache another = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024);
82 assertSame(first, another);
89 HttpResponseCache another = HttpResponseCache.install(cacheDir, 8 * 1024 * 1024);
90 initializeCache(another);
92 assertNotSame(first, another);
/external/markdown/MarkdownTest/Tests_2004/
H A DOrdered and unordered lists.text104 Here's another:
/external/markdown/MarkdownTest/Tests_2007/
H A DOrdered and unordered lists.text104 Here's another:
/external/markdown/tests/markdown-test/
H A Dordered-and-unordered-list.txt104 Here's another:
/external/clang/test/FixIt/
H A Dtypo.cpp86 namespace another { namespace
87 template<typename T> class wide_string {}; // expected-note {{'another::wide_string' declared here}}
91 nonstd::wide_string<char> str2; // expected-error{{no template named 'wide_string' in namespace 'nonstd'; did you mean 'another::wide_string'?}}
/external/jemalloc/include/jemalloc/
H A Djemalloc_mangle.sh9 * so that it is possible to use jemalloc in conjunction with another allocator
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/bin/
H A Dssvnc26 launches the VNC viewer (either the one provided or another one that
/external/llvm/test/MC/ARM/
H A Deh-compact-pr0.s65 @ another relocation entry for __aeabi_unwind_cpp_pr0, so that the linker
102 @ another relocation entry for __aeabi_unwind_cpp_pr0, so that the linker
/external/valgrind/memcheck/tests/
H A Derr_disable_arange1.stderr.exp14 Doing invalid another access. Expect no complaint.
/external/conscrypt/src/main/java/org/conscrypt/
H A DFileClientSessionCache.java365 public int compareTo(File another) { argument
367 long result = lastModified() - another.lastModified();
369 return super.compareTo(another);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognizerSharedState.as5 * shared among multiple grammars; e.g., when one grammar imports another.
26 * but no token is consumed during recovery...another error is found,
65 * emit another token.

Completed in 1460 milliseconds

12345