Searched refs:start_position (Results 1 - 25 of 70) 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;
H A Dcodegen.cc173 os << shared->start_position() << "} ---\n";
176 int start = shared->start_position();
260 shared->start_position());
263 int source_len = shared->end_position() - shared->start_position() + 1;
284 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.cc594 int start_position) {
603 if (start_position != 0) previous_char = subject_vector[start_position - 1];
608 start_position,
613 if (start_position != 0) previous_char = subject_vector[start_position - 1];
618 start_position,
589 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.h76 int start_position)
79 script_position_(start_position),
90 static FunctionId function_id(int script_id, int start_position, argument
100 // Use script_id, start_position pair to uniquelly identify the node.
102 DCHECK(static_cast<unsigned>(start_position) < (1u << 31));
103 return (static_cast<uint64_t>(script_id) << 32) + (start_position << 1);
106 int start_position);
75 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
/external/v8/src/parsing/
H A Dpreparsed-scope-data.h27 int start_position, int end_position);
H A Dpreparser.cc131 formals.arity, kind, formals.has_rest, function_scope->start_position(),
200 CheckStrictOctalLiteral(function_scope->start_position(), end_pos, ok);
244 int start_position = scanner()->location().beg_pos; local
245 function_scope->set_start_position(start_position);
251 CheckArityRestrictions(formals.arity, kind, formals.has_rest, start_position,
280 CheckStrictOctalLiteral(start_position, end_position, CHECK_OK);
287 function_scope->start_position(), function_scope->end_position());
313 PreParserIdentifier name, int start_position, InferName infer) {
321 proxy = scope()->NewUnresolved(&factory, name.string_, start_position,
312 ExpressionFromIdentifier( PreParserIdentifier name, int start_position, InferName infer) argument
H A Dpreparsed-scope-data.cc33 int start_position, int end_position)
37 data->backing_store_.push_back(start_position);
31 ScopeScope(PreParsedScopeData* data, ScopeType scope_type, int start_position, int end_position) argument
H A Dscanner-character-streams.cc68 GenericStringUtf16CharacterStream(Handle<String> data, size_t start_position,
79 Handle<String> data, size_t start_position, size_t end_position)
81 DCHECK_GE(end_position, start_position);
83 end_position - start_position);
84 buffer_pos_ = start_position;
105 size_t start_position,
118 Handle<ExternalTwoByteString> data, size_t start_position,
120 : raw_data_(data->GetTwoByteData(static_cast<int>(start_position))),
121 start_pos_(start_position),
153 size_t start_position,
78 GenericStringUtf16CharacterStream( Handle<String> data, size_t start_position, size_t end_position) argument
117 ExternalTwoByteStringUtf16CharacterStream( Handle<ExternalTwoByteString> data, size_t start_position, size_t end_position) argument
[all...]
H A Dparse-info.h164 int start_position() const { return start_position_; } function in class:v8::internal::ParseInfo
165 void set_start_position(int start_position) { argument
166 start_position_ = start_position;
H A Dparse-info.cc54 set_start_position(shared->start_position());
116 p->set_start_position(shared->start_position());
/external/v8/src/debug/
H A Ddebug-scopes.h86 : scope_info(info), start_position(start), end_position(end) {}
88 : scope_info(info), start_position(-1), end_position(-1) {}
90 int start_position; member in struct:v8::internal::ScopeIterator::ExtendedScopeInfo
92 bool is_hidden() { return start_position == -1 && end_position == -1; }
H A Dliveedit.js267 if (compile_info[k].start_position > compile_info[j].start_position) {
538 info_node.info.start_position);
552 } else if (child.info.start_position >=
557 } else if (child.info.start_position <= chunk_it.current().pos1 &&
605 node.new_start_pos = chunk_it.TranslatePos(node.info.start_position);
642 if (new_children[new_index].info.start_position <
647 } else if (new_children[new_index].info.start_position ==
743 if (wrapper.start_position == compile_info.start_position
[all...]
H A Ddebug-scopes.cc82 shared_info->start_position(),
188 int start_position = 0; local
192 start_position = nested_scope_chain_.last().start_position;
195 start_position = js_function->shared()->start_position();
204 details->set(kScopeDetailsStartPositionIndex, Smi::FromInt(start_position));
843 if (scope->start_position() > function->shared()->start_position() &&
854 scope->scope_info(), scope->start_position(), scop
[all...]
H A Ddebug.cc143 position_ = debug_info->shared()->start_position();
693 if (shared->start_position() > *source_position) {
694 *source_position = shared->start_position();
1317 void GetBreakablePositions(Iterator* it, int start_position, int end_position, argument
1320 it->SkipToPosition(start_position, alignment);
1322 it->position() >= start_position) {
1329 void FindBreakablePositions(Handle<DebugInfo> debug_info, int start_position, argument
1334 GetBreakablePositions(&it, start_position, end_position, alignment,
1339 GetBreakablePositions(&it, start_position, end_position, alignment,
1345 bool Debug::GetPossibleBreakpoints(Handle<Script> script, int start_position, argument
1412 int start_position = shared->function_token_position(); local
[all...]
H A Dliveedit.h246 void SetInitialProperties(Handle<String> name, int start_position,
302 int start_position,
H A Dliveedit.cc610 int start_position,
616 this->SetSmiValueField(kStartPositionOffset_, start_position);
638 int start_position,
645 this->SetSmiValueField(kStartPositionOffset_, start_position);
932 int start_position = compile_info_wrapper.GetStartPosition(); local
934 shared_info->set_start_position(start_position);
1056 int old_function_start = info->start_position();
1601 info.SetInitialProperties(fun->name(), fun->start_position(),
609 SetInitialProperties(Handle<String> name, int start_position, int end_position, int param_num, int parent_index, int function_literal_id) argument
637 SetProperties(Handle<String> name, int start_position, int end_position, Handle<SharedFunctionInfo> info) argument
H A Ddebug-coverage.cc49 if (start == kNoSourcePosition) start = info->start_position();
/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/compiler-dispatcher/
H A Dcompiler-dispatcher-job.cc149 source, shared_->start_position(), shared_->end_position()));
173 length = (shared_->end_position() - shared_->start_position());
174 offset = shared_->start_position();
184 &content.ToOneByteVector().at(shared_->start_position()),
188 &content.ToUC16Vector().at(shared_->start_position()),
212 ScannerStream::For(wrapper_, shared_->start_position() - offset,
220 parse_info_->set_start_position(shared_->start_position());
244 parse_info_->end_position() - parse_info_->start_position());
449 parse_info_->start_position());
/external/v8/src/runtime/
H A Druntime-classes.cc104 int start_position, int end_position) {
176 handle(Smi::FromInt(start_position), isolate), STRICT),
194 CONVERT_SMI_ARG_CHECKED(start_position, 2);
198 isolate, DefineClass(isolate, super_class, constructor, start_position,
101 DefineClass(Isolate* isolate, Handle<Object> super_class, Handle<JSFunction> constructor, int start_position, int end_position) argument
/external/v8/src/ast/
H A Dast.cc189 VariableProxy::VariableProxy(Variable* var, int start_position) argument
190 : Expression(start_position, kVariableProxy),
201 VariableKind variable_kind, int start_position)
202 : Expression(start_position, kVariableProxy),
330 int FunctionLiteral::start_position() const { function in class:v8::internal::FunctionLiteral
331 return scope()->start_position();
200 VariableProxy(const AstRawString* name, VariableKind variable_kind, int start_position) argument

Completed in 283 milliseconds

123