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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
objcxx-ivar-class.h 9 S position; variable
11 @property(assign, nonatomic) S position; variable
15 @synthesize position; variable
  /art/runtime/base/
bit_field.h 33 static constexpr size_t position = kPosition; member in class:art::BitField
36 static_assert(position < sizeof(uintptr_t) * kBitsPerByte, "Invalid position.");
39 static_assert(size + position <= sizeof(uintptr_t) * kBitsPerByte, "Invalid position + size.");
54 return ((kUintPtrTOne << size) - 1) << position;
60 return position;
71 return static_cast<uintptr_t>(value) << position;
76 return static_cast<T>((value >> position) & ((kUintPtrTOne << size) - 1));
84 return (static_cast<uintptr_t>(value) << position) |
    [all...]
  /external/clang/test/CodeGen/
ext-vector-member-alignment.c 6 float4 position; member in struct:struct1
10 float4 f(struct struct1* x) { return x->position; }
13 p->position.x = c;
14 *a = p->position.y;
15 *b = p->position[0];
16 p->position[2] = c;
  /external/deqp/framework/referencerenderer/
rrFragmentPacket.hpp 52 tcu::IVec2 position; //!< Position of (0,0) fragment. member in struct:rr::FragmentPacket
rrVertexPacket.hpp 46 * Outputs include position, optional point size, and list of generic
60 tcu::Vec4 position; //!< Transformed position - must be written always. member in struct:rr::VertexPacket
  /external/sfntly/cpp/src/sfntly/data/
font_output_stream.h 51 virtual size_t position() { return position_; } function in class:sfntly::FontOutputStream
font_input_stream.h 73 // Get the current position in the stream in bytes.
74 // @return the current position in bytes
75 virtual int64_t position() { return position_; } function in class:sfntly::FontInputStream
  /external/webrtc/webrtc/modules/audio_coding/neteq/
random_vector.cc 48 size_t position = seed_ & (kRandomTableSize - 1); local
49 output[i] = kRandomTable[position];
  /frameworks/compile/mclinker/include/mcld/MC/
InputAction.h 32 unsigned int position() const { return m_Position; } function in class:mcld::InputAction
35 return (position() < pOther.position());
  /system/bt/stack/include/
advertise_data_parser.h 29 size_t position = 0; local
32 while (position != ad_len) {
33 uint8_t len = ad[position];
41 if (position + len >= ad_len) {
45 position += len + 1;
57 size_t position = 0; local
59 while (position != ad_len) {
60 uint8_t len = ad[position];
63 if (position + len >= ad_len) break;
65 uint8_t adv_type = ad[position + 1]
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
LinearGradientTest.java 46 float[] position = { 0.0f, 1.0f / 3.0f, 2.0f / 3.0f }; local
48 lg = new LinearGradient(0, 0, 0, 40, color, position, TileMode.CLAMP);
  /cts/tests/tests/widget/src/android/widget/cts/
AdapterView_AdapterContextMenuInfoTest.java 37 int position = 1; local
39 menuInfo = new AdapterView.AdapterContextMenuInfo(testView, position, id);
41 assertEquals(position, menuInfo.position);
  /dalvik/dx/src/com/android/dex/util/
ByteArrayByteInput.java 22 private int position; field in class:ByteArrayByteInput
29 return bytes[position++];
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineVertexUtil.hpp 40 tcu::Vec4 position; member in struct:vkt::pipeline::Vertex4RGBA
46 tcu::Vec4 position; member in struct:vkt::pipeline::Vertex4Tex4
  /external/fio/
gcompat.c 18 void gtk_combo_box_text_insert_text(GtkComboBoxText *combo_box, gint position,
21 gtk_combo_box_insert_text(GTK_COMBO_BOX(combo_box), position, text); local
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableInputStream.java 22 * This will not seek past the end of the file. If the current position
25 * would cause the position to exceed the stream size, this will do
29 * If <code>n</code> is negative, the position isn't changed and
46 long pos = position();
63 * Gets the current position in the stream.
65 public abstract long position() throws IOException; method in class:SeekableInputStream
68 * Seeks to the specified absolute position in the stream.
75 * @param pos new read position in the stream
SeekableFileInputStream.java 92 public long position() throws IOException { method in class:SeekableFileInputStream
  /frameworks/av/media/libaudioclient/
AudioPolicy.cpp 104 size_t position = parcel->dataPosition(); local
106 parcel->setDataPosition(position);
111 size_t position = parcel->dataPosition(); local
114 parcel->setDataPosition(position);
  /libcore/ojluni/src/main/java/java/nio/channels/
SeekableByteChannel.java 32 * A byte channel that maintains a current <i>position</i> and allows the
33 * position to be changed.
37 * written. The current position can be {@link #position() <i>queried</i>} and
38 * {@link #position(long) <i>modified</i>}. The channel also provides access to
43 * <p> The {@link #position(long) position} and {@link #truncate truncate} methods
59 * <p> Bytes are read starting at this channel's current position, and
60 * then the position is updated with the number of bytes actually read.
70 * <p> Bytes are written starting at this channel's current position, unles
94 long position() throws IOException; method in interface:SeekableByteChannel
125 SeekableByteChannel position(long newPosition) throws IOException; method in interface:SeekableByteChannel
    [all...]
  /external/doclava/src/com/google/doclava/
AndroidLinter.java 27 lintCommon(field.position(), field.comment().tags());
70 lintCommon(method.position(), method.comment().tags());
71 lintCommon(method.position(), method.returnTags().tags());
112 lintVariable(method.position(), "Return value of '" + method.name() + "'", method.returnType(),
117 public void lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position,
120 lintCommon(position, tag);
122 lintVariable(position, "Parameter '" + param.name() + "' of '" + method.name() + "'",
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentActivity.java 37 int position = extras.getInt("position"); local
39 frag.updateContentAndRecycleBitmap(category, position);
  /external/autotest/frontend/client/src/autotest/common/ui/
RightClickTable.java 50 RowColumn position = getCellPosition(td); local
52 return new HTMLTable.Cell(position.row, position.column) {
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateTestCaseUtil.hpp 47 : position(position_)
50 tcu::Vec4 position; member in struct:vkt::DynamicState::PositionColorVertex
  /external/deqp/framework/opengl/simplereference/
sglrContextUtil.cpp 48 float position[] = local
78 ctx.bufferData(GL_ARRAY_BUFFER, DE_LENGTH_OF_ARRAY(position)*sizeof(float), &position[0], GL_STATIC_DRAW);
118 float position[] = local
141 ctx.vertexAttribPointer(posLoc, 4, GL_FLOAT, GL_FALSE, 0, &position[0]);
  /external/guava/guava/src/com/google/common/collect/
AbstractIndexedListIterator.java 29 * position. It does not support {@link #remove}, {@link #set}, or {@link #add}.
37 private int position; field in class:AbstractIndexedListIterator
47 * position is 0. That is, the first call to {@link #next()} will return the
59 * initial position. That is, the first call to {@link #nextIndex()} will
60 * return {@code position}, and the first call to {@link #next()} will return
62 * retrieve the preceding {@code position} elements.
64 * @throws IndexOutOfBoundsException if {@code position} is negative or is
68 protected AbstractIndexedListIterator(int size, int position) {
69 checkPositionIndex(position, size);
71 this.position = position
    [all...]

Completed in 692 milliseconds

1 2 3 4 5 6 7 8 91011>>