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

1 2

  /external/chromium_org/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/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.h 49 class {{v8_class}}Constructor {
  /external/clang/test/SemaCXX/
explicit.cpp 2 namespace Constructor {
43 class Y { }; // expected-note {{candidate constructor (the implicit copy constructor) not viable: no known conversion from 'Z' to 'const Y &' for 1st argument}} \
44 expected-note {{candidate constructor (the implicit move constructor) not viable: no known conversion from 'Z' to 'Y &&' for 1st argument}} \
45 expected-note {{candidate constructor (the implicit copy constructor) not viable: no known conversion from 'Z' to 'const Y &' for 1st argument}} \
46 expected-note {{candidate constructor (the implicit move constructor) not viable: no known conversion from 'Z' to 'Y &&' for 1st argument}}
  /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 {
55 public Constructor(ArtMethod artMethod) {
64 * Returns the modifiers for this constructor. The {@link Modifier} class
72 * Returns true if this constructor takes a variable number of arguments.
79 * Returns true if this constructor is synthetic (artificially introduced by the compiler).
86 * Returns the name of this constructor
    [all...]
  /libcore/libdvm/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 AccessibleObject implements GenericDeclaration,
59 TypeVariable<Constructor<T>>[] formalTypeParameters;
82 private Constructor(){
91 * the class this constructor object belongs to
93 * the parameter types of the constructor
95 * the exception types of the constructor
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/table/
table_test.cc 141 class Constructor {
143 explicit Constructor(const Comparator* cmp) : data_(STLLessThan(cmp)) { }
144 virtual ~Constructor() { }
181 class BlockConstructor: public Constructor {
184 : Constructor(cmp),
221 class TableConstructor: public Constructor {
224 : Constructor(cmp),
316 class MemTableConstructor: public Constructor {
319 : Constructor(cmp),
349 class DBConstructor: public Constructor {
    [all...]
  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 40 // CHECK: private unnamed_addr constant [12 x i8] c"Constructor\00"
41 // CHECK: private unnamed_addr constant [41 x i8] c"NS::Constructor::Constructor(NS::Base *)\00"
42 // CHECK: private unnamed_addr constant [34 x i8] c"NS::Constructor::Constructor(int)\00"
43 // CHECK: private unnamed_addr constant [31 x i8] c"NS::Constructor::Constructor()\00"
250 class Constructor {
252 Constructor() {
258 Constructor(int)
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaExprCXX.cpp 42 /// constructor declarations. 'NS::X::X' and 'NS::X<...>::X' are treated as
43 /// constructor names in member using declarations, even if 'X' is not the
61 assert(NNS->getAsIdentifier() == &Name && "not a constructor name");
    [all...]
SemaInit.cpp 412 // Value-initialization requires a constructor call, so
413 // extend the initializer list to include the constructor
543 // Value-initialization requires a constructor call, so
544 // extend the initializer list to include the constructor
    [all...]
SemaDeclCXX.cpp 741 // constructor definition. If so, return true. If not, produce appropriate
749 // The definition of a constexpr constructor shall satisfy the following
808 // The definition of a constexpr function(p3) or constructor(p4) [...] shall
    [all...]
SemaOverload.cpp 468 OS << " (by copy constructor)";
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp     [all...]
RewriteModernObjC.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 
  /prebuilts/sdk/5/
android.jar 

Completed in 496 milliseconds

1 2