HomeSort by relevance Sort by last modified time
    Searched defs:_index (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleSyntaxException.java 17 private int _index = -1; field in class:LocaleSyntaxException
25 _index = errorIndex;
29 return _index;
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleSyntaxException.java 13 private int _index = -1; field in class:LocaleSyntaxException
21 _index = errorIndex;
25 return _index;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleSyntaxException.java 13 private int _index = -1; field in class:LocaleSyntaxException
21 _index = errorIndex;
25 return _index;
  /cts/tools/dasm/src/java_cup/
symbol.java 82 protected int _index; field in class:symbol
88 public int index() {return _index;}
lalr_state.java 72 _index = next_index++;
147 protected int _index; field in class:lalr_state
150 public int index() {return _index;}
production.java 118 _index = next_index++;
121 _all.put(new Integer(_index),this);
207 protected int _index; field in class:production
210 public int index() {return _index;}
708 return other._index == _index;
728 return _index*13;
  /external/jetty/src/java/org/eclipse/jetty/io/
BufferCache.java 37 private final ArrayList _index= new ArrayList(); field in class:BufferCache
48 while ((ordinal - _index.size()) >= 0)
49 _index.add(null);
50 if (_index.get(ordinal)==null)
51 _index.add(ordinal, buffer);
57 if (ordinal < 0 || ordinal >= _index.size())
59 return (CachedBuffer)_index.get(ordinal);
166 ",index="+_index+
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSLabel.java 37 private final int _index; field in class:DNSLabel
41 _index = index;
59 return _index;
69 if (aLabel._index == maskedIndex) return aLabel;
DNSOperationCode.java 44 private final int _index; field in class:DNSOperationCode
48 _index = index;
66 return _index;
76 if (aCode._index == maskedIndex) return aCode;
DNSOptionCode.java 36 private final int _index; field in class:DNSOptionCode
40 _index = index;
58 return _index;
68 if (aCode._index == maskedIndex) return aCode;
DNSResultCode.java 99 private final int _index; field in class:DNSResultCode
103 _index = index;
121 return _index;
131 if (aCode._index == maskedIndex) return aCode;
139 if (aCode._index == maskedIndex) return aCode;
DNSRecordClass.java 70 private final int _index; field in class:DNSRecordClass
74 _index = index;
92 return _index;
127 if (aClass._index == maskedIndex) return aClass;
DNSRecordType.java 255 private final int _index; field in class:DNSRecordType
259 _index = index;
277 return _index;
301 if (aType._index == index) return aType;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognitionException.cs 80 private int _index; field in class:Antlr.Runtime.RecognitionException
147 this._index = input.Index;
170 _index = info.GetInt32("Index");
241 return _index;
244 _index = value;
271 info.AddValue("Index", _index);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognitionException.cs 82 private int _index; field in class:Antlr.Runtime.RecognitionException
156 this._index = input.Index;
192 _index = info.GetInt32("Index");
284 return _index;
288 _index = value;
322 info.AddValue("Index", _index);
  /external/opencv/cv/src/
_cvlist.h 369 _index; typedef in typeref:struct:__index
371 DECLARE_LIST( _index, h_ )
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 65 private int _index; field in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
74 _index = 0;
85 _index = 0;
140 _index = 0;
170 if (_index < _orderList.Count)
172 _key = _orderList[_index];
174 _index++;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 69 int _index; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream.StreamIterator
73 _index = -1;
80 if (_index < _outer.nodes.Count)
81 return _outer.nodes[_index];
99 if (_index < _outer.nodes.Count)
100 _index++;
102 return _index < _outer.nodes.Count;
106 _index = -1;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 72 int _index; field in class:Antlr.Runtime.Tree.BufferedTreeNodeStream.StreamIterator
77 _index = -1;
86 if ( _index < _outer.nodes.Count )
87 return _outer.nodes[_index];
107 if ( _index < _outer.nodes.Count )
108 _index++;
110 return _index < _outer.nodes.Count;
115 _index = -1;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeWizard.java 176 _index(t, m); method
181 protected void _index(Object t, Map m) { method in class:TreeWizard
195 _index(child, m); method
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
treewizard.py 378 self._index(tree, m)
382 def _index(self, t, m): member in class:TreeWizard
396 self._index(child, m)
  /toolchain/binutils/binutils-2.25/bfd/
hash.c 465 unsigned int _index; local
468 _index = hash % table->size;
469 for (hashp = table->table[_index];
507 unsigned int _index; local
514 _index = hash % table->size;
515 hashp->next = table->table[_index];
516 table->table[_index] = hashp;
553 _index = chain->hash % newsize;
554 chain_end->next = newtable[_index];
555 newtable[_index] = chain
571 unsigned int _index; local
596 unsigned int _index; local
671 unsigned int _index; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/servlets/
BalancerServlet.java 117 private AtomicInteger _index; field in class:BalancerServlet.RoundRobinIterator
122 _index = new AtomicInteger(-1);
135 int currentIndex = _index.get();
137 if (_index.compareAndSet(currentIndex,nextIndex))
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/audio/
OggInputStream.java 304 int[] _index = new int[oggInfo.channels]; local
338 while ((samples = dspState.synthesis_pcmout(_pcm, _index)) > 0) {
348 int mono = _index[i];
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/audio/
OggInputStream.java 304 int[] _index = new int[oggInfo.channels]; local
338 while ((samples = dspState.synthesis_pcmout(_pcm, _index)) > 0) {
348 int mono = _index[i];

Completed in 942 milliseconds

1 2 3 4