/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
D | typeannotation_test.py | 142 self.assertFalse(self._ParseType('').IsConstructor()) 143 self.assertFalse(self._ParseType('Array.<number>').IsConstructor()) 144 self.assertTrue(self._ParseType('function(new:T)').IsConstructor())
|
D | typeannotation.py | 79 def IsConstructor(self): member in TypeAnnotation
|
/external/v8/src/debug/ |
D | debug-frames.cc | 77 bool FrameInspector::IsConstructor() { in IsConstructor() function in v8::internal::FrameInspector 80 : frame_->IsConstructor(); in IsConstructor()
|
D | debug-frames.h | 28 bool IsConstructor();
|
/external/v8/src/js/ |
D | runtime.js | 152 if (%IsConstructor(species)) {
|
D | array.js | 1780 result = %IsConstructor(this) ? new this() : []; 1808 result = %IsConstructor(this) ? new this(len) : new GlobalArray(len); 1831 var array = %IsConstructor(constructor) ? new constructor(length) : [];
|
/external/v8/src/runtime/ |
D | runtime-function.cc | 129 RUNTIME_ASSERT(fun->IsConstructor()); in RUNTIME_FUNCTION() 232 return isolate->heap()->ToBoolean(object->IsConstructor()); in RUNTIME_FUNCTION()
|
D | runtime-proxy.cc | 104 DCHECK(target->IsConstructor()); in RUNTIME_FUNCTION()
|
D | runtime-generator.cc | 25 if (frame->IsConstructor()) { in RUNTIME_FUNCTION()
|
D | runtime-internal.cc | 358 CALLSITE_GET(IsConstructor, ReturnBoolean) in CALLSITE_GET()
|
D | runtime-array.cc | 250 DCHECK(new_target->IsConstructor()); in ArrayConstructorCommon()
|
D | runtime-classes.cc | 97 } else if (super_class->IsConstructor()) { in DefineClass()
|
D | runtime.h | 242 F(IsConstructor, 1, 1) \
|
/external/v8/src/ |
D | objects-debug.cc | 25 CHECK(!IsConstructor() || IsCallable()); in ObjectVerify() 41 CHECK(!IsConstructor()); in SmiVerify() 560 CHECK_EQ(IsConstructor(), bound_target_function()->IsConstructor()); in JSBoundFunctionVerify() 841 CHECK_EQ(target()->IsConstructor(), map()->is_constructor()); in JSProxyVerify()
|
D | frames.cc | 744 bool JavaScriptFrame::IsConstructor() const { in IsConstructor() function in v8::internal::JavaScriptFrame 805 IsConstructor()); in Summarize() 858 if (frame->IsConstructor()) PrintF(file, "new "); in PrintTop() 948 bool is_constructor = IsConstructor(); in Summarize() 1197 if (IsConstructor()) accumulator->Add("new "); in Print()
|
D | messages.h | 63 bool IsConstructor();
|
D | messages.cc | 314 bool CallSite::IsConstructor() { in IsConstructor() function in v8::internal::CallSite
|
D | frames.h | 591 bool IsConstructor() const;
|
D | factory.cc | 1987 target_function->IsConstructor() in NewJSBoundFunction() 1996 DCHECK_EQ(target_function->IsConstructor(), map->is_constructor()); in NewJSBoundFunction() 2017 if (target->IsConstructor()) { in NewJSProxy()
|
/external/v8/src/parsing/ |
D | preparser.h | 66 bool IsConstructor() const { return type_ == kConstructorIdentifier; } in IsConstructor() function 636 static bool IsConstructor(PreParserIdentifier identifier) { in IsConstructor() function 637 return identifier.IsConstructor(); in IsConstructor()
|
D | parser-base.h | 892 bool IsConstructor() { in IsConstructor() function 1752 if (in_class && !is_static && this->IsConstructor(*name)) { in ParsePropertyDefinition() 3360 } else if (IsConstructor()) { in CheckProperty()
|
D | parser.h | 372 bool IsConstructor(const AstRawString* identifier) const;
|
/external/v8/src/compiler/ |
D | js-inlining.cc | 308 !function->IsConstructor()) { in ReduceJSCall()
|
D | js-call-reducer.cc | 399 if (!function->IsConstructor()) { in ReduceJSCallConstruct()
|
/external/clang/lib/Parse/ |
D | ParseDecl.cpp | 4631 bool IsConstructor = false; in isConstructorDeclarator() local 4633 IsConstructor = true; in isConstructorDeclarator() 4666 IsConstructor = true; in isConstructorDeclarator() 4681 IsConstructor = IsUnqualified; in isConstructorDeclarator() 4686 IsConstructor = true; in isConstructorDeclarator() 4692 return IsConstructor; in isConstructorDeclarator()
|