/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p17.cpp | 3 class ctor { class 4 ctor(); // expected-note{{implicitly declared private here}} 12 new ctor[0]; // expected-error{{calling a private constructor of class 'ctor'}}
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
MalformedParameterizedTypeExceptionTests.java | 13 Constructor<MalformedParameterizedTypeException> ctor = MalformedParameterizedTypeException.class local 15 assertNotNull("Parameterless constructor does not exist.", ctor); 16 assertTrue("Constructor is not protected", Modifier.isPublic(ctor 18 assertNotNull(ctor.newInstance());
|
ConstructorTest.java | 169 Constructor<GenericConstructorTestHelper> ctor = GenericConstructorTestHelper.class local 174 ctor.toGenericString()); 193 Constructor<? extends ConstructorTestHelper> ctor = pclass.getConstructor(new Class[0]); local 194 val = ctor.getDeclaringClass().equals(pclass); 207 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper().getClass() local 209 exceptions = ctor.getExceptionTypes(); 223 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper().getClass() local 225 mod = ctor.getModifiers(); 226 assertTrue("Returned incorrect modifers for public ctor", 234 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper().getClass( local 245 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper().getClass() local 260 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper().getClass() local 278 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper().getClass() local 291 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper().getClass() local 305 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper() local 316 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper() local 347 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper() local 380 Constructor<? extends ConstructorTestHelper> ctor = new ConstructorTestHelper().getClass() local 393 Constructor<? extends ConstructorTestHelper> ctor = null; local [all...] |
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eh990323-1.cpp | 6 int ctor = 0; variable 10 A() {ctor++;} 11 A(int) {ctor++;} 12 A(const A&) {ctor++;} 73 if (!ctor || ctor != dtor)
|
eh990323-5.cpp | 6 int ctor = 0; variable 23 ctor++; 31 ctor++; 62 if (ctor != 9)
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
eh990323-1.cpp | 6 int ctor = 0; variable 10 A() {ctor++;} 11 A(int) {ctor++;} 12 A(const A&) {ctor++;} 73 if (!ctor || ctor != dtor)
|
eh990323-5.cpp | 6 int ctor = 0; variable 23 ctor++; 31 ctor++; 62 if (ctor != 9)
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
googleinit.h | 41 GoogleInitializer(const char* name, VoidFunction ctor, VoidFunction dtor) 54 if (ctor) 55 ctor();
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
googleinit.h | 41 GoogleInitializer(const char* name, VoidFunction ctor, VoidFunction dtor) 44 if (ctor) 45 ctor();
|
/external/libcxx/test/utilities/optional/optional.object/optional.object.ctor/ |
Android.mk | 17 test_makefile := external/libcxx/test/utilities/optional/optional.object/optional.object.ctor/Android.mk 19 test_name := utilities/optional/optional.object/optional.object.ctor/rvalue_T 23 test_name := utilities/optional/optional.object/optional.object.ctor/default 27 test_name := utilities/optional/optional.object/optional.object.ctor/copy 31 test_name := utilities/optional/optional.object/optional.object.ctor/const_T 35 test_name := utilities/optional/optional.object/optional.object.ctor/move 39 test_name := utilities/optional/optional.object/optional.object.ctor/initializer_list 43 test_name := utilities/optional/optional.object/optional.object.ctor/nullopt_t 47 test_name := utilities/optional/optional.object/optional.object.ctor/in_place_t
|
/external/chromium_org/v8/test/mjsunit/ |
debug-constructed-by.js | 36 var ctor = debug.MakeMirror(Point); variable 39 assertEquals(0, ctor.constructedBy().length); 40 assertEquals(0, ctor.constructedBy(0).length); 41 assertEquals(0, ctor.constructedBy(1).length); 42 assertEquals(0, ctor.constructedBy(10).length); 46 assertEquals(1, ctor.constructedBy().length); 47 assertEquals(1, ctor.constructedBy(0).length); 48 assertEquals(1, ctor.constructedBy(1).length); 49 assertEquals(1, ctor.constructedBy(10).length); 57 assertEquals(11, ctor.constructedBy().length) [all...] |
migrations.js | 35 objects[i] = ctor_desc.ctor.apply(ctor_desc, ctor_desc.args(i)); 86 ctor: function(v) { return {a: v}; }, 91 ctor: function(v) { var o = {}; o.a = v; return o; }, 96 ctor: function(v) { return {a: v}; }, 101 ctor: function(v) { var o = {}; o.a = v; return o; }, 106 ctor: function(v) { return {a: v}; }, 111 ctor: function(v) { var o = {}; o.a = v; return o; }, 116 ctor: function(v1, v2, v3) { return {a: v1, b: v2, c: v3}; }, 121 ctor: function(v) { var o = {}; o.h=o.g=o.f=o.e=o.d=o.c=o.b=o.a=v; return o; }, 126 ctor: function(v) { var o = 1; o.a = v; return o; } [all...] |
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/ |
Android.mk | 17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/Android.mk 19 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/pointer01 23 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/pointer_deleter03 27 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/pointer_deleter04 31 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/move02 35 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/pointer02 39 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/move01 43 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/pointer_deleter02 47 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/default01 51 test_name := utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/default0 [all...] |
/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream_sentry/ |
Android.mk | 19 test_name := input.output/iostream.format/input.streams/istream/istream_sentry/ctor 20 test_src := ctor.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.time/locale.time.put/ |
Android.mk | 23 test_name := localization/locale.categories/category.time/locale.time.put/ctor 24 test_src := ctor.pass.cpp
|
/external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/ |
Android.mk | 17 test_makefile := external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/Android.mk 19 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/move_convert04 23 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/pointer01 27 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/move_convert07 31 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/pointer_deleter03 35 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/pointer03 39 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/pointer_deleter04 43 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/move02 47 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/pointer02 51 test_name := utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/move_convert0 [all...] |
/external/opencv/cv/src/ |
_cvkdtree.hpp | 85 __valuector ctor) { 93 mean += deref(ctor(*k), j); 97 accum_type diff = accum_type(deref(ctor(*k), j)) - mean; 118 int dim, __valuector ctor) { 121 median_partition(first, last, k, dim, ctor); 130 __valuector ctor; member in struct:CvKDTree::median_pr 132 : pivot(_pivot), dim(_dim), deref(_deref), ctor(_ctor) { 135 return deref(ctor(lhs), dim) <= deref(ctor(pivot), dim); 141 __instype * k, int dim, __valuector ctor) { [all...] |
/external/libcxx/test/localization/locale.categories/category.collate/locale.collate/ |
Android.mk | 23 test_name := localization/locale.categories/category.collate/locale.collate/ctor 24 test_src := ctor.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/ |
Android.mk | 23 test_name := localization/locale.categories/category.ctype/locale.ctype/ctor 24 test_src := ctor.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.messages/locale.messages/ |
Android.mk | 27 test_name := localization/locale.categories/category.messages/locale.messages/ctor 28 test_src := ctor.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.monetary/locale.money.get/ |
Android.mk | 23 test_name := localization/locale.categories/category.monetary/locale.money.get/ctor 24 test_src := ctor.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.monetary/locale.money.put/ |
Android.mk | 23 test_name := localization/locale.categories/category.monetary/locale.money.put/ctor 24 test_src := ctor.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/ |
Android.mk | 27 test_name := localization/locale.categories/category.monetary/locale.moneypunct/ctor 28 test_src := ctor.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.numeric/locale.nm.put/ |
Android.mk | 23 test_name := localization/locale.categories/category.numeric/locale.nm.put/ctor 24 test_src := ctor.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/ |
Android.mk | 23 test_name := localization/locale.categories/category.numeric/locale.num.get/ctor 24 test_src := ctor.pass.cpp
|