HomeSort by relevance Sort by last modified time
    Searched refs:IsConstructor (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/v8/src/debug/
debug-frames.h 28 bool IsConstructor();
debug-frames.cc 85 bool FrameInspector::IsConstructor() {
88 : frame_->IsConstructor();
  /art/runtime/mirror/
method.cc 56 DCHECK(!method->IsConstructor()) << PrettyMethod(method);
101 DCHECK(method->IsConstructor()) << PrettyMethod(method);
  /art/compiler/driver/
dex_compilation_unit.h 85 bool IsConstructor() const {
  /external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
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())
typeannotation.py 79 def IsConstructor(self):
  /external/v8/src/js/
runtime.js 75 if (%IsConstructor(species)) {
  /external/v8/src/runtime/
runtime-function.cc 143 CHECK(fun->IsConstructor());
246 return isolate->heap()->ToBoolean(object->IsConstructor());
runtime-proxy.cc 99 DCHECK(target->IsConstructor());
runtime-array.cc 249 DCHECK(new_target->IsConstructor());
runtime-classes.cc 96 } else if (super_class->IsConstructor()) {
  /art/runtime/
reflection.cc 454 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
484 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
515 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
546 bool is_string_init = method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
593 if (declaring_class->IsStringClass() && m->IsConstructor()) {
    [all...]
instrumentation.cc 122 if (method->IsConstructor() &&
134 } else if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
150 if (is_class_initialized || !method->IsStatic() || method->IsConstructor()) {
    [all...]
art_method.h 278 bool IsConstructor() {
284 return IsConstructor() && IsStatic();
art_method-inl.h 230 return IsConstructor() || IsStatic();
art_method.cc 391 DCHECK(IsProxyMethod() && !IsConstructor());
  /art/runtime/verifier/
method_verifier.h 277 return IsConstructor() && !IsStatic();
305 bool IsConstructor() const {
    [all...]
method_verifier.cc 715 if (IsConstructor()) {
    [all...]
  /external/v8/src/
objects-debug.cc 26 CHECK(!IsConstructor() || IsCallable());
42 CHECK(!IsConstructor());
553 CHECK_EQ(IsConstructor(), bound_target_function()->IsConstructor());
837 CHECK_EQ(target()->IsConstructor(), map()->is_constructor());
    [all...]
frames.cc 808 bool JavaScriptFrame::IsConstructor() const {
865 IsConstructor(), mode);
923 if (frame->IsConstructor()) PrintF(file, "new ");
    [all...]
messages.h 60 bool IsConstructor();
    [all...]
  /art/compiler/dex/
dex_to_dex_compiler.cc 203 if (unit_.IsConstructor()) {
  /art/runtime/quick/
inline_method_analyser.cc 153 CHECK(target_method->IsConstructor());
292 DCHECK(method->IsConstructor());
496 if (method != nullptr && !method->IsStatic() && method->IsConstructor()) {
  /external/v8/src/parsing/
preparser.h 75 bool IsConstructor() const { return type_ == kConstructorIdentifier; }
650 static bool IsConstructor(PreParserIdentifier identifier) {
651 return identifier.IsConstructor();
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 456 resolved_method->IsConstructor())) {
    [all...]

Completed in 526 milliseconds

1 2 3