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

1 2 3

  /external/pdfium/core/fxge/ge/
cfx_pathdata.cpp 16 const CFX_PointF& end_pos,
18 if (start_pos.x == end_pos.x) {
19 if (start_pos.y == end_pos.y) {
20 rect->UpdateRect(end_pos.x + hw, end_pos.y + hw);
21 rect->UpdateRect(end_pos.x - hw, end_pos.y - hw);
26 if (end_pos.y < start_pos.y)
27 point_y = end_pos.y - hw;
29 point_y = end_pos.y + hw
    [all...]
  /external/v8/src/parsing/
scanner-character-streams.h 20 int end_pos);
preparser.cc 122 int formals_end_position = scanner()->location().end_pos;
157 int end_pos = scanner()->location().end_pos; local
158 CheckStrictOctalLiteral(function_scope->start_position(), end_pos, ok);
160 end_pos);
207 int formals_end_position = scanner()->location().end_pos;
227 int end_position = scanner()->location().end_pos;
254 int body_end = scanner()->peek_location().end_pos;
scanner-character-streams.cc 471 size_t end_pos =
476 while (!out_of_data && end_pos <= position + 1) {
480 chunks.push_back({chunk, len, end_pos});
481 end_pos += len;
487 // end_pos are current (and designate whether we have exhausted the stream,
490 DCHECK_EQ(end_pos, chunks.back().byte_pos + chunks.back().byte_length);
492 DCHECK(position < end_pos || out_of_data);
496 if (position >= end_pos) {
803 int end_pos) {
805 DCHECK(end_pos <= data->length())
    [all...]
parser-base.h 857 // Checks whether an octal literal was last seen between beg_pos and end_pos.
859 void CheckOctalLiteral(int beg_pos, int end_pos,
863 octal.end_pos <= end_pos) {
870 void CheckDecimalLiteralWithLeadingZero(int beg_pos, int end_pos) {
874 token_location.end_pos <= end_pos) {
880 inline void CheckStrictOctalLiteral(int beg_pos, int end_pos, bool* ok) {
881 CheckOctalLiteral(beg_pos, end_pos, MessageTemplate::kStrictOctalLiteral,
885 inline void CheckTemplateOctalLiteral(int beg_pos, int end_pos, bool* ok)
3769 int end_pos = position(); local
    [all...]
scanner.h 181 Location(int b, int e) : beg_pos(b), end_pos(e) { }
182 Location() : beg_pos(0), end_pos(0) { }
185 return beg_pos >= 0 && end_pos >= beg_pos;
191 int end_pos; member in struct:v8::internal::Scanner::Location
752 int source_length = (location.end_pos - location.beg_pos);
scanner.cc 280 next_.location.end_pos = current_.location.end_pos;
297 next_.location.end_pos = pos + 1;
774 next_.location.end_pos = source_pos();
826 DCHECK_EQ(next_.location.end_pos, current_pos);
1035 next_.location.end_pos = source_pos();
    [all...]
  /external/libbrillo/brillo/streams/
stream_utils_unittest.cc 103 const uint64_t end_pos = 2000; local
107 FROM_HERE, 0, Whence::FROM_BEGIN, current_pos, end_pos, &pos, nullptr));
111 FROM_HERE, 0, Whence::FROM_CURRENT, current_pos, end_pos, &pos, nullptr));
115 FROM_HERE, 0, Whence::FROM_END, current_pos, end_pos, &pos, nullptr));
116 EXPECT_EQ(end_pos, pos);
119 FROM_HERE, 10, Whence::FROM_BEGIN, current_pos, end_pos, &pos, nullptr));
123 FROM_HERE, 10, Whence::FROM_CURRENT, current_pos, end_pos, &pos,
128 FROM_HERE, 10, Whence::FROM_END, current_pos, end_pos, &pos, nullptr));
129 EXPECT_EQ(end_pos + 10, pos);
132 FROM_HERE, -10, Whence::FROM_CURRENT, current_pos, end_pos, &pos
    [all...]
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 159 size_t end_pos = m_PathName.find_last_of(separator); local
160 if (end_pos != StringType::npos)
161 return Path(m_PathName.substr(0, end_pos));
176 size_t end_pos = m_PathName.find_last_of(dot); local
177 Path result_path(m_PathName.substr(begin_pos, end_pos - begin_pos));
  /external/openssh/
progressmeter.c 70 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/bsdiff/
file.cc 117 off_t end_pos = lseek(fd_, 0, SEEK_END);
118 if (end_pos == -1)
120 *size = end_pos;
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_fileutils.cc 38 int32_t end_pos = ftell(file_); local
40 return current_pos == end_pos;
  /external/llvm/lib/Support/
Path.cpp 136 size_t end_pos = filename_pos(path); local
138 bool filename_was_sep = path.size() > 0 && is_separator(path[end_pos]);
141 size_t root_dir_pos = root_dir_start(path.substr(0, end_pos));
143 while(end_pos > 0 &&
144 (end_pos - 1) != root_dir_pos &&
145 is_separator(path[end_pos - 1]))
146 --end_pos;
148 if (end_pos == 1 && root_dir_pos == 0 && filename_was_sep)
151 return end_pos;
295 size_t end_pos = Path.find_first_of(separators, Position)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
PathV2.cpp 131 size_t end_pos = filename_pos(path); local
133 bool filename_was_sep = path.size() > 0 && is_separator(path[end_pos]);
136 size_t root_dir_pos = root_dir_start(path.substr(0, end_pos));
138 while(end_pos > 0 &&
139 (end_pos - 1) != root_dir_pos &&
140 is_separator(path[end_pos - 1]))
141 --end_pos;
143 if (end_pos == 1 && root_dir_pos == 0 && filename_was_sep)
146 return end_pos;
216 size_t end_pos = Path.find_first_of(separators, Position)
    [all...]
  /external/curl/src/
tool_formparse.c 43 static char *get_param_word(char **str, char **end_pos)
67 *end_pos = ptr;
76 while(ptr < *end_pos);
77 *end_pos = ptr2;
92 *str = *end_pos = ptr;
  /external/curl/lib/vtls/
vtls.c 753 char *stripped_pem, *begin_pos, *end_pos; local
774 end_pos = strstr(pem + pem_count, "\n-----END PUBLIC KEY-----");
775 if(!end_pos)
778 pem_len = end_pos - pem;
821 char *encoded, *pinkeycopy, *begin_pos, *end_pos; local
860 end_pos = strstr(begin_pos, ";sha256//");
862 * if there is an end_pos, null terminate,
865 if(end_pos)
866 end_pos[0] = '\0';
879 if(end_pos) {
    [all...]
  /external/toolchain-utils/cros_utils/
buildbot_utils.py 60 end_pos = l.find('@https://storage')
61 trybot_image = l[start_pos:end_pos]
185 end_pos = out.find('/chromiumos_test_image')
186 trybot_image = out[start_pos:end_pos]
  /external/v8/src/
pending-compilation-error-handler.cc 68 handle(Smi::FromInt(location.end_pos()), isolate),
  /external/webrtc/webrtc/base/
win32.cc 174 char* end_pos; local
175 long value = strtol(src_pos, &end_pos, 10);
176 if (value < 0 || value > 255 || src_pos == end_pos) {
184 src_pos = end_pos;
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugLine.cpp 453 iterator end_pos = Rows.end(); local
454 iterator pos = std::lower_bound(begin_pos, end_pos, row,
456 if (pos == end_pos) {
  /external/v8/src/ast/
modules.cc 91 location.beg_pos, location.end_pos);
299 entry->location.beg_pos, entry->location.end_pos,
311 entry->location.beg_pos, entry->location.end_pos,
  /frameworks/native/libs/binder/
PersistableBundle.cpp 106 size_t end_pos = parcel->dataPosition(); local
110 size_t length = end_pos - start_pos;
116 parcel->setDataPosition(end_pos);
  /system/extras/simpleperf/
event_selection_set.h 176 size_t end_pos; // end position in record_buffer_ member in struct:EventSelectionSet::RecordBufferHead
  /tools/repohooks/tools/
cpplint.py     [all...]
  /external/pdfium/third_party/libopenjpeg20/
openjpeg.h 727 OPJ_OFF_T end_pos; member in struct:opj_packet_info
776 int end_pos; member in struct:opj_tile_info
954 OPJ_OFF_T end_pos; member in struct:opj_tp_index
    [all...]

Completed in 1539 milliseconds

1 2 3