HomeSort by relevance Sort by last modified time
    Searched defs:position (Results 1 - 25 of 686) 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/libartbase/base/
bit_field.h 34 static constexpr size_t position = kPosition; member in class:art::BitField
37 static_assert(position < sizeof(uintptr_t) * kBitsPerByte, "Invalid position.");
40 static_assert(size + position <= sizeof(uintptr_t) * kBitsPerByte, "Invalid position + size.");
55 return ((kUintPtrTOne << size) - 1) << position;
61 return position;
72 return static_cast<uintptr_t>(value) << position;
77 return static_cast<T>((value >> position) & ((kUintPtrTOne << size) - 1));
85 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
  /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/skia/modules/sksg/src/
SkSGGradient.cpp 26 SkScalar position = 0; local
29 position = SkTPin(stop.fPosition, position, 1.0f);
30 positions.push_back(position);
  /external/skqp/modules/sksg/src/
SkSGGradient.cpp 26 SkScalar position = 0; local
29 position = SkTPin(stop.fPosition, position, 1.0f);
30 positions.push_back(position);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
random_vector.cc 48 size_t position = seed_ & (kRandomTableSize - 1); local
49 output[i] = kRandomTable[position];
  /cts/tests/tests/widget/src/android/widget/cts/
AdapterView_AdapterContextMenuInfoTest.java 38 int position = 1; local
40 menuInfo = new AdapterView.AdapterContextMenuInfo(testView, position, id);
42 assertEquals(position, menuInfo.position);
  /dalvik/dx/src/com/android/dex/util/
ByteArrayByteInput.java 22 private int position; field in class:ByteArrayByteInput
30 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/tensorflow/tensorflow/core/grappler/optimizers/data/
function_utils.h 37 // have the format node_name:node_output:position (if they derive from nodes),
43 int position);
45 // Parses node_name:node_output:position string into its components.
49 // GrapplerFunctionItem expands node output range if position is not defined
53 int position = -1; member in struct:tensorflow::grappler::function_utils::FunctionDefTensorDesc
  /external/turbine/java/com/google/turbine/parse/
Lexer.java 29 /** Returns the current position in the input. */
30 int position(); method in interface:Lexer
SavedToken.java 22 final int position; field in class:SavedToken
24 SavedToken(Token token, String value, int position) {
27 this.position = position;
  /external/v8/src/debug/
debug-type-profile.h 22 : position(pos), types(std::move(t)) {}
23 int position; member in struct:v8::internal::TypeProfileEntry
  /external/xz-java/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
  /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());
114 lintVariable(method.position(), "Return value of '" + method.name() + "'", method.returnType(),
119 public void lintParameter(MethodInfo method, ParameterInfo param, SourcePositionInfo position,
122 lintCommon(position, tag);
124 lintVariable(position, "Parameter '" + param.name() + "' of '" + method.name() + "'",
  /cts/tests/tests/graphics/src/android/graphics/cts/
LinearGradientTest.java 50 float[] position = { 0.0f, 1.0f / 3.0f, 2.0f / 3.0f }; local
52 lg = new LinearGradient(0, 0, 0, 40, color, position, TileMode.CLAMP);
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentActivity.java 37 int position = extras.getInt("position"); local
39 frag.updateContentAndRecycleBitmap(category, position);
  /device/generic/car/emulator/audio/driver/
ext_pcm.h 30 unsigned int position; member in struct:ext_mixer_pipeline
  /external/adhd/cras/src/server/
cras_bt_player.h 24 int position; member in struct:cras_bt_player
  /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]);

Completed in 923 milliseconds

1 2 3 4 5 6 7 8 91011>>