HomeSort by relevance Sort by last modified time
    Searched defs:Constructor (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /art/runtime/mirror/
method.h 60 // C++ mirror of java.lang.reflect.Constructor.
61 class MANAGED Constructor: public Executable {
64 static Constructor* CreateFromArtMethod(Thread* self, ArtMethod* method)
86 static GcRoot<Class> static_class_; // java.lang.reflect.Constructor.class.
87 static GcRoot<Class> array_class_; // [java.lang.reflect.Constructor.class.
89 DISALLOW_COPY_AND_ASSIGN(Constructor);
  /external/skia/src/sksl/ir/
SkSLConstructor.h 27 struct Constructor : public Expression {
28 Constructor(Position position, const Type& type,
  /libcore/ojluni/src/main/java/java/lang/reflect/
Constructor.java 36 * {@code Constructor} provides information about, and access to, a single
37 * constructor for a class.
39 * <p>{@code Constructor} permits widening conversions to occur when matching the
41 * constructor's formal parameters, but throws an
44 * @param <T> the class in which the constructor is declared
55 public final class Constructor<T> extends Executable {
61 private Constructor() {
65 private Constructor(Class<?> serializationCtor,
74 public Constructor<T> serializationCopy(Class<?> ctor, Class<?> cl) {
75 return new Constructor<T>(ctor, cl)
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersNarrowingTest.cpp     [all...]
ASTMatchersNodeTest.cpp 518 StatementMatcher Constructor = cxxConstructExpr();
521 matches("class X { public: X(); }; void x() { X x; }", Constructor));
524 Constructor));
527 Constructor));
528 EXPECT_TRUE(matches("class X {}; void x(int) { X x; }", Constructor));
    [all...]
ASTMatchersTraversalTest.cpp     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl.py 167 def p_sum_0(self, (constructor,)):
168 " sum ::= constructor "
169 return [constructor]
171 def p_sum_1(self, (constructor, _, sum)):
172 " sum ::= constructor | sum "
173 return [constructor] + sum
175 def p_sum_2(self, (constructor, _, sum)):
176 " sum ::= constructor | sum "
177 return [constructor] + sum
180 " constructor ::= Id "
    [all...]
  /external/clang/include/clang/Index/
IndexSymbol.h 51 Constructor,
  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 42 // CHECK-DAG: private unnamed_addr constant [12 x i8] c"Constructor\00"
43 // CHECK-DAG: private unnamed_addr constant [41 x i8] c"NS::Constructor::Constructor(NS::Base *)\00"
44 // CHECK-DAG: private unnamed_addr constant [34 x i8] c"NS::Constructor::Constructor(int)\00"
45 // CHECK-DAG: private unnamed_addr constant [31 x i8] c"NS::Constructor::Constructor()\00"
252 class Constructor {
254 Constructor() {
260 Constructor(int)
    [all...]
  /external/clang/test/SemaCXX/
explicit.cpp 2 namespace Constructor {
35 B &&b5 = {0}; // expected-error {{chosen constructor is explicit}}
60 class Y { }; // expected-note+ {{candidate constructor (the implicit}}
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Constructor.java 16 package org.yaml.snakeyaml.constructor;
50 public class Constructor extends SafeConstructor {
54 public Constructor() {
59 * Create Constructor for the specified class as the root.
64 public Constructor(Class<? extends Object> theRoot) {
69 * Ugly Java way to check the argument in the constructor
78 public Constructor(TypeDescription theRoot) {
95 * Create Constructor for a class which does not have to be in the classpath
103 public Constructor(String theRoot) throws ClassNotFoundException {
119 * assigned in constructor then the 'root' property of this definition i
339 Construct constructor = yamlClassConstructors.get(node.getNodeId()); local
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 196 /// CopyConstructor - The copy constructor that is used to perform
198 /// initialization of an object via copy constructor. Such
245 /// If the user-defined conversion is specified by a constructor
248 /// constructor. If the user-defined conversion is specified by
561 /// an illegal instantiation of a constructor temploid: it is
565 /// Defining such a constructor directly is illegal, and
804 CXXConstructorDecl *Constructor;
806 explicit operator bool() const { return Constructor; }
822 Info.Constructor = dyn_cast<CXXConstructorDecl>(D);
  /external/clang/lib/Analysis/
Consumed.cpp 781 CXXConstructorDecl *Constructor = Call->getConstructor();
784 QualType ThisType = Constructor->getThisType(CurrContext)->getPointeeType();
789 // FIXME: What should happen if someone annotates the move constructor?
790 if (ReturnTypestateAttr *RTA = Constructor->getAttr<ReturnTypestateAttr>()) {
794 } else if (Constructor->isDefaultConstructor()) {
797 } else if (Constructor->isMoveConstructor()) {
799 } else if (Constructor->isCopyConstructor()) {
802 isSetOnReadPtrType(Constructor->getThisType(CurrContext)) ?
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.2/
kotlin-annotation-processing-1.0.2.jar 
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]
SemaExprCXX.cpp 45 /// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as
46 /// constructor names in member using declarations, even if 'X' is not the
64 assert(NNS->getAsIdentifier() == &Name && "not a constructor name");
824 // object. This list also references the appropriate copy constructor to call
825 // if the object is caught by value and has a non-trivial copy constructor.
    [all...]
SemaInit.cpp 415 // libstdc++4.6 marks the vector default constructor as explicit in
594 // Empty initialization requires a constructor call, so
595 // extend the initializer list to include the constructor
748 // Empty initialization requires a constructor call, so
749 // extend the initializer list to include the constructor
    [all...]
SemaStmt.cpp     [all...]
SemaOverload.cpp 458 OS << " (by copy constructor)";
    [all...]
SemaDeclCXX.cpp 799 // constructor definition. If so, return true. If not, produce appropriate
    [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 236 Constructor = 0x02,
  /external/v8/src/parsing/
preparser.h 58 static PreParserIdentifier Constructor() {
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]

Completed in 1270 milliseconds

1 2 3 4