HomeSort by relevance Sort by last modified time
    Searched refs:start_position (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/v8/src/regexp/
interpreter-irregexp.h 23 int start_position);
interpreter-irregexp.cc 593 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,
  /external/v8/src/
pending-compilation-error-handler.h 33 void ReportMessageAt(int start_position, int end_position,
39 start_position_ = start_position;
47 void ReportMessageAt(int start_position, int end_position,
53 start_position_ = start_position;
61 void ReportMessageAt(int start_position, int end_position,
66 start_position_ = start_position;
codegen.cc 170 shared->start_position());
173 int source_len = shared->end_position() - shared->start_position() + 1;
194 os << "source_position = " << shared->start_position() << "\n";
json-parser.cc 342 int start_position = position_; local
352 position_ = start_position;
434 int start_position = position_; local
444 position_ = start_position;
  /external/v8/src/profiler/
sampling-heap-profiler.h 75 int start_position)
78 script_position_(start_position),
89 static FunctionId function_id(int script_id, int start_position,
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);
sampling-heap-profiler.cc 143 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());
profiler-listener.cc 92 int start_position = shared->start_position(); local
105 if (position < start_position || position >= end_position) continue;
  /external/v8/src/debug/
debug-scopes.h 88 : 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; }
debug-scopes.cc 77 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();
liveedit.h 291 void SetInitialProperties(Handle<String> name, int start_position,
360 int start_position,
liveedit.js 268 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...]
debug.cc 89 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
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
merge.h 88 size_t start_position, size_t input_length,
merge.cc 311 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)) {
  /external/v8/src/parsing/
scanner-character-streams.cc 133 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;
scanner-character-streams.h 47 GenericStringUtf16CharacterStream(Handle<String> data, size_t start_position,
155 int start_position,
preparser.cc 124 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
    [all...]
preparser.h 836 PreParserIdentifier name, int start_position, int end_position,
1051 int start_position = scanner()->peek_location().beg_pos; local
    [all...]
  /external/v8/src/runtime/
runtime-classes.cc 87 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,
  /external/v8/src/ast/
scopes.h 177 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
ast.cc 93 VariableProxy::VariableProxy(Zone* zone, Variable* var, int start_position,
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();
    [all...]
ast.h 2777 int start_position() const { return position(); } function in class:v8::internal::final
    [all...]
  /external/v8/src/js/
messages.js 189 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/include/
v8-profiler.h 471 int start_position; member in struct:v8::AllocationProfile::Node

Completed in 539 milliseconds

1 2 3 4