Home
last modified time | relevance | path

Searched refs:start_position (Results 1 - 25 of 63) sorted by relevance

123

/third_party/node/deps/v8/src/parsing/
H A 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
93 : start_position_(start_position), in MessageDetails()
97 MessageDetails(int start_position, int end_position, in MessageDetails() argument
100 : start_position_(start_position), in MessageDetails()
107 MessageDetails(int start_position, int end_position, in MessageDetails() argument
109 : start_position_(start_position), in MessageDetails()
[all...]
H A Dpending-compilation-error-handler.cc80 void PendingCompilationErrorHandler::ReportMessageAt(int start_position, in ReportMessageAt() argument
87 error_details_ = MessageDetails(start_position, end_position, message, arg); in ReportMessageAt()
90 void PendingCompilationErrorHandler::ReportMessageAt(int start_position, in ReportMessageAt() argument
97 error_details_ = MessageDetails(start_position, end_position, message, arg); in ReportMessageAt()
100 void PendingCompilationErrorHandler::ReportMessageAt(int start_position, in ReportMessageAt() argument
108 MessageDetails(start_position, end_position, message, arg0, arg1); in ReportMessageAt()
111 void PendingCompilationErrorHandler::ReportWarningAt(int start_position, in ReportWarningAt() argument
116 MessageDetails(start_position, end_position, message, arg)); in ReportWarningAt()
H A Dpreparser.cc86 int start_position = peek_position(); in PreParseProgram() local
93 CheckStrictOctalLiteral(start_position, scanner()->location().end_pos); in PreParseProgram()
154 function_scope->start_position(), in PreParseFunction()
243 CheckStrictOctalLiteral(function_scope->start_position(), end_pos); in PreParseFunction()
301 int start_position = position(); in ParseFunctionLiteral() local
302 function_scope->set_start_position(start_position); in ParseFunctionLiteral()
313 start_position, formals_end_position); in ParseFunctionLiteral()
334 CheckStrictOctalLiteral(start_position, end_position()); in ParseFunctionLiteral()
358 event_name, flags().script_id(), ms, function_scope->start_position(), in ParseFunctionLiteral()
H A Dparser.cc845 int start_position = shared_info->StartPosition(); in ParseFunction() local
858 start_position) { in ParseFunction()
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()
933 function_scope->start_position(), in ParseFunction()
940 int start_position, int end_position, in DoParseFunction()
994 scope->set_start_position(start_position); in DoParseFunction()
1053 start_position, end_position); in DoParseFunction()
1080 ParseInfo* info, int start_position, int end_position, in DoParseDeserializedFunction()
1085 isolate, maybe_outer_scope_info, start_position, function_literal_i in DoParseDeserializedFunction()
939 DoParseFunction(Isolate* isolate, ParseInfo* info, int start_position, int end_position, int function_literal_id, const AstRawString* raw_name) DoParseFunction() argument
1078 DoParseDeserializedFunction( Isolate* isolate, MaybeHandle<ScopeInfo> maybe_outer_scope_info, ParseInfo* info, int start_position, int end_position, int function_literal_id, const AstRawString* raw_name) DoParseDeserializedFunction() argument
3415 ParseOnBackground(LocalIsolate* isolate, ParseInfo* info, int start_position, int end_position, int function_literal_id) ParseOnBackground() argument
[all...]
H A Dparser.h144 int start_position, int end_position,
236 int start_position, int end_position,
242 ParseInfo* info, int start_position, int end_position,
814 int start_position) { in ExpressionFromPrivateName()
816 name, NORMAL_VARIABLE, start_position); in ExpressionFromPrivateName()
822 const AstRawString* name, int start_position, in ExpressionFromIdentifier()
827 return expression_scope()->NewVariable(name, start_position); in ExpressionFromIdentifier()
831 int start_position) { in DeclareIdentifier()
832 expression_scope()->Declare(name, start_position); in DeclareIdentifier()
812 ExpressionFromPrivateName( PrivateNameScopeIterator* private_name_scope, const AstRawString* name, int start_position) ExpressionFromPrivateName() argument
821 ExpressionFromIdentifier( const AstRawString* name, int start_position, InferName infer = InferName::kYes) ExpressionFromIdentifier() argument
830 DeclareIdentifier(const AstRawString* name, int start_position) DeclareIdentifier() argument
H A Dpreparse-data.cc292 byte_data_.WriteVarint32(function_scope->start_position()); in SaveDataForSkippableFunction()
347 byte_data_.WriteUint32(scope->start_position()); in SaveScopeAllocationData()
587 Zone* zone, int start_position, int* end_position, int* num_parameters, in GetDataForSkippableFunction()
596 CHECK_EQ(start_position, start_position_from_data); in GetDataForSkippableFunction()
598 DCHECK_GT(*end_position, start_position); in GetDataForSkippableFunction()
638 DCHECK_EQ(start_position_from_data, scope->start_position()); in RestoreScopeAllocationData()
586 GetDataForSkippableFunction( Zone* zone, int start_position, int* end_position, int* num_parameters, int* function_length, int* num_inner_functions, bool* uses_super_property, LanguageMode* language_mode) GetDataForSkippableFunction() argument
/third_party/node/deps/v8/src/regexp/
H A Dregexp-interpreter.h31 int* output_registers, int output_register_count, int start_position);
45 static Result MatchForCallFromJs(Address subject, int32_t start_position,
55 int total_register_count, int start_position,
62 int start_position, RegExp::CallOrigin call_origin);
H A Dregexp-interpreter.cc1058 int* output_registers, int output_register_count, int start_position, in Match()
1068 start_position, call_origin, regexp.backtrack_limit()); in Match()
1074 int start_position, RegExp::CallOrigin call_origin, in MatchInternal()
1098 if (start_position != 0) previous_char = subject_vector[start_position - 1]; in MatchInternal()
1101 total_register_count, start_position, previous_char, in MatchInternal()
1107 if (start_position != 0) previous_char = subject_vector[start_position - 1]; in MatchInternal()
1110 total_register_count, start_position, previous_char, in MatchInternal()
1120 Address subject, int32_t start_position, Addres in MatchForCallFromJs()
1056 Match( Isolate* isolate, JSRegExp regexp, String subject_string, int* output_registers, int output_register_count, int start_position, RegExp::CallOrigin call_origin) Match() argument
1071 MatchInternal( Isolate* isolate, ByteArray code_array, String subject_string, int* output_registers, int output_register_count, int total_register_count, int start_position, RegExp::CallOrigin call_origin, uint32_t backtrack_limit) MatchInternal() argument
1119 MatchForCallFromJs( Address subject, int32_t start_position, Address, Address, int* output_registers, int32_t output_register_count, RegExp::CallOrigin call_origin, Isolate* isolate, Address regexp) MatchForCallFromJs() argument
1147 MatchForCallFromRuntime( Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject_string, int* output_registers, int output_register_count, int start_position) MatchForCallFromRuntime() argument
[all...]
/third_party/node/deps/v8/src/debug/
H A Dliveedit.cc538 : position(is_start ? literal->start_position() in SourcePositionEvent()
543 : position(is_start ? change.start_position : change.end_position), in SourcePositionEvent()
546 (change.end_position - change.start_position)) {} in SourcePositionEvent()
565 if (a.literal->start_position() != b.literal->start_position()) { in LessThan()
566 return a.literal->start_position() > b.literal->start_position(); in LessThan()
635 : event.literal->start_position() + delta, in CalculateFunctionLiteralChanges()
690 DCHECK(literal->start_position() != kNoSourcePosition); in MapLiterals()
695 : std::make_pair(literal->start_position(), in MapLiterals()
811 int start_position = sfi.StartPosition(); Lookup() local
866 int start_position = literal->start_position(); GetFuncId() local
878 int start_position = sfi.StartPosition(); GetFuncId() local
[all...]
H A 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()
1635 void FindBreakablePositions(Handle<DebugInfo> debug_info, int start_position, in FindBreakablePositions() argument
1640 GetBreakablePositions(&it, start_position, end_position, locations); in FindBreakablePositions()
1663 bool Debug::GetPossibleBreakpoints(Handle<Script> script, int start_position, in GetPossibleBreakpoints() argument
1669 FindInnermostContainingFunctionInfo(script, start_position); in GetPossibleBreakpoints()
1679 FindBreakablePositions(debug_info, start_position, end_position, locations); in GetPossibleBreakpoints()
1685 if (!FindSharedFunctionInfosIntersectingRange(script, start_position, in GetPossibleBreakpoints()
1692 FindBreakablePositions(debug_info, start_position, end_position, locations); in GetPossibleBreakpoints()
1706 int start_position in NewCandidate() local
1779 const int start_position = outer_shared->StartPosition(); FindClosestSharedFunctionInfoFromPosition() local
1806 FindSharedFunctionInfosIntersectingRange( Handle<Script> script, int start_position, int end_position, std::vector<Handle<SharedFunctionInfo>>* intersecting_shared) FindSharedFunctionInfosIntersectingRange() argument
[all...]
H A Dliveedit.h25 int start_position; member
H A Ddebug-scopes.cc140 const int beg_pos = scope->start_position(); in RetrieveScopeChainDefaultConstructor()
178 const int start = scope->start_position(); in SetClosureScopeIfFound()
188 const int start = scope->start_position(); in ContainsPosition()
357 Smi::FromInt(start_position())); in MaterializeScopeDetails()
370 int ScopeIterator::start_position() { in start_position() function in v8::internal::__anon14467::ScopeChainRetriever::ScopeIterator
371 if (InInnerScope()) return current_scope_->start_position(); in start_position()
H A Ddebug-scopes.h94 int start_position();
/third_party/node/deps/v8/src/profiler/
H A Dsampling-heap-profiler.h52 int start_position, uint32_t id) in AllocationNode()
55 script_position_(start_position), in AllocationNode()
71 static FunctionId function_id(int script_id, int start_position, in function_id() argument
81 // Use script_id, start_position pair to uniquelly identify the node. in function_id()
83 DCHECK(static_cast<unsigned>(start_position) < (1u << 31)); in function_id()
84 return (static_cast<uint64_t>(script_id) << 32) + (start_position << 1); in function_id()
166 int script_id, int start_position);
51 AllocationNode(AllocationNode* parent, const char* name, int script_id, int start_position, uint32_t id) AllocationNode() argument
H A Dsampling-heap-profiler.cc118 int start_position) { in FindOrAddChildNode()
120 AllocationNode::function_id(script_id, start_position, name); in FindOrAddChildNode()
127 parent, name, script_id, start_position, next_node_id()); in FindOrAddChildNode()
116 FindOrAddChildNode( AllocationNode* parent, const char* name, int script_id, int start_position) FindOrAddChildNode() argument
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-string-gen.h70 const TNode<IntPtrT> start_position);
74 const TNode<IntPtrT> start_position);
78 const TNode<IntPtrT> start_position);
82 const TNode<IntPtrT> start_position);
85 const TNode<RawPtrT> search_ptr, const TNode<IntPtrT> start_position);
101 const TNode<IntPtrT> start_position);
H A Dbuiltins-string-gen.cc54 const TNode<IntPtrT> start_position) { in CallSearchStringRaw()
69 std::make_pair(type_intptr, start_position))); in CallSearchStringRaw()
76 const TNode<IntPtrT> start_position) { in SearchOneByteStringInTwoByteString()
78 subject_ptr, subject_length, search_ptr, search_length, start_position); in SearchOneByteStringInTwoByteString()
83 const TNode<IntPtrT> start_position) { in SearchOneByteStringInOneByteString()
85 subject_ptr, subject_length, search_ptr, search_length, start_position); in SearchOneByteStringInOneByteString()
90 const TNode<IntPtrT> start_position) { in SearchTwoByteStringInTwoByteString()
92 subject_ptr, subject_length, search_ptr, search_length, start_position); in SearchTwoByteStringInTwoByteString()
97 const TNode<IntPtrT> start_position) { in SearchTwoByteStringInOneByteString()
99 subject_ptr, subject_length, search_ptr, search_length, start_position); in SearchTwoByteStringInOneByteString()
51 CallSearchStringRaw( const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length, const TNode<RawPtrT> search_ptr, const TNode<IntPtrT> search_length, const TNode<IntPtrT> start_position) CallSearchStringRaw() argument
73 SearchOneByteStringInTwoByteString( const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length, const TNode<RawPtrT> search_ptr, const TNode<IntPtrT> search_length, const TNode<IntPtrT> start_position) SearchOneByteStringInTwoByteString() argument
80 SearchOneByteStringInOneByteString( const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length, const TNode<RawPtrT> search_ptr, const TNode<IntPtrT> search_length, const TNode<IntPtrT> start_position) SearchOneByteStringInOneByteString() argument
87 SearchTwoByteStringInTwoByteString( const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length, const TNode<RawPtrT> search_ptr, const TNode<IntPtrT> search_length, const TNode<IntPtrT> start_position) SearchTwoByteStringInTwoByteString() argument
94 SearchTwoByteStringInOneByteString( const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length, const TNode<RawPtrT> search_ptr, const TNode<IntPtrT> search_length, const TNode<IntPtrT> start_position) SearchTwoByteStringInOneByteString() argument
101 SearchOneByteInOneByteString( const TNode<RawPtrT> subject_ptr, const TNode<IntPtrT> subject_length, const TNode<RawPtrT> search_ptr, const TNode<IntPtrT> start_position) SearchOneByteInOneByteString() argument
[all...]
/third_party/node/deps/v8/src/objects/
H A Dshared-function-info.cc371 int start_position = shared_info->StartPosition(); in DiscardCompiled() local
387 inferred_name_val, start_position, end_position); in DiscardCompiled()
500 lit->start_position()); in InitFromFunctionLiteral()
557 lit->GetInferredName(isolate), lit->start_position(), in InitFromFunctionLiteral()
561 lit->GetInferredName(isolate), lit->start_position(), in InitFromFunctionLiteral()
567 lit->GetInferredName(isolate), lit->start_position(), in InitFromFunctionLiteral()
571 lit->GetInferredName(isolate), lit->start_position(), in InitFromFunctionLiteral()
630 int start_position) { in SetFunctionTokenPosition()
635 offset = start_position - function_token_position; in SetFunctionTokenPosition()
654 return uncompiled_data().start_position(); in StartPosition()
629 SetFunctionTokenPosition(int function_token_position, int start_position) SetFunctionTokenPosition() argument
698 SetPosition(int start_position, int end_position) SetPosition() argument
[all...]
H A 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);
610 int start_position);
/third_party/ffmpeg/libavcodec/
H A Dcbs_sei_syntax_template.c160 int start_position, current_position, bits_written; in message() local
166 start_position = bit_position(rw); in message()
171 bits_written = current_position - start_position; in message()
215 current->payload_size = (put_bits_count(rw) - start_position) / 8; in message()
/third_party/node/deps/v8/src/heap/
H A Dfactory-base.h179 int32_t start_position,
183 Handle<String> inferred_name, int32_t start_position,
188 int32_t start_position,
193 int32_t start_position,
H A Dfactory-base.cc370 Handle<String> inferred_name, int32_t start_position, in NewUncompiledDataWithoutPreparseData()
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()
382 inferred_name, start_position, end_position, preparse_data, in NewUncompiledDataWithPreparseData()
389 Handle<String> inferred_name, int32_t start_position, in NewUncompiledDataWithoutPreparseDataWithJob()
393 start_position, in NewUncompiledDataWithoutPreparseDataWithJob()
402 Handle<String> inferred_name, int32_t start_position, int32_t end_position, in NewUncompiledDataWithPreparseDataAndJob()
405 inferred_name, start_position, end_position, preparse_data, kNullAddress, in NewUncompiledDataWithPreparseDataAndJob()
369 NewUncompiledDataWithoutPreparseData( Handle<String> inferred_name, int32_t start_position, int32_t end_position) NewUncompiledDataWithoutPreparseData() argument
378 NewUncompiledDataWithPreparseData( Handle<String> inferred_name, int32_t start_position, int32_t end_position, Handle<PreparseData> preparse_data) NewUncompiledDataWithPreparseData() argument
388 NewUncompiledDataWithoutPreparseDataWithJob( Handle<String> inferred_name, int32_t start_position, int32_t end_position) NewUncompiledDataWithoutPreparseDataWithJob() argument
401 NewUncompiledDataWithPreparseDataAndJob( Handle<String> inferred_name, int32_t start_position, int32_t end_position, Handle<PreparseData> preparse_data) NewUncompiledDataWithPreparseDataAndJob() argument
/third_party/node/deps/v8/src/regexp/experimental/
H A Dexperimental.h33 static int32_t MatchForCallFromJs(Address subject, int32_t start_position,
/third_party/node/deps/v8/src/ast/
H A Dast.h1549 VariableProxy(Variable* var, int start_position);
1552 int start_position) in VariableProxy()
1553 : Expression(start_position, kVariableProxy), in VariableProxy()
2180 int start_position() const;
2270 start_position(), in return_position()
2490 int start_position() const { return position(); } in start_position() function in v8::internal::final
2526 int start_position, int end_position, in ClassLiteral()
2530 : Expression(start_position, kClassLiteral), in ClassLiteral()
3066 int start_position = kNoSourcePosition) { in NewVariableProxy()
3067 return zone_->New<VariableProxy>(var, start_position); in NewVariableProxy()
1551 VariableProxy(const AstRawString* name, VariableKind variable_kind, int start_position) VariableProxy() argument
2520 ClassLiteral(ClassScope* scope, Expression* extends, FunctionLiteral* constructor, ZonePtrList<Property>* public_members, ZonePtrList<Property>* private_members, FunctionLiteral* static_initializer, FunctionLiteral* instance_members_initializer_function, int start_position, int end_position, bool has_static_computed_names, bool is_anonymous, bool has_private_methods, Variable* home_object, Variable* static_home_object) ClassLiteral() argument
3271 NewClassLiteral( ClassScope* scope, Expression* extends, FunctionLiteral* constructor, ZonePtrList<ClassLiteral::Property>* public_members, ZonePtrList<ClassLiteral::Property>* private_members, FunctionLiteral* static_initializer, FunctionLiteral* instance_members_initializer_function, int start_position, int end_position, bool has_static_computed_names, bool is_anonymous, bool has_private_methods, Variable* home_object, Variable* static_home_object) NewClassLiteral() argument
[all...]
/third_party/node/deps/v8/src/web-snapshot/
H A Dweb-snapshot.cc1759 int shared_function_info_index, uint32_t start_position, uint32_t length, in CreateJSFunction()
1768 roots_.empty_string_handle(), start_position, in CreateJSFunction()
1769 start_position + length); in CreateJSFunction()
1788 handle(Smi::FromInt(start_position), isolate_), in CreateJSFunction()
1850 uint32_t start_position; in DeserializeFunctions() local
1854 if (!deserializer_.ReadUint32(&start_position) || in DeserializeFunctions()
1865 CreateJSFunction(current_function_count_ + 1, start_position, length, in DeserializeFunctions()
1909 uint32_t start_position; in DeserializeClasses() local
1913 if (!deserializer_.ReadUint32(&start_position) || in DeserializeClasses()
1924 function_count_ + current_class_count_ + 1, start_position, lengt in DeserializeClasses()
1758 CreateJSFunction( int shared_function_info_index, uint32_t start_position, uint32_t length, uint32_t parameter_count, uint32_t flags, uint32_t context_id) CreateJSFunction() argument
[all...]

Completed in 38 milliseconds

123