Home
last modified time | relevance | path

Searched refs:end_i (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/js/
Dstring.js75 var end_i = s_len;
77 end_i = TO_INTEGER(end);
91 if (end_i < 0) {
92 end_i += s_len;
93 if (end_i < 0) {
97 if (end_i > s_len) {
98 end_i = s_len;
102 if (end_i <= start_i) {
106 return %_SubString(s, start_i, end_i);
Darray.js592 var end_i = len;
594 if (!IS_UNDEFINED(end)) end_i = TO_INTEGER(end);
603 if (end_i < 0) {
604 end_i += len;
605 if (end_i < 0) end_i = 0;
607 if (end_i > len) end_i = len;
610 var result = ArraySpeciesCreate(array, MaxSimple(end_i - start_i, 0));
612 if (end_i < start_i) return result;
614 if (UseSparseVariant(array, len, IS_ARRAY(array), end_i - start_i)) {
617 SparseSlice(array, start_i, end_i - start_i, len, result);
[all …]
/external/pdfium/core/fxge/dib/
Dfx_dib_engine.cpp199 int start_i, end_i; in Calc() local
202 end_i = (int)FXSYS_ceil((FX_FLOAT)src_end); in Calc()
205 end_i = (int)FXSYS_ceil((FX_FLOAT)src_start); in Calc()
210 if (end_i >= src_max) { in Calc()
211 end_i = src_max - 1; in Calc()
213 if (start_i > end_i) { in Calc()
222 pixel_weights.m_SrcEnd = end_i; in Calc()
223 for (int j = start_i; j <= end_i; j++) { in Calc()
238 if (weight == 0 && j == end_i) { in Calc()
/external/python/cpython2/Lib/
Dhtmllib.py346 def end_cite(self): self.end_i()
352 def end_em(self): self.end_i()
364 def end_var(self): self.end_i()
370 def end_i(self): member in HTMLParser
/external/pdfium/core/fxcodec/codec/
Dfx_codec_progress.cpp99 int start_i, end_i; in Calc() local
102 end_i = (int)FXSYS_ceil((FX_FLOAT)src_end); in Calc()
105 end_i = (int)FXSYS_ceil((FX_FLOAT)src_start); in Calc()
110 if (end_i >= src_max) { in Calc()
111 end_i = src_max - 1; in Calc()
113 if (start_i > end_i) { in Calc()
119 pixel_weights.m_SrcEnd = end_i; in Calc()
120 for (int j = start_i; j <= end_i; j++) { in Calc()
135 if (weight == 0 && j == end_i) { in Calc()