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

  /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/ui/ozone/
platform_constructor_list.h 15 typedef T* (*Constructor)();
16 static const Constructor kConstructors[kPlatformCount];
platform_object_internal.h 17 typedef typename PlatformConstructorList<T>::Constructor Constructor;
22 // Look up the constructor in the constructor list.
23 Constructor constructor = PlatformConstructorList<T>::kConstructors[platform]; local
25 // Call the constructor.
26 return make_scoped_ptr(constructor());
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.h 21 class {{v8_class}}Constructor {
  /external/chromium_org/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::__anon21878::DPI
42 Constructor constructor; member in struct:v8::internal::compiler::__anon21878::ODPI
62 Constructor constructor; member in struct:v8::internal::compiler::__anon21878::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/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 42 // CHECK: private unnamed_addr constant [12 x i8] c"Constructor\00"
43 // CHECK: private unnamed_addr constant [41 x i8] c"NS::Constructor::Constructor(NS::Base *)\00"
44 // CHECK: private unnamed_addr constant [34 x i8] c"NS::Constructor::Constructor(int)\00"
45 // CHECK: 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}}
59 class X { X(); }; // expected-note+ {{candidate constructor}}
60 class Y { }; // expected-note+ {{candidate constructor (the implicit}}
98 const X x1{z}; // expected-error {{no matching constructor}}
99 const X& x2{z}; // expected-error {{no matching constructor}}
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [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/include/clang/AST/
ExprCXX.h     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
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");
    [all...]
SemaInit.cpp 380 // libstdc++4.6 marks the vector default constructor as explicit in
505 // Empty initialization requires a constructor call, so
506 // extend the initializer list to include the constructor
620 // Empty initialization requires a constructor call, so
621 // extend the initializer list to include the constructor
    [all...]
SemaDeclCXX.cpp 753 // constructor definition. If so, return true. If not, produce appropriate
761 // The definition of a constexpr constructor shall satisfy the following
    [all...]
SemaOverload.cpp 471 OS << " (by copy constructor)";
    [all...]
  /external/chromium_org/v8/src/
preparser.h 626 static PreParserIdentifier Constructor() {
2754 FunctionLiteralT constructor = this->EmptyFunctionLiteral(); local
    [all...]
  /external/clang/lib/Rewrite/Frontend/
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 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 738 milliseconds