HomeSort by relevance Sort by last modified time
    Searched defs:position (Results 176 - 200 of 686) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/pdfium/core/fpdfapi/page/
cpdf_meshstream.h 25 CFX_PointF position; member in class:CPDF_MeshVertex
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
CodedOutputStreamTest.java 124 buffer.position(initialPosition);
136 dup.position(initialPosition);
137 dup.limit(buffer.position());
162 buffer.position(initialPosition);
174 dup.position(initialPosition);
175 dup.limit(buffer.position());
464 assertEquals(0, byteBuffer.position());
  /external/python/cpython2/Demo/tkinter/guido/
canvasevents.py 22 Objects have a canonical ``x, y'' position which is moved when the
23 object is moved. Where the object is relative to this position
109 self.position(object)
115 def position(self, object): member in class:Pile
172 self.position(o)
  /external/python/cpython2/Objects/
enumobject.c 327 Py_ssize_t position, seqsize; local
334 position = ro->index + 1;
335 return PyInt_FromSsize_t((seqsize < position) ? 0 : position);
  /external/python/cpython3/Objects/
enumobject.c 354 Py_ssize_t position, seqsize; local
361 position = ro->index + 1;
362 return PyLong_FromSsize_t((seqsize < position) ? 0 : position);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMemoryMappedFile.java 97 buffer.position(offset);
101 buffer.position(buffer.position() + byteCount);
110 System.arraycopy(buffer.array(), buffer.position(), dst, dstOffset, byteCount);
  /external/skia/modules/skshaper/src/
SkShaper_primitive.cpp 187 SkScalar position = point.fX; local
189 buffer.positions[i] = { position, point.fY };
190 position += advances[i + glyphOffset];
  /external/sl4a/ScriptingLayerForAndroid/src/org/apache/harmony/niochar/charset/additional/
IBM437.java 64 int cbPos = cb.position();
65 int bbPos = bb.position();
72 bb.position(bbPos+res);
73 cb.position(cbPos+res);
82 int bStart = bb.position();
83 int cStart = cb.position();
94 bb.position(i);
95 cb.position(cStart);
161 int cbPos = cb.position();
162 int bbPos = bb.position();
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
Relay.java 135 byteBuffer.limit(byteBuffer.position());
136 byteBuffer.position(0);
139 offset = charBuffer.position();
147 EastAsianWidth.measure(charArray, 0, charBuffer.position(), wideAttribute,
150 buffer.putString(charArray, wideAttribute, 0, charBuffer.position());
  /external/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 52 int position = 0; local
55 if (byteChars[position] == '-') {
56 position++;
60 if (byteChars[position] == '0') {
61 position++;
62 if (position == byteChars.length) {
64 } else if (byteChars[position] == 'x' || byteChars[position] == 'X') {
66 position++;
67 } else if (Character.digit(byteChars[position], 8) >= 0)
122 int position = 0; local
186 int position = 0; local
256 int position = 0; local
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
StreamReader.java 66 int position = this.index + this.buffer.length() - this.pointer + em.start(); local
67 throw new ReaderException(name, position, em.group().charAt(0),
92 int position = this.index + this.buffer.length() - this.pointer + i; local
93 throw new ReaderException(name, position, c, "special characters are not allowed");
  /external/snakeyaml/src/test/java/examples/
DiceExampleTest.java 76 int position = val.indexOf('d'); local
77 Integer a = new Integer(val.substring(0, position));
78 Integer b = new Integer(val.substring(position + 1));
  /external/snakeyaml/src/test/java/org/pyyaml/
PyImportTest.java 125 int position = name.lastIndexOf('.'); local
126 String canonicalFileName = name.substring(0, position) + ".canonical";
  /external/swiftshader/third_party/SPIRV-Tools/source/
text_handler.h 139 // Advances position to point to the next word in the input stream.
154 // Returns a diagnostic object initialized with current position in the input
176 // Sets the current position in the input stream to the given position.
181 // Returns the current position in the input stream.
182 const spv_position_t& position() const { return current_position_; } function in class:spvtools::AssemblyContext
  /external/tensorflow/tensorflow/c/
env.cc 25 size_t position; member in struct:TF_StringStream
112 if (list->position >= list->list->size()) {
117 *result = list->list->at(list->position++).c_str();
134 list->position = 0;
145 list->position = 0;
  /external/tensorflow/tensorflow/core/grappler/
utils.h 117 // Returns the trailing position number (or zero if no number is present) if
143 int position; local
144 if (!strings::safe_strto32(remaining, &position)) {
147 return is_ctrl ? -1 : position;
175 // Returns the node name and position in a single call.
178 int* position) {
181 *position = 0;
186 *position = is_ctrl ? -1 : 0;
198 if (!strings::safe_strto32(remaining, position)) {
206 // Returns the node name and position in a single call
213 int position; local
    [all...]
  /external/v8/src/ast/
modules.h 123 int position; member in struct:v8::internal::ModuleDescriptor::ModuleRequest
124 ModuleRequest(int index, int position) : index(index), position(position) {}
  /external/v8/src/builtins/
builtins-function.cc 173 // Do not lazily compute eval position for AsyncFunction, as they may not be
178 int position = script->GetEvalPosition(); local
179 USE(position);
192 // Do not lazily compute eval position for AsyncFunction, as they may not be
197 int position = script->GetEvalPosition(); local
198 USE(position);
  /external/v8/src/
collector.h 60 T* position = current_chunk_.start() + index_; local
64 position[i] = initial_value;
66 return Vector<T>(position, size);
77 T* position = current_chunk_.start() + index_; local
81 position[i] = source[i];
83 return Vector<T>(position, source.length());
89 int position = 0; local
92 destination[position] = chunk[j];
93 position++;
97 destination[position] = current_chunk_[i]
    [all...]
  /external/webp/src/dsp/
cost_neon.c 19 static const uint8_t position[16] = { 1, 2, 3, 4, 5, 6, 7, 8, variable
30 const uint8x16_t masked = vandq_u8(eob, vld1q_u8(position));
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_resampler.c 30 float position; member in struct:__anon49847
50 obj->position = 0.0;
95 tnew = be * mm + obj->position;
104 tnew = be * mm + obj->position;
109 obj->position += (*size_out) * be - size;
  /frameworks/av/media/libaudioclient/include/media/
AudioTimestamp.h 33 uint32_t mPosition; // a frame position in AudioTrack::getPosition() units
71 // If this value is -1, then both time and position are invalid.
72 // If this value is 0, then the time is not valid but the position is valid.
85 // before sending to client, but differences in legacy position offset handling
103 int64_t *position, int64_t *time, int timebase, Location *location = nullptr) const {
104 if (position == nullptr || time == nullptr
113 *position = mPosition[i];
128 int64_t position, time; local
129 if (getBestTimestamp(&position, &time, TIMEBASE_MONOTONIC, location) == OK) {
130 timestamp->mPosition = position;
    [all...]
  /frameworks/av/media/libmedia/include/media/
LinearMap.h 34 get a timestamp from the sink. The sink timestamp's position (mPosition)
59 We substitute the sink mPosition of 51020 with the track position 1020,
104 If you look back further, the position is extrapolated either from a passed in
269 // Returns the previous position in the mSamples array
278 ssize_t position = mPos - back; local
279 if (position < 0) position += mSize;
280 return (size_t)position;
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetCompoundText.java 202 for (int i = (source.position() + 1); i < sourceLimit; i++) {
244 int sourceIndex = source.position();
272 source.position(sourceIndex + (escSeqCompoundText[i].length - offset));
374 tmpTargetBuffer.position(0);
388 source.position(source.position()-1);
426 tmpTargetBuffer.limit(tmpTargetBuffer.position());
437 tmpTargetBuffer.limit(tmpTargetBuffer.position());
531 sourceChar[0] = source.get(source.position());
563 if (source.get(source.position()) == ESC_START)
    [all...]
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
TensorTest.java 179 // validate that any datatype is readable with ByteBuffer (content, position)
185 assertEquals(tfloats.numBytes(), bbuf.position());
190 assertEquals(tdoubles.numBytes(), bbuf.position());
195 assertEquals(tints.numBytes(), bbuf.position());
200 assertEquals(tlongs.numBytes(), bbuf.position());
205 assertEquals(tbools.numBytes(), bbuf.position());
218 assertEquals(tdoubles.numElements(), buf.position());
222 // validate typed buffers (content, position)
226 assertEquals(tfloats.numElements(), buf.position());
232 assertEquals(tdoubles.numElements(), buf.position());
    [all...]

Completed in 1253 milliseconds

1 2 3 4 5 6 78 91011>>