Home
last modified time | relevance | path

Searched refs:another (Results 1 – 25 of 1007) sorted by relevance

12345678910>>...41

/external/objenesis/tck/src/org/objenesis/tck/candidates/
DConstructorWithArguments.java24 private final int another; field in ConstructorWithArguments
26 public ConstructorWithArguments(String something, int another) { in ConstructorWithArguments() argument
28 this.another = another; in ConstructorWithArguments()
32 return something + another; in toString()
DSerializableConstructorWithArguments.java28 private final int another; field in SerializableConstructorWithArguments
30 public SerializableConstructorWithArguments(String something, int another) { in SerializableConstructorWithArguments() argument
32 this.another = another; in SerializableConstructorWithArguments()
36 return something + another; in toString()
/external/clang/test/Parser/
Dobjc-messaging-1.m9 [a inout: 1 :2 another:(2,3,4)]; // expected-warning{{not found}} \
11 [a inout: 1 :2 another:(2,3,4), 6,6,8]; // expected-warning{{not found}} \
13 [a inout: 1 :2 another:(2,3,4), (6,4,5),6,8]; // expected-warning{{not found}} \
15 [a inout: 1 :2 another:(i+10), (i,j-1,5),6,8]; // expected-warning{{not found}} \
17 [a long: 1 :2 another:(i+10), (i,j-1,5),6,8]; // expected-warning{{not found}} \
19 [a : "Hello\n" :2 another:(i+10), (i,j-1,5),6,8]; // expected-warning{{not found}} \
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
DChromosome.java64 public int compareTo(Chromosome another) { in compareTo() argument
65 return ((Double)this.getFitness()).compareTo(another.getFitness()); in compareTo()
75 protected boolean isSame(Chromosome another) { in isSame() argument
DBinaryChromosome.java76 protected boolean isSame(Chromosome another) { in isSame() argument
78 if (! (another instanceof BinaryChromosome)) in isSame()
80 BinaryChromosome anotherBc = (BinaryChromosome) another; in isSame()
DRandomKey.java149 protected boolean isSame(Chromosome another) { in isSame() argument
151 if (! (another instanceof RandomKey<?>)) in isSame()
153 RandomKey<?> anotherRk = (RandomKey<?>) another; in isSame()
/external/clang/test/Rewriter/
Dundecl-objc-h.m17 - (int) another : (int) arg;
23 return [self another : [self MainMethod : d : d].size];
26 - (int) another : (int) arg { return arg; }
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/android/
DHttpResponseCacheTest.java81 HttpResponseCache another = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024); in secondEquivalentInstallDoesNothing() local
82 assertSame(first, another); in secondEquivalentInstallDoesNothing()
89 HttpResponseCache another = HttpResponseCache.install(cacheDir, 8 * 1024 * 1024); in installClosesPreviouslyInstalled() local
90 initializeCache(another); in installClosesPreviouslyInstalled()
92 assertNotSame(first, another); in installClosesPreviouslyInstalled()
/external/icu/icu4c/source/test/testdata/
Dtestaliases.txt21 // aliasing to another resource
24 // alias that uses another alias and references parts of the end structure
25 referencingalias:alias { "testaliases/anotheralias/2" } // Referencing through another alias
31 … boundaries:alias { "/ICUDATA-brkitr/th" } // Referencing corresponding resource in another bundle
/external/clang/test/SemaCXX/
Dwarn-static-function-inheader.cpp5 static void another(void) { // expected-warning {{function 'another' is not needed and will not be … in another() function
11 another(); in foo()
Dconstexpr-printing.cpp27 constexpr U(const int *p) : T(), another(), p(p) {} in U()
28 constexpr U(const U &u) : T(), another(), p(u.p) {} in U()
29 T another; member
39 static_assert(test_printing(12, 39.762, 3 + 4i, 12.9 + 3.6i, &u2.arr[4], u2.another.arr[2], (vector…
/external/libxml2/result/
Dcomment4.xml.rdr2 0 8 #comment 0 1 à another one
3 0 8 #comment 0 1 another one à
Dcomment4.xml.rde2 0 8 #comment 0 1 à another one
3 0 8 #comment 0 1 another one à
Dcomment4.xml.sax4 SAX.comment(à another one )
5 SAX.comment( another one à)
Dcomment4.xml.sax24 SAX.comment(à another one )
5 SAX.comment( another one à)
/external/valgrind/gdbserver_tests/
Dmcmain_pic.stdout.exp2 another func called msg called from gdb
4 another func called msg called from main
DREADME_DEVELOPERS10 If you want to test with another gdb version, you can do:
11 make regtest GDB=/path/to/another/gdb
13 or (to just run the gdbserver tests with another gdb):
17 gdbserver_tests/make_local_links /path/to/another/gdb
62 In another window, you launch gdb yourself, and you copy paste
86 progB: another program (typically, either gdb or vgdb standalone)
156 in another window
173 in another window
206 In another window, do:
/external/clang/test/CodeGenObjC/
Dprotocol-property-synth.m19 @property(assign) id another; property
31 @synthesize another;
/external/v8/test/webkit/fast/js/
DJSON-parse-reviver-expected.txt36 PASS currentHolder[1] is "another value"
37 PASS currentHolder[2] is "and another value"
97 PASS currentHolder['another property'] is "another value"
98 PASS currentHolder['and another property'] is "and another value"
112 PASS currentHolder['and another property'] is "a replaced value"
/external/clang/test/SemaObjC/
Dmethod-encoding-2.m6 - (id) another:(void *)location with:(unsigned **)arg2;
11 - (id) another:(void *)location with:(unsigned **)arg2 { return 0; }
/external/llvm/test/FileCheck/
Dcheck-substring-multi-prefix-2.txt6 this is another
11 BARFOO: this is {{another}}
/external/wpa_supplicant_8/hostapd/
Dhostapd.wpa_psk7 00:11:22:33:44:55 another passphrase
9 00:00:00:00:00:00 another passphrase for all STAs
/external/clang/test/Analysis/
Dobjc-properties.m43 TestProperty *another = [[TestProperty alloc] init];
44 another->_Y = value->_Y; // no-warning
45 return another;
/external/libvpx/libvpx/
Dkeywords.dox41 it enhances the product while another vendor may omit the same item.
43 prepared to interoperate with another implementation which does
46 \ref MUST be prepared to interoperate with another implementation which
/external/libvpx/libvpx/vpx_dsp/arm/
Dvariance_media.asm62 uxtb16 r10, r6, ror #8 ; another two pixels to halfwords
86 uxtb16 r10, r6, ror #8 ; another two pixels to halfwords
110 uxtb16 r10, r6, ror #8 ; another two pixels to halfwords
136 uxtb16 r10, r6, ror #8 ; another two pixels to halfwords
195 uxtb16 r10, r8, ror #8 ; another two pixels to halfwords
221 uxtb16 r10, r8, ror #8 ; another two pixels to halfwords
280 uxtb16 r7, r8, ror #8 ; another two pixels to halfwords
299 uxtb16 r7, r8, ror #8 ; another two pixels to halfwords
320 uxtb16 r7, r8, ror #8 ; another two pixels to halfwords
343 uxtb16 r7, r8, ror #8 ; another two pixels to halfwords

12345678910>>...41