Searched refs:start_i (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/js/ |
D | array.js | 197 function SparseSlice(array, start_i, del_count, len, deleted_elements) { argument 199 var indices = %GetArrayKeys(array, start_i + del_count); 202 for (var i = start_i; i < limit; ++i) { 205 %CreateDataProperty(deleted_elements, i - start_i, current); 212 if (key >= start_i) { 215 %CreateDataProperty(deleted_elements, key - start_i, current); 225 function SparseMove(array, start_i, del_count, len, num_additional_args) { argument 236 for (var i = 0; i < start_i && i < limit; ++i) { 242 for (var i = start_i + del_count; i < limit; ++i) { 252 if (key < start_i) { [all …]
|
D | string.js | 74 var start_i = TO_INTEGER(start); 80 if (start_i < 0) { 81 start_i += s_len; 82 if (start_i < 0) { 83 start_i = 0; 86 if (start_i > s_len) { 102 if (end_i <= start_i) { 106 return %_SubString(s, start_i, end_i);
|
/external/pdfium/core/fxge/dib/ |
D | fx_dib_engine.cpp | 199 int start_i, end_i; in Calc() local 201 start_i = (int)FXSYS_floor((FX_FLOAT)src_start); in Calc() 204 start_i = (int)FXSYS_floor((FX_FLOAT)src_end); in Calc() 207 if (start_i < src_min) { in Calc() 208 start_i = src_min; in Calc() 213 if (start_i > end_i) { in Calc() 214 if (start_i >= src_max) { in Calc() 215 start_i = src_max - 1; in Calc() 217 pixel_weights.m_SrcStart = start_i; in Calc() 218 pixel_weights.m_SrcEnd = start_i; in Calc() [all …]
|
/external/python/cpython2/Lib/ |
D | htmllib.py | 345 def start_cite(self, attrs): self.start_i(attrs) 351 def start_em(self, attrs): self.start_i(attrs) 363 def start_var(self, attrs): self.start_i(attrs) 368 def start_i(self, attrs): member in HTMLParser
|
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_progress.cpp | 99 int start_i, end_i; in Calc() local 101 start_i = (int)FXSYS_floor((FX_FLOAT)src_start); in Calc() 104 start_i = (int)FXSYS_floor((FX_FLOAT)src_end); in Calc() 107 if (start_i < src_min) { in Calc() 108 start_i = src_min; in Calc() 113 if (start_i > end_i) { in Calc() 114 pixel_weights.m_SrcStart = start_i; in Calc() 115 pixel_weights.m_SrcEnd = start_i; in Calc() 118 pixel_weights.m_SrcStart = start_i; in Calc() 120 for (int j = start_i; j <= end_i; j++) { in Calc() [all …]
|