Home
last modified time | relevance | path

Searched refs:currentPos (Results 1 – 15 of 15) sorted by relevance

/external/icu/icu4c/source/tools/toolutil/
Ducbuf.cpp43 UChar* currentPos; member
176 if(buf->currentPos<buf->bufLimit){ in ucbuf_fillucbuf()
177 offset = (int32_t)(buf->bufLimit-buf->currentPos); in ucbuf_fillucbuf()
178 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar)); in ucbuf_fillucbuf()
312 buf->currentPos = pTarget; in ucbuf_fillucbuf()
329 if(buf->currentPos>=buf->bufLimit){ in ucbuf_getc()
339 return *(buf->currentPos++); in ucbuf_getc()
349 if(buf->currentPos+1>=buf->bufLimit){ in ucbuf_getc32()
358 if(U16_IS_LEAD(*(buf->currentPos))){ in ucbuf_getc32()
359 retVal=U16_GET_SUPPLEMENTARY(buf->currentPos[0],buf->currentPos[1]); in ucbuf_getc32()
[all …]
/external/javassist/src/main/javassist/expr/
DNewArray.java81 int atype = iterator.byteAt(currentPos + 1); in getComponentType()
86 int index = iterator.u16bitAt(currentPos + 1); in getComponentType()
127 int index = iterator.u16bitAt(currentPos + 1); in getDimension()
143 return iterator.byteAt(currentPos + 3); in getCreatedDimensions()
175 int pos = currentPos; in replace2()
182 index = iterator.byteAt(currentPos + 1); // atype in replace2()
198 index = iterator.u16bitAt(currentPos + 1); in replace2()
200 dim = iterator.byteAt(currentPos + 3); in replace2()
DExpr.java45 int currentPos; field in Expr
58 currentPos = pos; in Expr()
138 int pos = currentPos; in mayThrow()
186 return currentPos; in indexOfBytecode()
195 return thisMethod.getLineNumber(currentPos); in getLineNumber()
319 oldIterator.move(currentPos); in runEditor()
DMethodCall.java35 int pos = currentPos; in getNameAndType()
86 int pos = currentPos; in getClassName()
148 return iterator.byteAt(currentPos) == INVOKESPECIAL in isSuper()
181 int pos = currentPos; in replace()
DFieldAccess.java96 int index = iterator.u16bitAt(currentPos + 1); in getClassName()
104 int index = iterator.u16bitAt(currentPos + 1); in getFieldName()
135 int index = iterator.u16bitAt(currentPos + 1); in getSignature()
152 int pos = currentPos; in replace()
DNewExpr.java105 int methodIndex = iterator.u16bitAt(currentPos + 1); // constructor in getSignature()
114 int index = iterator.u16bitAt(currentPos + 1); in getConstructor()
177 pos = currentPos; in replace()
DCast.java65 int pos = currentPos; in getType()
92 int pos = currentPos; in replace()
DInstanceof.java68 int pos = currentPos; in getType()
95 int pos = currentPos; in replace()
/external/javassist/src/main/javassist/bytecode/
DCodeIterator.java38 protected int currentPos; field in CodeIterator
51 currentPos = mark = 0; in begin()
68 currentPos = index; in move()
170 public boolean hasNext() { return currentPos < endPos; } in hasNext()
183 int pos = currentPos; in next()
184 currentPos = nextOpcode(bytecode, pos); in next()
197 return currentPos; in lookAhead()
319 return insert0(currentPos, code, false); in insert()
392 return insert0(currentPos, code, true); in insertEx()
481 return insertGapAt(currentPos, length, false).position; in insertGap()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DProfiler.cs78 protected Stack<int> currentPos = new Stack<int>(); field in Antlr.Runtime.Debug.Profiler
152 currentPos.Push(pos); in Location()
175 descriptor.pos = currentPos.Peek(); in EnterDecision()
657 currentPos.Peek()); in LocationDescription()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DProfiler.cs78 protected Stack<int> currentPos = new Stack<int>(); field in Antlr.Runtime.Debug.Profiler
162 currentPos.Push(pos); in Location()
188 descriptor.pos = currentPos.Peek(); in EnterDecision()
717 currentPos.Peek()); in LocationDescription()
/external/lzma/CPP/7zip/Common/
DFileStreams.cpp396 UInt64 currentPos; in SetSize() local
397 if (!File.Seek(0, FILE_CURRENT, currentPos)) in SetSize()
401 result = result && File.Seek(currentPos, currentPos2); in SetSize()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DProfiler.java133 protected Stack<Integer> currentPos = new Stack(); field in Profiler
210 currentPos.push(pos); in location()
231 descriptor.pos = (Integer)currentPos.peek(); in enterDecision()
728 currentPos.peek()); in locationDescription()
/external/v8/benchmarks/
Dnavier-stokes.js262 var currentPos = j * rowSize;
269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);
270 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);
/external/dng_sdk/source/
Ddng_string.cpp68 static void CheckSpaceLeftInBuffer(const T *currentPos, in CheckSpaceLeftInBuffer() argument
73 if (bufferEnd < currentPos || static_cast<size_t>(bufferEnd - currentPos) < space) in CheckSpaceLeftInBuffer()