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

1 2 3 4

  /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();
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
Constructor.java 21 /** A constructor for the enclosing type.
23 public class Constructor extends Method {
24 Constructor (String name, Class enclosingType, Class returnType, Parameter[] parameters, boolean isAbstract, boolean isFinal,
31 /** @return a new instance of the enclosing type of this constructor. */
  /art/runtime/mirror/
method.h 60 // C++ mirror of java.lang.reflect.Constructor.
61 class MANAGED Constructor: public AbstractMethod {
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/v8/test/mjsunit/es6/
reflect-construct.js 19 function Constructor() { "use strict"; }
20 assertInstanceof(Reflect.construct(Constructor, []), Constructor);
25 function Constructor() {}
26 assertInstanceof(Reflect.construct(Constructor, []), Constructor);
32 function Constructor() { "use strict"; return R; }
33 assertSame(R, Reflect.construct(Constructor, []));
39 function Constructor() { return R; }
40 assertSame(R, Reflect.construct(Constructor, []));
    [all...]
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/reflect/
Constructor.java 21 /** Provides information about, and access to, a single constructor for a Class.
23 public final class Constructor {
25 private final com.badlogic.gwtref.client.Constructor constructor; field in class:Constructor
27 Constructor (com.badlogic.gwtref.client.Constructor constructor) {
28 this.constructor = constructor;
31 /** Returns an array of Class objects that represent the formal parameter types, in declaration order, of the constructor. */
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/reflect/
Constructor.java 21 /** Provides information about, and access to, a single constructor for a Class.
23 public final class Constructor {
25 private final java.lang.reflect.Constructor constructor; field in class:Constructor
27 Constructor (java.lang.reflect.Constructor constructor) {
28 this.constructor = constructor;
31 /** Returns an array of Class objects that represent the formal parameter types, in declaration order, of the constructor. */
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfAttribute.cpp 74 typedef Attribute* (*Constructor)();
75 typedef std::map <const char *, Constructor, NameCompare> TypeMap;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/testing/
mock.py 3 This module allows you to mock out the constructor of a particular apitools
242 def Constructor(unused_self, unused_client):
244 return Constructor
  /external/v8/test/mjsunit/
object-freeze.js 351 function Constructor() {}
352 Constructor.prototype.foo = 1;
353 Object.freeze(Constructor.prototype);
354 var obj = new Constructor();
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
BaseWorld.java 29 public static abstract class Constructor<T extends BaseEntity> implements Disposable {
37 private final ObjectMap<String, Constructor<T>> constructors = new ObjectMap<String, Constructor<T>>();
41 public void addConstructor (final String name, final Constructor<T> constructor) {
42 constructors.put(name, constructor);
43 if (constructor.model != null && !models.contains(constructor.model, true)) models.add(constructor.model);
46 public Constructor<T> getConstructor (final String name)
    [all...]
  /external/v8/test/unittests/compiler/x64/
instruction-selector-x64-unittest.cc 151 typedef Node* (RawMachineAssembler::*Constructor)(Node*, Node*);
155 Constructor constructor; member in struct:v8::internal::compiler::__anon24046::BinaryOperation
200 m.Return(m.ChangeUint32ToUint64((m.*bop.constructor)(p0, p1)));
    [all...]
  /libcore/ojluni/src/main/java/java/lang/reflect/
Constructor.java 37 * {@code Constructor} provides information about, and access to, a single
38 * constructor for a class.
40 * <p>{@code Constructor} permits widening conversions to occur when matching the
42 * constructor's formal parameters, but throws an
45 * @param <T> the class in which the constructor is declared
56 public final class Constructor<T> extends AbstractMethod implements
64 private Constructor() {
68 private Constructor(Class<?> serializationCtor,
77 public Constructor<T> serializationCopy(Class<?> ctor, Class<?> cl) {
78 return new Constructor<T>(ctor, cl)
    [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/v8/test/unittests/compiler/arm/
instruction-selector-arm-unittest.cc 15 typedef Node* (RawMachineAssembler::*Constructor)(Node*, Node*);
20 Constructor constructor; member in struct:v8::internal::compiler::__anon23993::DPI
43 Constructor constructor; member in struct:v8::internal::compiler::__anon23993::FAI
75 Constructor constructor; member in struct:v8::internal::compiler::__anon23993::ODPI
95 Constructor constructor; member in struct:v8::internal::compiler::__anon23993::Shift
152 m.Return((m.*dpi.constructor)(m.Parameter(0), m.Parameter(1)))
1473 Constructor constructor; member in struct:v8::internal::compiler::__anon23995::Comparison
    [all...]
  /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/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...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-annotation-processing/1.0.2/
kotlin-annotation-processing-1.0.2.jar 
  /external/v8/src/parsing/
preparser.h 55 static PreParserIdentifier Constructor() {
    [all...]
  /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");
783 // object. This list also references the appropriate copy constructor to call
784 // if the object is caught by value and has a non-trivial copy constructor.
793 // Attempt to lookup the copy constructor. Various pieces of machinery
801 // Mark the constructor referenced as it is used by this throw expression.
804 // Skip this copy constructor if it is trivial, we don't need to record it
809 // The copy constructor is non-trivial, create a mapping from this class
810 // type to this constructor
    [all...]
SemaInit.cpp 403 // libstdc++4.6 marks the vector default constructor as explicit in
549 // Empty initialization requires a constructor call, so
550 // extend the initializer list to include the constructor
691 // Empty initialization requires a constructor call, so
692 // extend the initializer list to include the constructor
    [all...]

Completed in 4100 milliseconds

1 2 3 4