HomeSort by relevance Sort by last modified time
    Searched refs:position (Results 26 - 50 of 3473) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestProgressEvent.idl 28 readonly attribute unsigned long long position;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.hlsl 29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
d3d11tri.hlsl 29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayByteInput.java 22 private int position; field in class:ByteArrayByteInput
29 return bytes[position++];
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.hlsl 29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
d3d11tri.hlsl 29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
  /libcore/dex/src/main/java/com/android/dex/util/
ByteArrayByteInput.java 22 private int position; field in class:ByteArrayByteInput
29 return bytes[position++];
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDimension.cpp 53 size_t position = lastParsedIndex;
54 while (position < endOfCurrentToken && isASCIIDigit(characters[position]))
55 ++position;
57 if (position > lastParsedIndex) {
59 unsigned integerValue = charactersToUIntStrict(characters + lastParsedIndex, position - lastParsedIndex, &ok);
63 if (position < endOfCurrentToken && characters[position] == '.') {
64 ++position;
65 size_t fractionStart = position;
    [all...]
  /external/bison/examples/calc++/
position.hh 34 ** \file ../../../../examples/calc++/position.hh
35 ** Define the yy::position class.
56 #line 57 "../../../../examples/calc++/position.hh"
57 /// Abstract a position.
58 class position class in namespace:yy
62 /// Construct a position.
63 explicit position (std::string* f = YY_NULL, function in class:yy::position
99 /// File name to which this position refers.
107 /// Add and assign a position.
108 inline position
    [all...]
  /external/chromium_org/content/browser/geolocation/
location_provider_android.cc 22 const Geoposition& position) {
23 last_position_ = position;
35 void LocationProviderAndroid::GetPosition(Geoposition* position) {
36 *position = last_position_;
40 // Nothing to do here, android framework will call us back on new position.
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriterBase.h 47 long long position() const function in class:WebCore::FileWriterBase
64 void setPosition(long long position)
66 m_position = position;
74 void seekInternal(long long position);
FileWriterSync.idl 36 [RaisesException] void seek(long long position);
39 readonly attribute long long position;
  /frameworks/base/core/java/android/widget/
SectionIndexer.java 29 * section/position.
49 * the starting position of that section within the adapter.
51 * If the section's starting position is outside of the adapter bounds, the
52 * position must be clipped to fall within the size of the adapter.
56 * @return the starting position of that section within the adapter,
62 * Given a position within the adapter, returns the index of the
69 * starts at adapter position 100. Calling this method with position 10,
72 * @param position the position within the adapter for which to return th
    [all...]
  /external/chromium_org/net/base/
upload_progress.h 15 UploadProgress(uint64 position, uint64 size)
16 : size_(size), position_(position) {}
19 uint64 position() const { return position_; } function in class:net::UploadProgress
  /external/clang/test/PCH/
objcxx-ivar-class.h 9 S position; variable
11 @property(assign, nonatomic) S position; variable
15 @synthesize position; variable
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitReaderBuffer.java 9 int position; field in class:BitReaderBuffer
13 initialPos = buffer.position();
17 byte b = buffer.get(initialPos + position / 8);
19 int left = 8 - position % 8;
22 rc = (v << (position % 8) & 0xFF) >> ((position % 8) + (left - i));
23 position += i;
31 buffer.position(initialPos + (int) Math.ceil((double) position / 8));
36 return position;
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
InputAction.h 36 unsigned int position() const { return m_Position; } function in class:mcld::InputAction
39 { return (position() < pOther.position()); }
  /external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java 145 * <p>Position must be negative where -1 is the index of the last
148 * @param position The index into the buffer
152 public char getChar(int position) {
153 assert(position < 0); // Developer error if it triggers.
155 int absolutePosition = getAbsolutePosition(position);
164 * Sets the given {@code input} at the given {@code position} of the buffer.
171 * @param position The index at which to set the character
175 public boolean setChar(int position, char input) {
176 assert(position < 0); // Developer error if it triggers.
178 int absolutePosition = getAbsolutePosition(position);
    [all...]
  /external/chromium_org/third_party/ots/test/
file-stream.h 30 bool Seek(off_t position) {
32 if (!::_fseeki64(file_, position, SEEK_SET)) {
33 position_ = position;
37 if (!::fseeko(file_, position, SEEK_SET)) {
38 position_ = position;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemFocusableAboveUnfocusable.java 40 protected View createView(int position, ViewGroup parent, int desiredHeight) {
41 if (position == 0) {
43 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
45 return super.createView(position, parent, desiredHeight);
ListInterleaveFocusables.java 43 protected View createView(int position, ViewGroup parent, int desiredHeight) {
44 if (mFocusablePositions.contains(position)) {
46 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
48 return super.createView(position, parent, desiredHeight);
53 public int getItemViewType(int position) {
54 return mFocusablePositions.contains(position) ? 0 : 1;
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
GridAdapter.java 30 * Checks to see if the child at the specified position is draggable
31 * @param position The position of the child to check against
32 * @return boolean If true, the child at the specified position is draggable.
34 public boolean isDraggable(int position) {
39 * For a view at the specified position, return the region around the view that is a possible
41 * @param position The adapter position
42 * @param isLastColumnInGrid Flag to indicate whether the view at the specified position is
48 * @return int The re-ordering area for the view at this adapter position
    [all...]
  /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/chromium_org/third_party/WebKit/Source/core/html/track/
WebVTTParser.cpp 49 String WebVTTParser::collectDigits(const String& input, unsigned* position)
52 while (*position < input.length() && isASCIIDigit(input[*position]))
53 digits.append(input[(*position)++]);
57 String WebVTTParser::collectWord(const String& input, unsigned* position)
60 while (*position < input.length() && !isASpace(input[*position]))
61 string.append(input[(*position)++]);
74 unsigned position = 0; local
77 floatNumberAsString.append(WebVTTParser::collectDigits(value, &position));
143 unsigned position = 0; local
219 unsigned position = 0; local
270 unsigned position = 0; local
532 unsigned position = 0; local
    [all...]
  /libcore/luni/src/main/java/java/nio/
CharArrayBuffer.java 45 buf.position = other.position();
58 System.arraycopy(backingArray, position + arrayOffset, backingArray, arrayOffset, remaining());
59 position = limit - position;
70 return new CharArrayBuffer(remaining(), backingArray, arrayOffset + position, isReadOnly);
99 if (position == limit) {
102 return backingArray[arrayOffset + position++];
114 System.arraycopy(backingArray, arrayOffset + position, dst, srcOffset, charCount);
115 position += charCount
    [all...]

Completed in 740 milliseconds

12 3 4 5 6 7 8 91011>>