Searched defs:start_position (Results 1 - 25 of 30) sorted by relevance

12

/external/v8/src/parsing/
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 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 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 Dscanner.cc444 int start_position = source_pos(); local
485 return source_pos() != start_position;
H A Dparser.h1006 const AstRawString* name, int start_position,
1011 return NewUnresolved(name, start_position);
1005 ExpressionFromIdentifier( const AstRawString* name, int start_position, InferName infer = InferName::kYes) argument
/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 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/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 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.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
/external/v8/src/profiler/
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 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
/external/v8/src/regexp/
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/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/webrtc/webrtc/modules/audio_coding/neteq/
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/ImageMagick/coders/
H A Dbmp.c507 start_position;
563 start_position=0;
583 start_position=TellBlob(image)-2;
898 offset=SeekBlob(image,start_position+14+bmp_info.size,SEEK_SET);
927 offset=SeekBlob(image,start_position+bmp_info.offset_bits,SEEK_SET);
499 start_position; local
/external/v8/include/
H A Dv8-profiler.h581 int start_position; member in struct:v8::AllocationProfile::Node
/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
H A Dscopes.h195 int start_position = kNoSourcePosition,
289 int start_position() const { return start_position_; } function in class:v8::internal::Scope
H A Dscopes.cc1162 int start_position, VariableKind kind) {
1168 VariableProxy* proxy = factory->NewVariableProxy(name, kind, start_position);
1640 PrintF(" { // (%d, %d)\n", start_position(), end_position());
1719 CHECK_NE(kNoSourcePosition, start_position());
2274 start_position(), end_position());
1160 NewUnresolved(AstNodeFactory* factory, const AstRawString* name, int start_position, VariableKind kind) argument
/external/v8/src/builtins/
H A Dbuiltins-string.cc893 Node* start_position = IntPtrMax(SmiUntag(position), int_zero); local
898 IntPtrSub(string_length, start_position)),
913 OneByteCharAddress(BitcastTaggedToWord(receiver), start_position));
921 var_string_addr.Bind(OneByteCharAddress(unpacked, start_position));
957 Node* search_length = IntPtrSub(string_length, start_position);
968 IntPtrAdd(IntPtrSub(result_address, string_addr), start_position);
978 f_return(SmiTag(IntPtrMin(string_length, start_position)));
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c2533 FIRSTPASS_STATS *start_position; local
2549 start_position = cpi->twopass.stats_in;
2655 reset_fpf_position(cpi, start_position);
2760 reset_fpf_position(cpi, start_position);
2803 reset_fpf_position(cpi, start_position);
2851 reset_fpf_position(cpi, start_position);
/external/deqp/external/openglcts/modules/gl/
H A Dgl3cTextureSwizzleTests.cpp3261 size_t start_position = position; local
3265 position = start_position + 1;
3270 size_t start_position = position; local
3274 position = start_position + 1;
3279 size_t start_position = position; local
3283 position = start_position + 1;
3330 size_t start_position = position; local
3341 position = start_position + 1;
3388 size_t start_position = position; local
3392 position = start_position
[all...]

Completed in 1913 milliseconds

12