Searched defs:another (Results 1 - 25 of 32) 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.cpp85 struct another { struct in namespace:PR14838
86 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/chromium_org/content/common/
H A Ddatabase_connections_unittest.cc77 DatabaseConnections another; local
78 another.AddConnection(kOriginId, kName);
79 another.AddConnection(kOriginId, kName2);
82 connections.RemoveConnections(another, &closed_dbs);
89 another.RemoveAllConnections();
133 // being removed on another thread.
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DFormController.h45 FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { } argument
62 inline FormControlState& FormControlState::operator=(const FormControlState& another) argument
64 m_type = another.m_type;
65 m_values = another.m_values;
/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/chromium_org/third_party/icu/source/test/intltest/
H A Ddtifmtts.cpp127 DateIntervalFormat* another = (DateIntervalFormat*)dtitvfmt->clone(); local
128 if ( (*another) != (*dtitvfmt) ) {
136 const DateIntervalInfo* inf = another->getDateIntervalInfo();
211 const DateFormat* fmt = another->getDateFormat();
238 delete 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.cpp127 DateIntervalFormat* another = (DateIntervalFormat*)dtitvfmt->clone(); local
128 if ( (*another) != (*dtitvfmt) ) {
136 const DateIntervalInfo* inf = another->getDateIntervalInfo();
211 const DateFormat* fmt = another->getDateFormat();
238 delete another;
/external/chromium_org/v8/test/mjsunit/
H A Dstrict-mode.js83 "another directive";\
1057 var another = new Function("'use strict'"); function
1058 assertThrows(function() { another.caller; }, TypeError);
1059 assertThrows(function() { another.arguments; }, TypeError);
1060 assertThrows(function() { another.caller = 42; }, TypeError);
1061 assertThrows(function() { another.arguments = 42; }, TypeError);
1071 CheckPillDescriptor(another, "caller");
1072 CheckPillDescriptor(another, "arguments");
/external/chromium_org/chrome/browser/ui/views/panels/
H A Dpanel_stack_view.cc173 void PanelStackView::MergeWith(NativePanelStackWindow* another) { argument
174 PanelStackView* another_stack = static_cast<PanelStackView*>(another);
/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/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. ...
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc2889 // Add another property and delete it afterwards to force the object in
2972 // Add another property and delete it afterwards to force the object in
3364 // Add another property and delete it afterwards to force the object in
5273 // intervals, one interval for C activations and another for JavaScript
8690 // Create another environment, should fail security checks.
8710 // Create another environment, should pass security checks.
8746 // Create another function accessing global objects.
9772 // Create another environment.
9921 // Create another environment.
9995 // Create another environmen
13091 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. ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 561 milliseconds

12