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

123

/external/v8/src/
H A Dpending-compilation-error-handler.h33 void ReportMessageAt(int start_position, int end_position, argument
39 start_position_ = start_position;
47 void ReportMessageAt(int start_position, int end_position, argument
53 start_position_ = start_position;
61 void ReportMessageAt(int start_position, int end_position, argument
66 start_position_ = start_position;
H A Dcodegen.cc170 shared->start_position());
173 int source_len = shared->end_position() - shared->start_position() + 1;
194 os << "source_position = " << shared->start_position() << "\n";
H A Djson-parser.cc342 int start_position = position_; local
352 position_ = start_position;
434 int start_position = position_; local
444 position_ = start_position;
/external/v8/src/regexp/
H A Dinterpreter-irregexp.h23 int start_position);
H A Dinterpreter-irregexp.cc593 int start_position) {
602 if (start_position != 0) previous_char = subject_vector[start_position - 1];
607 start_position,
612 if (start_position != 0) previous_char = subject_vector[start_position - 1];
617 start_position,
588 Match( Isolate* isolate, Handle<ByteArray> code_array, Handle<String> subject, int* registers, int start_position) argument
/external/v8/src/profiler/
H A Dsampling-heap-profiler.h75 int start_position)
78 script_position_(start_position),
89 static FunctionId function_id(int script_id, int start_position, argument
99 // Use script_id, start_position pair to uniquelly identify the node.
101 DCHECK(static_cast<unsigned>(start_position) < (1u << 31));
102 return (static_cast<uint64_t>(script_id) << 32) + (start_position << 1);
105 int start_position);
74 AllocationNode(AllocationNode* parent, const char* name, int script_id, int start_position) argument
H A Dsampling-heap-profiler.cc143 int start_position) {
144 FunctionId id = function_id(script_id, start_position, name);
150 auto child = new AllocationNode(this, name, script_id, start_position);
205 node = node->FindOrAddChildNode(name, script_id, shared->start_position());
141 FindOrAddChildNode(const char* name, int script_id, int start_position) argument
H A Dprofiler-listener.cc92 int start_position = shared->start_position(); local
105 if (position < start_position || position >= end_position) continue;
/external/v8/src/debug/
H A Ddebug-scopes.h88 : scope_info(info), start_position(start), end_position(end) {}
90 : scope_info(info), start_position(-1), end_position(-1) {}
92 int start_position; member in struct:v8::internal::ScopeIterator::ExtendedScopeInfo
94 bool is_hidden() { return start_position == -1 && end_position == -1; }
H A Dliveedit.js268 if (compile_info[k].start_position > compile_info[j].start_position) {
612 info_node.info.start_position);
626 } else if (child.info.start_position >=
631 } else if (child.info.start_position <= chunk_it.current().pos1 &&
679 node.new_start_pos = chunk_it.TranslatePos(node.info.start_position);
716 if (new_children[new_index].info.start_position <
721 } else if (new_children[new_index].info.start_position ==
815 if (wrapper.start_position == compile_info.start_position
[all...]
H A Ddebug-scopes.cc77 shared_info->start_position(),
152 int start_position = 0; local
156 start_position = nested_scope_chain_.last().start_position;
159 start_position = js_function->shared()->start_position();
168 details->set(kScopeDetailsStartPositionIndex, Smi::FromInt(start_position));
801 scope->start_position(),
806 int beg_pos = inner_scope->start_position();
H A Dliveedit.h291 void SetInitialProperties(Handle<String> name, int start_position,
360 int start_position,
H A Ddebug.cc89 debug_info_->shared()->start_position() - 1;
137 rinfo()->data() - debug_info_->shared()->start_position());
142 debug_info_->shared()->start_position());
189 start_position_(debug_info->shared()->start_position()) {
813 if (shared->start_position() > *source_position) {
816 position = *source_position - shared->start_position();
833 *source_position = position + shared->start_position();
1405 int start_position = shared->function_token_position(); local
1406 if (start_position == RelocInfo::kNoPosition) {
1407 start_position
[all...]
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dmerge.h88 size_t start_position, size_t input_length,
H A Dmerge.cc311 size_t start_position, size_t input_length,
344 // (2) w16_bestIndex + input_length < start_position.
346 start_index = std::max(start_position, start_index);
371 ((best_correlation_index + input_length) < start_position)) {
310 CorrelateAndPeakSearch(int16_t expanded_max, int16_t input_max, size_t start_position, size_t input_length, size_t expand_period) const argument
/external/v8/src/parsing/
H A Dscanner-character-streams.cc133 Handle<String> data, size_t start_position, size_t end_position)
135 DCHECK(end_position >= start_position);
136 pos_ = start_position;
565 Handle<ExternalTwoByteString> data, int start_position,
569 raw_data_(data->GetTwoByteData(start_position)),
572 buffer_end_ = raw_data_ + (end_position - start_position);
573 pos_ = start_position;
132 GenericStringUtf16CharacterStream( Handle<String> data, size_t start_position, size_t end_position) argument
564 ExternalTwoByteStringUtf16CharacterStream( Handle<ExternalTwoByteString> data, int start_position, int end_position) argument
H A Dscanner-character-streams.h47 GenericStringUtf16CharacterStream(Handle<String> data, size_t start_position,
155 int start_position,
H A Dpreparser.cc124 int start_position = peek_position(); local
137 CheckStrictOctalLiteral(start_position, end_pos, &ok);
138 CheckDecimalLiteralWithLeadingZero(use_counts, start_position, end_pos);
1108 int start_position = scanner()->location().beg_pos; local
1109 function_scope->set_start_position(start_position);
1115 CheckArityRestrictions(formals.arity, kind, formals.has_rest, start_position,
1145 CheckStrictOctalLiteral(start_position, end_position, CHECK_OK);
1146 CheckDecimalLiteralWithLeadingZero(use_counts_, start_position,
H A Dpreparser.h836 PreParserIdentifier name, int start_position, int end_position,
1051 int start_position = scanner()->peek_location().beg_pos; local
1058 CheckStrictOctalLiteral(start_position, scanner()->location().end_pos,
1060 CheckDecimalLiteralWithLeadingZero(use_counts_, start_position,
835 ExpressionFromIdentifier( PreParserIdentifier name, int start_position, int end_position, Scope* scope, PreParserFactory* factory) argument
/external/v8/src/js/
H A Dmessages.js189 var start_position = %MessageGetStartPosition(message);
190 if (start_position == -1) return kNoLineNumberInfo;
192 var location = script.locationFromPosition(start_position, true);
201 var start_position = %MessageGetStartPosition(message);
202 var location = script.locationFromPosition(start_position, true);
212 var start_position = %MessageGetStartPosition(message);
213 var location = script.locationFromPosition(start_position, true);
/external/v8/src/runtime/
H A Druntime-classes.cc87 int start_position, int end_position) {
165 handle(Smi::FromInt(start_position), isolate), STRICT),
182 CONVERT_SMI_ARG_CHECKED(start_position, 2);
186 isolate, DefineClass(isolate, super_class, constructor, start_position,
84 DefineClass(Isolate* isolate, Handle<Object> super_class, Handle<JSFunction> constructor, int start_position, int end_position) argument
/external/v8/src/ast/
H A Dscopes.h177 int start_position = RelocInfo::kNoPosition,
184 factory->NewVariableProxy(name, kind, start_position, end_position);
296 int start_position() const { return start_position_; } function in class:v8::internal::Scope
H A Dast.cc93 VariableProxy::VariableProxy(Zone* zone, Variable* var, int start_position, argument
95 : Expression(zone, start_position),
106 Variable::Kind variable_kind, int start_position,
108 : Expression(zone, start_position),
223 int FunctionLiteral::start_position() const { function in class:v8::internal::FunctionLiteral
224 return scope()->start_position();
105 VariableProxy(Zone* zone, const AstRawString* name, Variable::Kind variable_kind, int start_position, int end_position) argument
H A Dast.h1737 VariableProxy(Zone* zone, Variable* var, int start_position,
1741 Variable::Kind variable_kind, int start_position,
2593 int start_position() const;
2595 int SourceSize() const { return end_position() - start_position(); }
2777 int start_position() const { return position(); } function in class:v8::internal::final
2813 ZoneList<Property*>* properties, int start_position,
2815 : Expression(zone, start_position),
3318 int start_position = RelocInfo::kNoPosition,
3321 VariableProxy(parser_zone_, var, start_position, end_position);
3326 int start_position
2811 ClassLiteral(Zone* zone, Scope* scope, VariableProxy* class_variable_proxy, Expression* extends, FunctionLiteral* constructor, ZoneList<Property*>* properties, int start_position, int end_position) argument
3469 NewClassLiteral(Scope* scope, VariableProxy* proxy, Expression* extends, FunctionLiteral* constructor, ZoneList<ObjectLiteral::Property*>* properties, int start_position, int end_position) argument
[all...]
/external/v8/include/
H A Dv8-profiler.h471 int start_position; member in struct:v8::AllocationProfile::Node

Completed in 869 milliseconds

123