Searched defs:another (Results 1 - 25 of 45) sorted by relevance

12

/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;
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DBinaryChromosome.java76 protected boolean isSame(Chromosome another) { argument
78 if (! (another instanceof BinaryChromosome))
80 BinaryChromosome anotherBc = (BinaryChromosome) another;
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 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/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/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/icu/icu4c/source/test/intltest/
H A Ddtifmtts.cpp128 DateIntervalFormat* another = (DateIntervalFormat*)dtitvfmt->clone(); local
129 if ( (*another) != (*dtitvfmt) ) {
137 const DateIntervalInfo* inf = another->getDateIntervalInfo();
212 const DateFormat* fmt = another->getDateFormat();
239 delete another;
/external/minijail/
H A Dsyscall_filter.c82 struct filter_block *another)
85 list->last->next = another;
86 list->last = another->last;
88 list->next = another;
89 list->last = another->last;
91 list->total_len += another->total_len;
81 extend_filter_block_list(struct filter_block *list, struct filter_block *another) argument
/external/v8/test/mjsunit/
H A Dstrict-mode.js83 "another directive";\
1065 var another = new Function("'use strict'"); function
1066 assertThrows(function() { another.caller; }, TypeError);
1067 assertThrows(function() { another.arguments; }, TypeError);
1068 assertThrows(function() { another.caller = 42; }, TypeError);
1069 assertThrows(function() { another.arguments = 42; }, TypeError);
1079 CheckFunctionPillDescriptor(another, "caller");
1080 CheckFunctionPillDescriptor(another, "arguments");
/external/gptfdisk/
H A Dbasicmbr.cc249 int i, another = 1, allOK = 1; local
256 while (another && (partNum < MAX_MBR_PARTS) && (partNum >= 0) && (allOK > 0)) {
294 // Sometimes an EBR points directly to another EBR, rather than defining
295 // a logical partition and then pointing to another EBR. Thus, we skip
313 another = 0;
314 } // if another partition
455 // table to another disk.
1446 // another partition, this function returns PRIMARY or LOGICAL for that
/external/opencv/ml/src/
H A Dmlsvm.cpp232 const float* another, Qfloat* results,
241 s += sample[k]*another[k] + sample[k+1]*another[k+1] +
242 sample[k+2]*another[k+2] + sample[k+3]*another[k+3];
244 s += sample[k]*another[k];
251 const float* another, Qfloat* results )
253 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 );
258 const float* another, Qfloat* results )
261 calc_non_rbf_base( vcount, var_count, vecs, another, result
231 calc_non_rbf_base( int vcount, int var_count, const float** vecs, const float* another, Qfloat* results, double alpha, double beta ) argument
250 calc_linear( int vcount, int var_count, const float** vecs, const float* another, Qfloat* results ) argument
257 calc_poly( int vcount, int var_count, const float** vecs, const float* another, Qfloat* results ) argument
266 calc_sigmoid( int vcount, int var_count, const float** vecs, const float* another, Qfloat* results ) argument
285 calc_rbf( int vcount, int var_count, const float** vecs, const float* another, Qfloat* results ) argument
322 calc( int vcount, int var_count, const float** vecs, const float* another, Qfloat* results ) argument
[all...]
/external/opencv3/modules/ml/src/
H A Dsvm.cpp166 const float* another, Qfloat* results,
175 s += sample[k]*another[k] + sample[k+1]*another[k+1] +
176 sample[k+2]*another[k+2] + sample[k+3]*another[k+3];
178 s += sample[k]*another[k];
184 const float* another, Qfloat* results )
186 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 );
190 const float* another, Qfloat* results )
193 calc_non_rbf_base( vcount, var_count, vecs, another, result
165 calc_non_rbf_base( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results, double alpha, double beta ) argument
183 calc_linear( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
189 calc_poly( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
198 calc_sigmoid( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
217 calc_rbf( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
257 calc_intersec( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
275 calc_chi2( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
302 calc( int vcount, int var_count, const float* vecs, const float* another, Qfloat* results ) argument
[all...]
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp507 CvFileMapNode* another; local
529 for( another = (CvFileMapNode*)(map->table[i]); another != 0; another = another->next )
530 if( another->key == key )
534 value = &another->value;
593 CvFileMapNode* another; local
614 for( another = (CvFileMapNode*)(map->table[i]); another !
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar ... getPriority () public int compareTo (java.lang.Object) Object another org.eclipse.ecf.internal.provider. ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.contenttype_3.5.0.v20150421-2214.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/opencv3/modules/core/src/
H A Dpersistence.cpp650 CvFileMapNode* another; local
672 for( another = (CvFileMapNode*)(map->table[i]); another != 0; another = another->next )
673 if( another->key == key )
677 value = &another->value;
730 CvFileMapNode* another; local
751 for( another = (CvFileMapNode*)(map->table[i]); another !
[all...]
/external/v8/test/cctest/
H A Dtest-api.cc1967 // template inherited from another function template with accessors and data
2053 // template inherited from another function template.
2971 // Add another property and delete it afterwards to force the object in
3109 // Add another property and delete it afterwards to force the object in
3203 // Add another property and delete it afterwards to force the object in
3787 // Add another property and delete it afterwards to force the object in
6079 // intervals, one interval for C activations and another for JavaScript
9173 // Create another environment, should fail security checks.
9194 // Create another environment, should pass security checks.
9234 // Create another functio
12855 Local<Object> another = Object::New(context->GetIsolate()); local
[all...]
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...
H A Dhtmlparser-1.3.jarMETA-INF/MANIFEST.MF nu/validator/htmlparser/tools/XSLT4HTML5XOM.class XSLT4HTML5XOM.java package nu. ...

Completed in 4496 milliseconds

12