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

1 2

  /external/v8/test/webkit/
instance-of-immediates.js 24 description('This test makes sure that instance of behaves correctly when the value, constructor, or its prototype are immediates.');
26 // A Constructor to use check for instances of, and an instance called obj.
27 function Constructor() {}
28 var obj = new Constructor();
30 // Run a batch of tests; call'testInstanceOf' three times, passing 1, {}, and the object 'obj', which is an instance of Constructor.
31 function testSet(constructor, testMethod)
33 testMethod["1"]("(1 instanceof " + constructor + ")");
34 testMethod["{}"]("({} instanceof " + constructor + ")");
35 testMethod["obj"]("(obj instanceof " + constructor + ")");
38 // Test set 1, test passing the integer 1 as the constructor to be tested for
    [all...]
preventExtensions.js 108 function Constructor() {}
109 Constructor.prototype.foo = 1;
110 Object.freeze(Constructor.prototype);
111 var obj = new Constructor();
  /art/runtime/mirror/
method.h 59 // C++ mirror of java.lang.reflect.Constructor.
60 class MANAGED Constructor: public AbstractMethod {
62 static Constructor* CreateFromArtMethod(Thread* self, ArtMethod* method)
84 static GcRoot<Class> static_class_; // java.lang.reflect.Constructor.class.
85 static GcRoot<Class> array_class_; // [java.lang.reflect.Constructor.class.
87 DISALLOW_COPY_AND_ASSIGN(Constructor);
  /libcore/libart/src/main/java/java/lang/reflect/
Constructor.java 43 * This class represents a constructor. Information about the constructor can be
44 * accessed, and the constructor can be invoked dynamically.
46 * @param <T> the class that declares this constructor
48 public final class Constructor<T> extends AbstractMethod implements GenericDeclaration, Member {
52 private Constructor() {
60 * Returns the modifiers for this constructor. The {@link Modifier} class
68 * Returns true if this constructor takes a variable number of arguments.
75 * Returns true if this constructor is synthetic (artificially introduced by the compiler).
82 * Returns the name of this constructor
    [all...]
  /external/v8/src/compiler/arm/
instruction-selector-arm-unittest.cc 14 typedef Node* (RawMachineAssembler::*Constructor)(Node*, Node*);
19 Constructor constructor; member in struct:v8::internal::compiler::__anon19111::DPI
42 Constructor constructor; member in struct:v8::internal::compiler::__anon19111::ODPI
62 Constructor constructor; member in struct:v8::internal::compiler::__anon19111::Shift
127 m.Return((m.*dpi.constructor)(m.Parameter(0), m.Parameter(1)));
141 m.Return((m.*dpi.constructor)(m.Parameter(0), m.Int32Constant(imm)));
152 m.Return((m.*dpi.constructor)(m.Int32Constant(imm), m.Parameter(0)))
    [all...]
  /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/clang/lib/Analysis/
Consumed.cpp 775 CXXConstructorDecl *Constructor = Call->getConstructor();
778 QualType ThisType = Constructor->getThisType(CurrContext)->getPointeeType();
783 // FIXME: What should happen if someone annotates the move constructor?
784 if (ReturnTypestateAttr *RTA = Constructor->getAttr<ReturnTypestateAttr>()) {
788 } else if (Constructor->isDefaultConstructor()) {
791 } else if (Constructor->isMoveConstructor()) {
793 } else if (Constructor->isCopyConstructor()) {
796 isSetOnReadPtrType(Constructor->getThisType(CurrContext)) ?
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]
SemaExprCXX.cpp 46 /// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as
47 /// constructor names in member using declarations, even if 'X' is not the
65 assert(NNS->getAsIdentifier() == &Name && "not a constructor name");
784 // object. This list also references the appropriate copy constructor to call
785 // if the object is caught by value and has a non-trivial copy constructor.
794 // Attempt to lookup the copy constructor. Various pieces of machinery
802 // Mark the constructor referenced as it is used by this throw expression.
805 // Skip this copy constructor if it is trivial, we don't need to record it
810 // The copy constructor is non-trivial, create a mapping from this class
811 // type to this constructor
    [all...]
SemaInit.cpp 380 // libstdc++4.6 marks the vector default constructor as explicit in
509 // Empty initialization requires a constructor call, so
510 // extend the initializer list to include the constructor
624 // Empty initialization requires a constructor call, so
625 // extend the initializer list to include the constructor
    [all...]
SemaOverload.cpp 443 OS << " (by copy constructor)";
    [all...]
SemaStmt.cpp     [all...]
SemaDeclCXX.cpp 777 // constructor definition. If so, return true. If not, produce appropriate
785 // The definition of a constexpr constructor shall satisfy the following
    [all...]
  /external/v8/src/
preparser.h 626 static PreParserIdentifier Constructor() {
2754 FunctionLiteralT constructor = this->EmptyFunctionLiteral(); local
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 2231 milliseconds

1 2