HomeSort by relevance Sort by last modified time
    Searched refs:startIndex (Results 76 - 100 of 335) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTree.h 33 NSInteger startIndex;
40 @property (assign, getter=getTokenStartIndex, setter=setTokenStartIndex) NSInteger startIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonToken.h 44 NSInteger startIndex;
125 @property (assign, getter=getStart, setter=setStart:) NSInteger startIndex;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterAlbum.java 98 protected int enumerateMediaItems(ItemConsumer consumer, int startIndex) {
99 mDataManager.mapMediaItems(mPaths, consumer, startIndex);
  /external/aac/libSBRenc/src/
invf_est.h 158 INT startIndex,
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
PlatformLocale.h 149 bool detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
FileUtils.js 316 * @param {number=} startIndex
319 WebInspector.findBalancedCurlyBrackets = function(source, startIndex, lastIndex) {
321 startIndex = startIndex || 0;
325 for (var index = startIndex; index < lastIndex; ++index) {
UIUtils.js     [all...]
HeapSnapshotLoader.js 88 var startIndex = index;
98 this._json = this._json.slice(startIndex);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.cpp 119 const int startIndex = ProximityInfoUtils::getStartIndexFromCoordinates(x, y,
122 AKLOGI("hasSpaceProximity: index %d, %d, %d", startIndex, x, y);
127 AKLOGI("Index: %d", mProximityCharsArray[startIndex + i]);
129 if (proximityCharsArray[startIndex + i] == KEYCODE_SPACE) {
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutLineBreakingTest.java 212 int startIndex = text.indexOf('<');
213 if (startIndex < 0) return text;
220 text = text.substring(0, startIndex) + text.substring(startIndex + 1, endIndex) +
223 spanStarts[spanCount] = startIndex;
227 startIndex = text.indexOf('<');
228 } while (startIndex >= 0);
  /external/chromium_org/third_party/icu/source/common/
uvector.cpp 288 int32_t UVector::indexOf(void* obj, int32_t startIndex) const {
291 return indexOf(key, startIndex, HINT_KEY_POINTER);
294 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const {
297 return indexOf(key, startIndex, HINT_KEY_INTEGER);
301 int32_t UVector::indexOf(UHashTok key, int32_t startIndex, int8_t hint) const {
304 for (i=startIndex; i<count; ++i) {
310 for (i=startIndex; i<count; ++i) {
  /external/icu4c/common/
uvector.cpp 289 int32_t UVector::indexOf(void* obj, int32_t startIndex) const {
292 return indexOf(key, startIndex, HINT_KEY_POINTER);
295 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const {
298 return indexOf(key, startIndex, HINT_KEY_INTEGER);
302 int32_t UVector::indexOf(UElement key, int32_t startIndex, int8_t hint) const {
305 for (i=startIndex; i<count; ++i) {
311 for (i=startIndex; i<count; ++i) {
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Geometry.java 82 protected int startIndex;
308 * @param startIndex the starting index of this geometry in the batched mesh
310 protected void batch(BatchNode node, int startIndex) {
312 this.startIndex = startIndex;
322 this.startIndex = 0;
  /external/replicaisland/src/com/replica/replicaisland/
Grid.java 240 public void drawStrip(GL10 gl, boolean useTexture, int startIndex, int indexCount) {
242 if (startIndex + indexCount >= mIndexCount) {
243 count = mIndexCount - startIndex;
247 GL10.GL_UNSIGNED_SHORT, mIndexBuffer.position(startIndex));
251 GL11.GL_UNSIGNED_SHORT, startIndex * CHAR_SIZE);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.cpp 506 int HTMLSelectElement::nextSelectableListIndex(int startIndex) const
508 return nextValidIndex(startIndex, SkipForwards, 1);
511 int HTMLSelectElement::previousSelectableListIndex(int startIndex) const
513 if (startIndex == -1)
514 startIndex = listItems().size();
515 return nextValidIndex(startIndex, SkipBackwards, 1);
532 // Returns the index of the next valid item one page away from |startIndex| in direction |direction|.
533 int HTMLSelectElement::nextSelectableListIndexPageAway(int startIndex, SkipDirection direction) const
543 // If there is no exact one page away valid option, returns startIndex or the most far index.
545 int skipAmount = pageSize + ((direction == SkipForwards) ? startIndex : (edgeIndex - startIndex))
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkOpSegment.h 78 bool isConnected(int startIndex, int endIndex) const {
79 return fTs[startIndex].fWindSum != SK_MinS32 || fTs[endIndex].fWindSum != SK_MinS32;
103 int oppSign(int startIndex, int endIndex) const {
104 int result = startIndex < endIndex ? -fTs[startIndex].fOppValue : fTs[endIndex].fOppValue;
173 int spanSign(int startIndex, int endIndex) const {
174 int result = startIndex < endIndex ? -fTs[startIndex].fWindValue : fTs[endIndex].fWindValue;
258 int computeSum(int startIndex, int endIndex, bool binary);
SkOpSegment.cpp 854 int SkOpSegment::computeSum(int startIndex, int endIndex, bool binary) {
856 addTwoAngles(startIndex, endIndex, &angles);
    [all...]
  /external/skia/src/pathops/
SkOpSegment.h 78 bool isConnected(int startIndex, int endIndex) const {
79 return fTs[startIndex].fWindSum != SK_MinS32 || fTs[endIndex].fWindSum != SK_MinS32;
103 int oppSign(int startIndex, int endIndex) const {
104 int result = startIndex < endIndex ? -fTs[startIndex].fOppValue : fTs[endIndex].fOppValue;
173 int spanSign(int startIndex, int endIndex) const {
174 int result = startIndex < endIndex ? -fTs[startIndex].fWindValue : fTs[endIndex].fWindValue;
258 int computeSum(int startIndex, int endIndex, bool binary);
SkOpSegment.cpp 854 int SkOpSegment::computeSum(int startIndex, int endIndex, bool binary) {
856 addTwoAngles(startIndex, endIndex, &angles);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
plurfmt.cpp 475 int32_t startIndex=0;
491 result += UnicodeString(message, startIndex, i);
493 startIndex = i + 1;
498 if ( startIndex < message.length() ) {
499 result += UnicodeString(message, startIndex, message.length()-startIndex);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 184 d.startIndex = startingLookaheadIndex;
192 int numHidden = GetNumberOfHiddenTokens(d.startIndex, lastTokenIndex);
193 int depth = lastTokenIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
221 int numHidden = GetNumberOfHiddenTokens(d.startIndex, thisRefIndex);
222 int depth = thisRefIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
226 d.decision.ruleName + "-" + d.decision.decision + " start index " + d.startIndex);
252 d.decision.decision + " start index " + d.startIndex);
723 public int startIndex;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 197 d.startIndex = startingLookaheadIndex;
206 int numHidden = GetNumberOfHiddenTokens(d.startIndex, lastTokenIndex);
207 int depth = lastTokenIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
239 int numHidden = GetNumberOfHiddenTokens(d.startIndex, thisRefIndex);
240 int depth = thisRefIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
245 d.decision.ruleName + "-" + d.decision.decision + " start index " + d.startIndex);
277 d.decision.decision + " start index " + d.startIndex);
787 public int startIndex;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 103 public int startIndex;
240 d.startIndex = startingLookaheadIndex;
248 int numHidden = getNumberOfHiddenTokens(d.startIndex, lastTokenIndex);
249 int depth = lastTokenIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
272 int numHidden = getNumberOfHiddenTokens(d.startIndex, thisRefIndex);
273 int depth = thisRefIndex - d.startIndex - numHidden + 1; // +1 counts consuming start token as 1
276 d.decision.ruleName+"-"+d.decision.decision+" start index "+d.startIndex);
297 d.decision.decision+" start index "+d.startIndex);
  /external/chromium_org/third_party/icu/source/test/intltest/
tstnrapi.cpp 89 copy.startIndex()!=iter.startIndex() ||
  /external/icu4c/samples/citer/
citer.cpp 76 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
77 u_fprintf(out, "startIndex() or endIndex() failed\n");
140 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
141 u_fprintf(out, "startIndex() or endIndex() failed\n");

Completed in 856 milliseconds

1 2 34 5 6 7 8 91011>>