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

1 2 3

  /external/v8/src/regexp/
interpreter-irregexp.h 23 int start_position);
interpreter-irregexp.cc 594 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,
  /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;
codegen.cc 173 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";
  /frameworks/native/libs/vr/libdvrcommon/tests/
pose_test.cpp 57 vec3_t start_position = vec3_t::Zero(); local
58 start_position[axis] = FT(1.0);
60 (pose_rotation * start_position) + pose_position;
61 const vec3_t actual_transformed = test_pose.TransformPoint(start_position);
82 vec3_t start_position = vec3_t::Zero(); local
83 start_position[axis] = FT(1.0);
84 const vec3_t expected_rotated = pose_rotation * start_position;
85 const vec3_t actual_rotated = test_pose.Transform(start_position);
111 vec3_t start_position = vec3_t::Zero(); local
112 start_position[axis] = FT(1.0)
137 vec3_t start_position = vec3_t::Zero(); local
    [all...]
  /external/v8/src/profiler/
sampling-heap-profiler.h 76 int start_position)
79 script_position_(start_position),
90 static FunctionId function_id(int script_id, int start_position,
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);
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());
  /external/v8/src/parsing/
preparsed-scope-data.h 27 int start_position, int end_position);
preparser.cc 131 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,
preparsed-scope-data.cc 33 int start_position, int end_position)
37 data->backing_store_.push_back(start_position);
scanner-character-streams.cc 68 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,
    [all...]
parse-info.h 164 int start_position() const { return start_position_; } function in class:v8::internal::ParseInfo
165 void set_start_position(int start_position) {
166 start_position_ = start_position;
parse-info.cc 54 set_start_position(shared->start_position());
116 p->set_start_position(shared->start_position());
  /external/v8/src/debug/
debug-scopes.h 86 : 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; }
debug-scopes.cc 82 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(), scope->end_position()))
    [all...]
debug.cc 143 position_ = debug_info->shared()->start_position();
693 if (shared->start_position() > *source_position) {
694 *source_position = shared->start_position();
1412 int start_position = shared->function_token_position(); local
    [all...]
liveedit.h 246 void SetInitialProperties(Handle<String> name, int start_position,
302 int start_position,
liveedit.js 267 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...]
liveedit.cc 610 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);
    [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/compiler-dispatcher/
compiler-dispatcher-job.cc 149 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/
runtime-classes.cc 104 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,
  /external/v8/src/ast/
ast.cc 189 VariableProxy::VariableProxy(Variable* var, int start_position)
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();
    [all...]
  /external/v8/include/
v8-profiler.h 581 int start_position; member in struct:v8::AllocationProfile::Node

Completed in 535 milliseconds

1 2 3