Searched refs:end_pos (Results 1 - 25 of 39) sorted by relevance

12

/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.cpp24 iterator end_pos = m_dies.end(); local
25 iterator insert_pos = upper_bound(m_dies.begin(), end_pos, die);
26 if (insert_pos != end_pos && (*insert_pos == die))
58 const_iterator end_pos = m_dies.end(); local
60 for (pos = m_dies.begin(); pos != end_pos; ++pos)
H A DDWARFDebugInfo.cpp189 CompileUnitColl::const_iterator end_pos = m_compile_units.end(); local
192 for (pos = m_compile_units.begin(); pos != end_pos; ++pos)
248 CompileUnitColl::const_iterator end_pos = m_compile_units.end(); local
251 for (pos = m_compile_units.begin(); pos != end_pos; ++pos)
H A DDWARFDebugLine.cpp1045 Row::const_iterator end_pos = rows.end(); local
1046 Row::const_iterator pos = lower_bound(begin_pos, end_pos, row, FindMatchingAddress);
1047 if (pos == end_pos)
/external/v8/preparser/
H A Dpreparser-process.cc157 int end_pos() { function in class:PreparseDataInterpreter
225 : throws(false), type(NULL), beg_pos(-1), end_pos(-1) { }
229 int end_pos; member in struct:ExceptionExpectation
248 expects->type, actual_message, reader.beg_pos(), reader.end_pos());
257 if (expects->end_pos >= 0) {
258 if (expects->end_pos != reader.end_pos()) {
260 expects->end_pos, reader.end_pos());
266 message, reader.beg_pos(), reader.end_pos());
[all...]
/external/v8/src/
H A Dmessages.h48 int end_pos)
51 end_pos_(end_pos) { }
56 int end_pos() const { return end_pos_; } function in class:v8::internal::MessageLocation
46 MessageLocation(Handle<Script> script, int start_pos, int end_pos) argument
H A Dpreparse-data.cc34 int end_pos,
44 function_store_.Add(end_pos);
33 LogMessage(int start_pos, int end_pos, const char* message, const char* arg_opt, bool is_reference_error) argument
H A Dscanner.h330 Location(int b, int e) : beg_pos(b), end_pos(e) { }
331 Location() : beg_pos(0), end_pos(0) { }
334 return beg_pos >= 0 && end_pos >= beg_pos;
340 int end_pos; member in struct:v8::internal::Scanner::Location
367 int source_length = (location.end_pos - location.beg_pos);
H A Dpreparser.cc47 location.end_pos,
55 int end_pos,
59 pre_parser_->log_->LogMessage(start_pos, end_pos, message, arg,
143 int end_pos = scanner()->location().end_pos; local
144 CheckOctalLiteral(start_position, end_pos, &ok);
307 end_location.end_pos,
919 int end_position = scanner()->location().end_pos;
934 int body_end = scanner()->peek_location().end_pos;
54 ReportMessageAt(int start_pos, int end_pos, const char* message, const char* arg, bool is_reference_error) argument
H A Dparser.cc909 CheckOctalLiteral(beg_pos, scanner()->location().end_pos, &ok);
1095 token_loc.end_pos - token_loc.beg_pos ==
1119 token_loc.end_pos - token_loc.beg_pos ==
1288 scope->set_end_position(scanner()->location().end_pos);
2050 block_scope->set_end_position(scanner()->location().end_pos);
2618 with_scope->set_end_position(scanner()->location().end_pos);
2759 catch_scope->set_end_position(scanner()->location().end_pos);
3079 int pos = scanner()->location().end_pos;
3088 inner_scope->set_end_position(scanner()->location().end_pos);
3144 for_scope->set_end_position(scanner()->location().end_pos);
[all...]
H A Dmessages.cc57 end = loc->end_pos();
H A Dscanner.cc229 next_.location.end_pos = pos + 1;
655 next_.location.end_pos = source_pos();
665 DCHECK_EQ(next_.location.end_pos, current_pos);
1105 next_.location.end_pos = source_pos() - (seen_equal ? 1 : 0);
1190 next_.location.end_pos = source_pos() - 1;
H A Dpreparser.h379 // Checks whether an octal literal was last seen between beg_pos and end_pos.
381 void CheckOctalLiteral(int beg_pos, int end_pos, bool* ok) { argument
384 octal.end_pos <= end_pos) {
1262 int end_pos,
1438 CheckOctalLiteral(start_position, scanner()->location().end_pos, &ok);
2678 scope->set_end_position(scanner()->location().end_pos);
2692 CheckOctalLiteral(start_pos, scanner()->location().end_pos, CHECK_OK);
H A Dscopes.cc762 int end_pos = scope->end_position(); local
763 DCHECK(beg_pos >= 0 && end_pos >= 0);
764 if (beg_pos <= position && position < end_pos) {
/external/openssh/
H A Dprogressmeter.c70 static off_t end_pos; /* ending position of transfer */ variable
136 bytes_left = end_pos - cur_pos;
143 transferred = end_pos - start_pos;
175 if (end_pos != 0)
176 percent = ((float)cur_pos / end_pos) * 100;
256 end_pos = filesize;
280 if (cur_pos != end_pos)
/external/llvm/lib/Support/
H A DPath.cpp135 size_t end_pos = filename_pos(path); local
137 bool filename_was_sep = path.size() > 0 && is_separator(path[end_pos]);
140 size_t root_dir_pos = root_dir_start(path.substr(0, end_pos));
142 while(end_pos > 0 &&
143 (end_pos - 1) != root_dir_pos &&
144 is_separator(path[end_pos - 1]))
145 --end_pos;
147 if (end_pos == 1 && root_dir_pos == 0 && filename_was_sep)
150 return end_pos;
294 size_t end_pos
[all...]
/external/lldb/source/Symbol/
H A DLineTable.cpp54 entry_collection::iterator end_pos = m_entries.end(); local
56 entry_collection::iterator pos = upper_bound(begin_pos, end_pos, entry, less_than_bp);
123 entry_collection::iterator end_pos = m_entries.end(); local
125 entry_collection::iterator pos = upper_bound(begin_pos, end_pos, entry, less_than_bp);
198 entry_collection::const_iterator end_pos = m_entries.end(); local
199 entry_collection::const_iterator pos = lower_bound(begin_pos, end_pos, search_entry, Entry::EntryAddressLessThan);
200 if (pos != end_pos)
218 if (pos != end_pos)
221 pos = end_pos;
225 if (pos != end_pos)
301 std::vector<uint32_t>::const_iterator end_pos = file_indexes.end(); local
[all...]
/external/v8/tools/
H A Dlexer-shell.cc95 Token::Value Next(int* beg_pos, int* end_pos) { argument
98 *end_pos = scanner_->location().end_pos;
/external/libvpx/libvpx/tools/
H A Dcpplint.py1271 (end_pos, num_open) = FindEndOfExpressionInLine(
1273 if end_pos > -1:
1274 return (line, linenum, end_pos)
1280 (end_pos, num_open) = FindEndOfExpressionInLine(
1282 if end_pos > -1:
1283 return (line, linenum, end_pos)
3152 (end_line, end_linenum, end_pos) = CloseExpression(
3158 if end_pos >= 0 and Match(r';', end_line[end_pos:]):
3200 (last_line, end_line, end_pos)
[all...]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopenjpeg.h724 OPJ_OFF_T end_pos; member in struct:opj_packet_info
773 int end_pos; member in struct:opj_tile_info
951 OPJ_OFF_T end_pos; member in struct:opj_tp_index
H A Dt2.c309 info_PK->start_pos = ((l_cp->m_specific_param.m_enc.m_tp_on | l_tcp->POC)&& info_PK->start_pos) ? info_PK->start_pos : info_TL->packet[cstr_info->packno - 1].end_pos + 1;
311 info_PK->end_pos = info_PK->start_pos + l_nb_bytes - 1;
451 } else if (info_TL->packet[p_cstr_info->packno-1].end_pos >= (OPJ_INT32)p_cstr_info->tile[p_tile_no].tp[curtp].tp_end_pos){ /* New tile part */
457 info_PK->start_pos = (l_cp->m_specific_param.m_enc.m_tp_on && info_PK->start_pos) ? info_PK->start_pos : info_TL->packet[p_cstr_info->packno - 1].end_pos + 1;
459 info_PK->end_pos = info_PK->start_pos + l_nb_bytes_read - 1;
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_utility.cpp226 FX_DWORD& start_pos, FX_DWORD& end_pos)
235 end_pos = m_dwCurPos;
225 FindTagPair(FX_BSTR start_token, FX_BSTR end_token, FX_DWORD& start_pos, FX_DWORD& end_pos) argument
/external/sonivox/jet_tools/JetCreator/
H A DJetFile.py469 end_pos = output_file.tell()
470 file_size = end_pos - start_pos
473 end_pos += 1
477 output_file.seek(end_pos, 0)
/external/lldb/tools/debugserver/source/
H A DRNBRemote.cpp1514 size_t end_pos; local
1515 for (end_pos = 0; end_pos < line_size; ++end_pos)
1517 if (end_pos == 0)
1519 if (isalpha(line[end_pos]) || line[end_pos] == '_')
1522 else if (isalnum(line[end_pos]) || line[end_pos] == '_')
1526 word.assign (line, 0, end_pos);
[all...]
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dcpplint.py1081 end_pos = FindEndOfExpressionInLine(line, pos, 0, startchar, endchar)
1082 if end_pos > -1:
1083 return (line, linenum, end_pos)
2659 (end_line, end_linenum, end_pos) = CloseExpression(
2665 if end_pos >= 0 and Match(r';', end_line[end_pos:]):
/external/protobuf/src/google/protobuf/compiler/
H A Dparser_unittest.cc1768 pair<int, int> end_pos = FindOrDie(markers_, end_marker); local
1773 if (end_pos.first != start_pos.first) {
1774 expected_span.Add(end_pos.first);
1776 expected_span.Add(end_pos.second);

Completed in 637 milliseconds

12