Searched defs:ctor (Results 1 - 25 of 68) sorted by relevance

123

/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp17.cpp3 class ctor { class
4 ctor(); // expected-note{{implicitly declared private here}}
12 new ctor[0]; // expected-error{{calling a private constructor of class 'ctor'}}
/external/testng/src/main/java/org/testng/internal/annotations/
H A DIAnnotationFinder.java60 public String[] findOptionalValues(Constructor ctor); argument
H A DAnnotationHelper.java51 public static ITestAnnotation findTest(IAnnotationFinder finder, Constructor ctor) { argument
52 return finder.findAnnotation(ctor, ITestAnnotation.class);
55 public static IConfigurationAnnotation findConfiguration(IAnnotationFinder finder, Constructor ctor) { argument
56 IConfigurationAnnotation result = finder.findAnnotation(ctor, IConfigurationAnnotation.class);
58 IConfigurationAnnotation bs = (IConfigurationAnnotation) finder.findAnnotation(ctor, IBeforeSuite.class);
59 IConfigurationAnnotation as = (IConfigurationAnnotation) finder.findAnnotation(ctor, IAfterSuite.class);
60 IConfigurationAnnotation bt = (IConfigurationAnnotation) finder.findAnnotation(ctor, IBeforeTest.class);
61 IConfigurationAnnotation at = (IConfigurationAnnotation) finder.findAnnotation(ctor, IAfterTest.class);
62 IConfigurationAnnotation bg = (IConfigurationAnnotation) finder.findAnnotation(ctor, IBeforeGroups.class);
63 IConfigurationAnnotation ag = (IConfigurationAnnotation) finder.findAnnotation(ctor, IAfterGroup
[all...]
/external/vulkan-validation-layers/libs/glm/detail/
H A Dtype_mat2x2.hpp43 enum ctor{_null}; enum in struct:glm::detail::tmat2x2
72 ctor Null);
H A Dtype_mat2x3.hpp44 enum ctor{_null}; enum in struct:glm::detail::tmat2x3
66 ctor);
H A Dtype_mat2x4.hpp44 enum ctor{_null}; enum in struct:glm::detail::tmat2x4
66 ctor);
H A Dtype_mat3x2.hpp44 enum ctor{_null}; enum in struct:glm::detail::tmat3x2
66 ctor);
H A Dtype_mat3x3.hpp43 enum ctor{_null}; enum in struct:glm::detail::tmat3x3
71 ctor Null);
H A Dtype_mat3x4.hpp44 enum ctor{_null}; enum in struct:glm::detail::tmat3x4
66 ctor Null);
H A Dtype_mat4x2.hpp44 enum ctor{_null}; enum in struct:glm::detail::tmat4x2
66 ctor Null);
H A Dtype_mat4x3.hpp44 enum ctor{_null}; enum in struct:glm::detail::tmat4x3
66 ctor Null);
H A Dtype_mat4x4.hpp44 enum ctor{_null}; enum in struct:glm::detail::tmat4x4
71 ctor Null);
H A Dtype_vec1.hpp52 enum ctor{_null}; enum in struct:glm::detail::tvec1
86 ctor);
H A Dtype_vec2.hpp52 enum ctor{_null}; enum in struct:glm::detail::tvec2
111 ctor);
H A Dtype_gentype.hpp53 enum ctor{null}; enum in struct:glm::detail::genType
H A Dtype_vec3.hpp52 enum ctor{_null}; enum in struct:glm::detail::tvec3
112 ctor);
H A Dtype_vec4.hpp53 enum ctor{_null}; enum in struct:glm::detail::tvec4
114 ctor);
/external/vulkan-validation-layers/libs/glm/gtc/
H A Dquaternion.hpp60 enum ctor{null}; enum in struct:glm::detail::tquat
/external/vulkan-validation-layers/libs/glm/gtx/
H A Dsimd_mat4.hpp64 enum ctor{_null}; enum
H A Dsimd_quat.hpp73 enum ctor{null}; enum
102 ctor); variable
H A Ddual_quaternion.hpp59 enum ctor{null}; enum in struct:glm::detail::tdualquat
H A Dsimd_vec4.hpp92 enum ctor{null}; enum
121 ctor); variable
/external/syslinux/com32/lib/sys/module/
H A Delf_module.c186 module_ctor_t *ctor; local
292 for (ctor = module->ctors; ctor && *ctor; ctor++)
293 (*ctor) ();
/external/clang/test/CXX/class/class.union/
H A Dp1.cpp41 Ctor ctor; // expected-error {{union member 'ctor' has a non-trivial constructor}} member in union:U1
58 Ctor ctor; // expected-note {{because field of type 'Ctor' has a user-provided default constructor}} member in struct:U2::__anon1872
128 Either<int,Ctor> ctor(0); // expected-note {{in instantiation of template}}
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DDeprecatedAPIChecker.java130 for (Constructor<?> ctor : cls.getDeclaredConstructors()) {
131 if (!isPublicOrProtected(ctor.getModifiers())) {
135 List<String> paramNames = getParamNames(ctor);
145 compareDeprecated(isAPIDeprecated(api), ctor.isAnnotationPresent(Deprecated.class), clsName,
399 private static List<String> getParamNames(Constructor<?> ctor) { argument
400 return toTypeNameList(ctor.getGenericParameterTypes());

Completed in 567 milliseconds

123