Home
last modified time | relevance | path

Searched refs:is_constructor (Results 1 – 9 of 9) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
Djavascriptlintrules.py193 is_constructor = (
242 elif is_constructor and blank_lines != 3:
246 elif not is_file_overview and not is_constructor and blank_lines != 2:
293 not function.is_constructor and
Dstatetracker.py547 self.is_constructor = doc and doc.HasFlag('constructor')
605 return self.InFunction() and self._functions[-1].is_constructor
/external/v8/src/
Dframes.cc847 bool is_constructor = IsConstructor(); in Summarize() local
899 FrameSummary summary(receiver, function, code, pc_offset, is_constructor); in Summarize()
901 is_constructor = false; in Summarize()
905 ASSERT(!is_constructor); in Summarize()
906 is_constructor = true; in Summarize()
912 ASSERT(!is_constructor); in Summarize()
Dframes.h453 bool is_constructor) in FrameSummary() argument
458 is_constructor_(is_constructor) { } in FrameSummary()
464 bool is_constructor() { return is_constructor_; } in is_constructor() function
Disolate.cc650 Handle<Object> is_constructor = (frames[i].is_constructor()) ? in CaptureCurrentStackTrace() local
655 is_constructor, NONE)); in CaptureCurrentStackTrace()
Ddebug.h298 bool is_constructor);
Ddebug.cc1650 bool is_constructor) { in HandleStepIn() argument
1656 if (is_constructor) { in HandleStepIn()
Dapi.cc2087 i::Handle<i::Object> is_constructor = GetProperty(self, "isConstructor"); in IsConstructor() local
2088 return is_constructor->IsTrue(); in IsConstructor()
/external/v8/test/cctest/
Dtest-api.cc13605 int expected_column, bool is_eval, bool is_constructor, in checkStackFrame() argument
13620 CHECK_EQ(is_constructor, frame->IsConstructor()); in checkStackFrame()