Home
last modified time | relevance | path

Searched refs:end_position (Results 1 – 25 of 46) sorted by relevance

12

/third_party/node/deps/v8/src/parsing/
Dpending-compilation-error-handler.h34 void ReportMessageAt(int start_position, int end_position,
37 void ReportMessageAt(int start_position, int end_position,
40 void ReportMessageAt(int start_position, int end_position,
44 void ReportWarningAt(int start_position, int end_position,
91 MessageDetails(int start_position, int end_position, in MessageDetails() argument
94 end_position_(end_position), in MessageDetails()
97 MessageDetails(int start_position, int end_position, in MessageDetails() argument
101 end_position_(end_position), in MessageDetails()
107 MessageDetails(int start_position, int end_position, in MessageDetails() argument
110 end_position_(end_position), in MessageDetails()
Dpending-compilation-error-handler.cc81 int end_position, in ReportMessageAt() argument
87 error_details_ = MessageDetails(start_position, end_position, message, arg); in ReportMessageAt()
91 int end_position, in ReportMessageAt() argument
97 error_details_ = MessageDetails(start_position, end_position, message, arg); in ReportMessageAt()
101 int end_position, in ReportMessageAt() argument
108 MessageDetails(start_position, end_position, message, arg0, arg1); in ReportMessageAt()
112 int end_position, in ReportWarningAt() argument
116 MessageDetails(start_position, end_position, message, arg)); in ReportWarningAt()
Dparser-base.h860 int end_position() const { return scanner_->location().end_pos; } in end_position() function
879 return (peek() == Token::SEMICOLON) ? peek_end_position() : end_position(); in PositionAfterSemicolon()
963 impl()->ReportMessageAt(Scanner::Location(start, end_position()),
1929 ClassifyParameter(name, beg_pos, end_position()); in ParsePrimaryExpression()
2169 Scanner::Location(start_pos, end_position()), in ParseArrayLiteral()
2175 Scanner::Location(start_pos, end_position()), in ParseArrayLiteral()
2321 Scanner::Location(start_pos, end_position()), in ParseProperty()
2324 Scanner::Location(start_pos, end_position()), in ParseProperty()
2539 initializer_scope->set_end_position(end_position()); in ParseMemberInitializer()
2571 initializer_scope->set_end_position(end_position()); in ParseClassStaticBlock()
[all …]
Dpreparse-data.cc293 byte_data_.WriteVarint32(function_scope->end_position()); in SaveDataForSkippableFunction()
348 byte_data_.WriteUint32(scope->end_position()); in SaveScopeAllocationData()
357 DCHECK_NE(scope->end_position(), kNoSourcePosition); in SaveDataForScope()
587 Zone* zone, int start_position, int* end_position, int* num_parameters, in GetDataForSkippableFunction() argument
597 *end_position = scope_data_->ReadVarint32(); in GetDataForSkippableFunction()
598 DCHECK_GT(*end_position, start_position); in GetDataForSkippableFunction()
639 DCHECK_EQ(end_position_from_data, scope->end_position()); in RestoreScopeAllocationData()
Dparser.cc657 CheckStrictOctalLiteral(beg_pos, end_position()); in DoParseProgram()
846 int end_position = shared_info->EndPosition(); in ParseFunction() local
910 isolate, maybe_outer_scope_info, info, start_position, end_position, in ParseFunction()
914 isolate, maybe_outer_scope_info, info, start_position, end_position, in ParseFunction()
934 function_scope->end_position(), function_name.get(), in ParseFunction()
940 int start_position, int end_position, in DoParseFunction() argument
1044 if (scanner()->location().end_pos == end_position) { in DoParseFunction()
1053 start_position, end_position); in DoParseFunction()
1080 ParseInfo* info, int start_position, int end_position, in DoParseDeserializedFunction() argument
1086 end_position); in DoParseDeserializedFunction()
[all …]
Dpreparser.cc334 CheckStrictOctalLiteral(start_position, end_position()); in ParseFunctionLiteral()
359 function_scope->end_position(), name, name_byte_length, is_one_byte); in ParseFunctionLiteral()
Dscanner-character-streams.cc183 size_t end_position() const { return position + length; } in end_position() function
190 while (position >= chunks_->back().end_position() && in FindChunk()
192 FetchChunk(chunks_->back().end_position(), stats); in FindChunk()
Dpreparse-data.h298 Zone* zone, int start_position, int* end_position, int* num_parameters,
Dpreparse-data-impl.h155 Zone* zone, int start_position, int* end_position, int* num_parameters,
Dparser.h144 int start_position, int end_position,
236 int start_position, int end_position,
242 ParseInfo* info, int start_position, int end_position,
/third_party/node/deps/v8/src/objects/
Dshared-function-info.cc372 int end_position = shared_info->EndPosition(); in DiscardCompiled() local
387 inferred_name_val, start_position, end_position); in DiscardCompiled()
558 lit->end_position(), preparse_data); in InitFromFunctionLiteral()
562 lit->end_position(), preparse_data); in InitFromFunctionLiteral()
568 lit->end_position()); in InitFromFunctionLiteral()
572 lit->end_position()); in InitFromFunctionLiteral()
681 return uncompiled_data().end_position(); in EndPosition()
698 void SharedFunctionInfo::SetPosition(int start_position, int end_position) { in SetPosition() argument
703 info.SetPositionInfo(start_position, end_position); in SetPosition()
712 uncompiled_data().set_end_position(end_position); in SetPosition()
Dshared-function-info.h120 String inferred_name, int start_position, int end_position,
258 V8_EXPORT_PRIVATE void SetPosition(int start_position, int end_position);
Dshared-function-info.tq116 end_position: int32;
/third_party/node/deps/v8/src/debug/
Dliveedit.cc539 : literal->end_position()), in SourcePositionEvent()
543 : position(is_start ? change.start_position : change.end_position), in SourcePositionEvent()
546 (change.end_position - change.start_position)) {} in SourcePositionEvent()
555 if (a.literal->end_position() != b.literal->end_position()) { in LessThan()
556 return a.literal->end_position() > b.literal->end_position(); in LessThan()
625 : event.literal->end_position() + delta; in CalculateFunctionLiteralChanges()
691 DCHECK(literal->end_position() != kNoSourcePosition); in MapLiterals()
696 literal->end_position()); in MapLiterals()
1227 return change.end_position < position; in TranslatePosition()
1229 if (it != diffs.end() && position == it->end_position) { in TranslatePosition()
[all …]
Dliveedit.h26 int end_position; member
Ddebug-scopes.cc141 const int end_pos = scope->end_position(); in RetrieveScopeChainDefaultConstructor()
179 const int end = scope->end_position(); in SetClosureScopeIfFound()
189 const int end = scope->end_position(); in ContainsPosition()
358 details->set(kScopeDetailsEndPositionIndex, Smi::FromInt(end_position())); in MaterializeScopeDetails()
376 int ScopeIterator::end_position() { in end_position() function in v8::internal::ScopeIterator
377 if (InInnerScope()) return current_scope_->end_position(); in end_position()
Ddebug.cc1625 void GetBreakablePositions(Iterator* it, int start_position, int end_position, in GetBreakablePositions() argument
1628 if (it->position() >= start_position && it->position() < end_position) { in GetBreakablePositions()
1636 int end_position, in FindBreakablePositions() argument
1640 GetBreakablePositions(&it, start_position, end_position, locations); in FindBreakablePositions()
1664 int end_position, bool restrict_to_function, in GetPossibleBreakpoints() argument
1679 FindBreakablePositions(debug_info, start_position, end_position, locations); in GetPossibleBreakpoints()
1686 end_position, &candidates)) { in GetPossibleBreakpoints()
1692 FindBreakablePositions(debug_info, start_position, end_position, locations); in GetPossibleBreakpoints()
1780 const int end_position = outer_shared->EndPosition(); in FindClosestSharedFunctionInfoFromPosition() local
1781 if (start_position == end_position) return outer_shared; in FindClosestSharedFunctionInfoFromPosition()
[all …]
Ddebug-scopes.h95 int end_position();
Ddebug-scope-iterator.cc119 ->GetSourceLocation(iterator_.end_position()); in GetEndLocation()
Ddebug.h288 int end_position, bool restrict_to_function,
316 Handle<Script> script, int start_position, int end_position,
/third_party/node/deps/v8/src/heap/
Dfactory-base.h180 int32_t end_position); in EXPORT_TEMPLATE_DECLARE()
184 int32_t end_position, Handle<PreparseData>); in EXPORT_TEMPLATE_DECLARE()
189 int32_t end_position); in EXPORT_TEMPLATE_DECLARE()
194 int32_t end_position, in EXPORT_TEMPLATE_DECLARE()
Dfactory-base.cc371 int32_t end_position) { in NewUncompiledDataWithoutPreparseData() argument
373 inferred_name, start_position, end_position, AllocationType::kOld); in NewUncompiledDataWithoutPreparseData()
379 Handle<String> inferred_name, int32_t start_position, int32_t end_position, in NewUncompiledDataWithPreparseData() argument
382 inferred_name, start_position, end_position, preparse_data, in NewUncompiledDataWithPreparseData()
390 int32_t end_position) { in NewUncompiledDataWithoutPreparseDataWithJob() argument
394 end_position, in NewUncompiledDataWithoutPreparseDataWithJob()
402 Handle<String> inferred_name, int32_t start_position, int32_t end_position, in NewUncompiledDataWithPreparseDataAndJob() argument
405 inferred_name, start_position, end_position, preparse_data, kNullAddress, in NewUncompiledDataWithPreparseDataAndJob()
/third_party/node/deps/v8/src/ast/
Dast.h638 int end_position() const { return end_position_; } in end_position() function
644 ReturnStatement(Expression* expression, Type type, int pos, int end_position) in ReturnStatement() argument
647 end_position_(end_position) { in ReturnStatement()
2181 int end_position() const;
2271 end_position() - (HasBracesField::decode(bit_field_) ? 1 : 0)); in return_position()
2491 int end_position() const { return end_position_; } in end_position() function
2526 int start_position, int end_position, in ClassLiteral() argument
2531 end_position_(end_position), in ClassLiteral()
2892 int end_position = ReturnStatement::kFunctionLiteralReturnPosition) {
2894 pos, end_position);
[all …]
/third_party/node/deps/v8/src/compiler-dispatcher/
Dlazy-compile-dispatcher.cc126 uncompiled_data.end_position(), preparse_data); in SetUncompiledDataJobPointer()
138 uncompiled_data.end_position()); in SetUncompiledDataJobPointer()
/third_party/node/deps/v8/src/logging/
Dlog.h154 int start_position, int end_position,
157 int start_position, int end_position,

12