Searched refs:endIndex (Results 1 - 25 of 176) sorted by relevance

12345678

/external/v8/test/mjsunit/regress/
H A Dregress-3621.js6 var endIndex = 0xffff; variable
7 a[endIndex] = 3;
H A Dregress-3612.js7 var endIndex = 0xffff; variable
8 Object.defineProperty(a, endIndex, {
21 assertEquals(3, a[endIndex-1]);
/external/icu/icu4c/source/common/unicode/
H A Dumisc.h47 int32_t endIndex; member in struct:UFieldPosition
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DJavascriptTokenBuffer.java61 private int endIndex; field in class:JavascriptTokenBuffer
70 endIndex = 0;
83 endIndex = aJavascriptTokenBuffer.endIndex;
115 buffer[endIndex] = input;
116 endIndex = (endIndex + 1) % buffer.length;
117 if (endIndex == startIndex) {
118 startIndex = (endIndex + 1) % buffer.length;
129 if (startIndex == endIndex) {
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DUtils.java64 int endIndex = src.indexOf(replacee);
65 while(endIndex != -1) {
66 result.append(src.substring(startIndex,endIndex));
70 startIndex = endIndex + replacee.length();
71 endIndex = src.indexOf(replacee,startIndex);
/external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/parsing/
H A DCMethodParser.java41 final int endIndex; field in class:CMethodParser.CMethod
43 public CMethod (String returnType, String head, String[] argumentTypes, int startIndex, int endIndex) { argument
48 this.endIndex = endIndex;
72 return endIndex;
H A DJavaMethodParser.java33 private final int endIndex; field in class:JavaMethodParser.JniSection
35 public JniSection (String nativeCode, int startIndex, int endIndex) { argument
38 this.endIndex = endIndex;
54 return endIndex;
59 return "JniSection [nativeCode=" + nativeCode + ", startIndex=" + startIndex + ", endIndex=" + endIndex + "]";
161 private final int endIndex; field in class:JavaMethodParser.JavaMethod
164 ArrayList<Argument> arguments, int startIndex, int endIndex) {
172 this.endIndex
163 JavaMethod(String className, String name, boolean isStatic, String returnType, String nativeCode, ArrayList<Argument> arguments, int startIndex, int endIndex) argument
[all...]
/external/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java211 public int indexOf(int ch, int beginIndex, int endIndex) { argument
215 if (endIndex > this.len) {
216 endIndex = this.len;
218 if (beginIndex > endIndex) {
221 for (int i = beginIndex; i < endIndex; i++) {
233 public String substring(int beginIndex, int endIndex) { argument
237 if (endIndex > this.len) {
240 if (beginIndex > endIndex) {
243 return new String(this.buffer, beginIndex, endIndex - beginIndex);
246 public String substringTrimmed(int beginIndex, int endIndex) { argument
[all...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
H A Dgim_box_set.cpp36 gim_array<GIM_AABB_DATA> & primitive_boxes, GUINT startIndex, GUINT endIndex)
42 GUINT numIndices = endIndex-startIndex;
44 for (i=startIndex;i<endIndex;i++)
52 for (i=startIndex;i<endIndex;i++)
68 GUINT endIndex, GUINT splitAxis)
72 GUINT numIndices = endIndex - startIndex;
76 for (i=startIndex;i<endIndex;i++)
84 for (i=startIndex;i<endIndex;i++)
96 //if the splitIndex causes unbalanced trees, fix this by using the center in between startIndex and endIndex
99 //bool unbalanced1 = ((splitIndex==startIndex) || (splitIndex == (endIndex
35 _calc_splitting_axis( gim_array<GIM_AABB_DATA> & primitive_boxes, GUINT startIndex, GUINT endIndex) argument
66 _sort_and_calc_splitting_index( gim_array<GIM_AABB_DATA> & primitive_boxes, GUINT startIndex, GUINT endIndex, GUINT splitAxis) argument
119 _build_sub_tree(gim_array<GIM_AABB_DATA> & primitive_boxes, GUINT startIndex, GUINT endIndex) argument
[all...]
H A DbtGImpactBvh.cpp68 GIM_BVH_DATA_ARRAY & primitive_boxes, int startIndex, int endIndex)
75 int numIndices = endIndex-startIndex;
77 for (i=startIndex;i<endIndex;i++)
85 for (i=startIndex;i<endIndex;i++)
101 int endIndex, int splitAxis)
105 int numIndices = endIndex - startIndex;
111 for (i=startIndex;i<endIndex;i++)
123 for (i=startIndex;i<endIndex;i++)
136 //if the splitIndex causes unbalanced trees, fix this by using the center in between startIndex and endIndex
139 //bool unbalanced1 = ((splitIndex==startIndex) || (splitIndex == (endIndex
67 _calc_splitting_axis( GIM_BVH_DATA_ARRAY & primitive_boxes, int startIndex, int endIndex) argument
99 _sort_and_calc_splitting_index( GIM_BVH_DATA_ARRAY & primitive_boxes, int startIndex, int endIndex, int splitAxis) argument
160 _build_sub_tree(GIM_BVH_DATA_ARRAY & primitive_boxes, int startIndex, int endIndex) argument
[all...]
H A DbtGImpactQuantizedBvh.cpp89 GIM_BVH_DATA_ARRAY & primitive_boxes, int startIndex, int endIndex)
96 int numIndices = endIndex-startIndex;
98 for (i=startIndex;i<endIndex;i++)
106 for (i=startIndex;i<endIndex;i++)
122 int endIndex, int splitAxis)
126 int numIndices = endIndex - startIndex;
132 for (i=startIndex;i<endIndex;i++)
144 for (i=startIndex;i<endIndex;i++)
157 //if the splitIndex causes unbalanced trees, fix this by using the center in between startIndex and endIndex
160 //bool unbalanced1 = ((splitIndex==startIndex) || (splitIndex == (endIndex
88 _calc_splitting_axis( GIM_BVH_DATA_ARRAY & primitive_boxes, int startIndex, int endIndex) argument
120 _sort_and_calc_splitting_index( GIM_BVH_DATA_ARRAY & primitive_boxes, int startIndex, int endIndex, int splitAxis) argument
181 _build_sub_tree(GIM_BVH_DATA_ARRAY & primitive_boxes, int startIndex, int endIndex) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dufieldpositer.cpp42 int32_t *beginIndex, int32_t *endIndex)
51 if (endIndex) {
52 *endIndex = fp.getEndIndex();
41 ufieldpositer_next(UFieldPositionIterator *fpositer, int32_t *beginIndex, int32_t *endIndex) argument
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/
H A DGradientColorValue.java36 int startIndex = 0, endIndex = -1;
42 endIndex = i;
52 if (endIndex == -1) {
58 float factor = (percent - startTime) / (timeline[endIndex] - startTime);
59 endIndex *= 3;
60 out[index] = r1 + (colors[endIndex] - r1) * factor;
61 out[index+1] = g1 + (colors[endIndex + 1] - g1) * factor;
62 out[index+2] = b1 + (colors[endIndex + 2] - b1) * factor;
H A DScaledNumericValue.java71 int endIndex = -1;
78 endIndex = i;
82 if (endIndex == -1) return scaling[n - 1];
83 int startIndex = endIndex - 1;
86 return startValue + (scaling[endIndex] - startValue) * ((percent - startTime) / (timeline[endIndex] - startTime));
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DCompositeFormat.java119 final int endIndex = startIndex + n;
120 if (endIndex < source.length()) {
121 if (source.substring(startIndex, endIndex).compareTo(sb.toString()) == 0) {
123 pos.setIndex(endIndex);
144 final int endIndex = pos.getIndex();
147 if (startIndex == endIndex) {
174 final int endIndex = startIndex + expected.length();
176 (endIndex > source.length()) ||
177 (source.substring(startIndex, endIndex).compareTo(expected) != 0)) {
185 pos.setIndex(endIndex);
[all...]
/external/skia/src/pathops/
H A DSkLineParameters.h32 int endIndex = 1; local
33 cubicEndPoints(pts, 0, endIndex);
38 cubicEndPoints(pts, 0, ++endIndex);
39 SkASSERT(endIndex == 2);
44 cubicEndPoints(pts, 0, ++endIndex); // line
45 SkASSERT(endIndex == 3);
55 if (NotAlmostEqualUlps(pts[0].fY, pts[++endIndex].fY)) {
56 if (pts[0].fY > pts[endIndex].fY) {
61 if (endIndex == 3) {
64 SkASSERT(endIndex
[all...]
H A DSkPathOpsConic.h54 void align(int endIndex, SkDPoint* dstPt) const { argument
55 fPts.align(endIndex, dstPt);
71 bool isLinear(int startIndex, int endIndex) const {
72 return fPts.isLinear(startIndex, endIndex);
/external/proguard/src/proguard/
H A DWordReader.java188 int endIndex;
212 endIndex = currentIndex++;
233 endIndex = currentIndex;
236 while (endIndex > startIndex &&
237 Character.isWhitespace(currentLine.charAt(endIndex-1)))
239 endIndex--;
245 endIndex = ++currentIndex;
264 endIndex = currentIndex;
268 currentWord = currentLine.substring(startIndex, endIndex);
/external/icu/icu4c/source/i18n/unicode/
H A Dufieldpositer.h97 * @param endIndex
104 * values pointed to by beginIndex and endIndex are undefined.
116 int32_t *beginIndex, int32_t *endIndex);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs16 public SubList( IList source, int startIndex, int endIndex )
20 if ( startIndex < 0 || endIndex < 0 )
22 if ( startIndex > endIndex || endIndex >= source.Count )
27 _endIndex = endIndex;
177 public SubList( IList<T> source, int startIndex, int endIndex )
181 if ( startIndex < 0 || endIndex < 0 )
183 if ( startIndex > endIndex || endIndex >= source.Count )
188 _endIndex = endIndex;
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DAllAllocationsRecorder.java50 int endIndex = 2;
59 endIndex = i;
67 new Allocation(desc, size, asList(stackTrace).subList(startIndex, endIndex + 1)));
/external/okhttp/okio/okio/src/main/java/okio/
H A DBufferedSink.java57 * Encodes the characters at {@code beginIndex} up to {@code endIndex} from {@code string} in
60 BufferedSink writeUtf8(String string, int beginIndex, int endIndex) throws IOException; argument
69 * Encodes the characters at {@code beginIndex} up to {@code endIndex} from {@code string} in
72 BufferedSink writeString(String string, int beginIndex, int endIndex, Charset charset) argument
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DClassTable.java180 int endIndex;
182 for (endIndex = startIndex; endIndex < classTable.length; endIndex += 1) {
183 if (classTable[endIndex].getGlyphID() != nextID ||
184 classTable[endIndex].getClassID() != classID) {
198 startIndex = endIndex;
/external/guava/guava/src/com/google/common/escape/
H A DUnicodeEscaper.java224 int endIndex = destIndex + charsSkipped;
225 if (dest.length < endIndex) {
226 dest = growBuffer(dest, destIndex, endIndex);
229 destIndex = endIndex;
/external/testng/src/main/java/org/testng/mustache/
H A DMustache.java44 int endIndex = findClosingIndex(template, ti, conditionalVariable);
52 String subTemplate = template.substring(ti + variable.length() + 4, endIndex);
62 String subTemplate = template.substring(ti + variable.length() + 4, endIndex);
68 ti = endIndex + variable.length() + 4;

Completed in 2395 milliseconds

12345678