HomeSort by relevance Sort by last modified time
    Searched defs:position (Results 76 - 100 of 1139) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/nio/channels/
FileLock.java 76 // The lock starting position.
77 private final long position; field in class:FileLock
87 * enforces the starting position, length and sharing mode of the lock.
91 * @param position
99 protected FileLock(FileChannel channel, long position, long size, boolean shared) {
100 if (position < 0 || size < 0 || position + size < 0) {
101 throw new IllegalArgumentException("position=" + position + " size=" + size);
104 this.position = position
121 public final long position() { method in class:FileLock
    [all...]
  /libcore/luni/src/main/java/java/security/
MessageDigestSpi.java 80 int position = input.position(); local
82 engineUpdate(tmp, offset+position, limit - position);
83 input.position(limit);
85 tmp = new byte[input.limit() - input.position()];
  /libcore/luni/src/main/java/java/sql/
Blob.java 60 * the position of the first byte in the {@code Blob} to get,
61 * where the first byte in the {@code Blob} has position 1.
82 * Search for the position in this {@code Blob} at which a specified pattern
83 * begins, starting at a specified position within the {@code Blob}.
89 * the position within this {@code Blob} to start the search,
90 * where the first position in the {@code Blob} is {@code 1}.
91 * @return a {@code long} value with the position at which the pattern
97 public long position(Blob pattern, long start) throws SQLException; method in interface:Blob
100 * Search for the position in this {@code Blob} at which the specified
101 * pattern begins, starting at a specified position within the {@code Blob}
115 public long position(byte[] pattern, long start) throws SQLException; method in interface:Blob
    [all...]
Clob.java 80 * Retrieves the character position at which a specified {@code Clob} object
86 * the position within this {@code Clob} to start the search
87 * @return a long value with the position at which the specified {@code
92 public long position(Clob searchstr, long start) throws SQLException; method in interface:Clob
95 * Retrieves the character position at which a specified substring appears
101 * the position at which to start the search within this {@code
103 * @return a long value with the position at which the specified string
108 public long position(String searchstr, long start) throws SQLException; method in interface:Clob
112 * {@code Clob} object, starting at specified position.
115 * the position at which to start the writing
    [all...]
  /libcore/luni/src/main/java/java/util/
StringTokenizer.java 48 private int position; field in class:StringTokenizer
100 this.position = 0;
112 for (int i = position, length = string.length(); i < length; i++) {
149 if (position < length) {
155 for (int i = position; i < length; i++)
185 int i = position;
190 if (delimiters.indexOf(string.charAt(position), 0) >= 0)
191 return String.valueOf(string.charAt(position++));
192 for (position++; position < length; position++
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
MacSpi.java 89 * buffer, starting at {@link ByteBuffer#position()}, including the next
103 int position = input.position(); local
105 engineUpdate(bInput, offset + position, limit - position);
106 input.position(limit);
108 bInput = new byte[input.limit() - input.position()];
  /libcore/luni/src/main/java/libcore/io/
NioBufferIterator.java 32 private int position; field in class:NioBufferIterator
41 position = offset;
45 position += byteCount;
49 Memory.peekByteArray(address + position, dst, dstOffset, byteCount);
50 position += byteCount;
54 byte result = Memory.peekByte(address + position);
55 ++position;
60 int result = Memory.peekInt(address + position, swap);
61 position += SizeOf.INT;
66 Memory.peekIntArray(address + position, dst, dstOffset, intCount, swap)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
Gusterpolator.java 70 int position = Math.min( local
74 float quantized = position * STEP_SIZE;
78 return VALUES[position] + weight * (VALUES[position + 1] - VALUES[position]);
  /external/replicaisland/src/com/replica/replicaisland/
MotionBlurComponent.java 31 public Vector2 position = new Vector2(); field in class:MotionBlurComponent.BlurRecord
51 mHistory[x].position.zero();
73 mHistory[mCurrentStep].position.set(((GameObject)parent).getPosition());
105 renderer.scheduleForDraw(stepImage, record.position, mTargetPriority - (x + 1), true);
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelperHoneycomb.java 73 int position = mActionBar.getSelectedTab().getPosition(); local
74 outState.putInt("tab_position", position);
79 int position = savedInstanceState.getInt("tab_position"); local
80 mActionBar.setSelectedNavigationItem(position);
  /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/ceres-solver/internal/ceres/
block_jacobi_preconditioner.cc 81 ConstMatrixRef m(values + cells[c].position,
107 const int position = block_structure_.cols[c].position; local
112 ConstVectorRef(D + position, size).array().square().matrix();
126 const int position = block_structure_.cols[c].position; local
128 ConstVectorRef x_block(x + position, size);
129 VectorRef y_block(y + position, size);
block_structure.h 51 Block() : size(-1), position(-1) {}
52 Block(int size_, int position_) : size(size_), position(position_) {}
55 int position; // Position along the row/column. member in struct:ceres::internal::Block
59 Cell() : block_id(-1), position(-1) {}
61 : block_id(block_id_), position(position_) {}
66 int position; member in struct:ceres::internal::Cell
  /external/chromium_org/chrome/browser/ui/panels/
stacked_panel_collection.h 95 gfx::Point position; member in struct:StackedPanelCollection::PanelPlacement
  /external/chromium_org/components/variations/
study_filtering.cc 81 size_t position = hardware_class.find(filter.hardware_class(i)); local
82 if (position != std::string::npos)
92 size_t position = hardware_class.find( local
94 if (position != std::string::npos)
  /external/chromium_org/content/browser/compositor/
software_output_device_win.cc 78 POINT position = {wr.left, wr.top}; local
88 ::UpdateLayeredWindow(hwnd_, NULL, &position, &size, dib_dc, &zero,
  /external/chromium_org/content/browser/geolocation/
location_api_adapter_android.cc 109 Geoposition position; local
110 position.latitude = latitude;
111 position.longitude = longitude;
112 position.timestamp = base::Time::FromDoubleT(time_stamp);
114 position.altitude = altitude;
116 position.accuracy = accuracy;
118 position.heading = heading;
120 position.speed = speed;
121 GetInstance()->OnNewGeopositionInternal(position);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
CSSPreloadScanner.cpp 217 TextPosition position = TextPosition(source.currentLine(), source.currentColumn()); local
218 OwnPtr<PreloadRequest> request = PreloadRequest::create(FetchInitiatorTypeNames::css, position, url, baseElementURL, Resource::CSSStyleSheet);
  /external/chromium_org/third_party/WebKit/public/web/
WebTouchPoint.h 63 WebFloatPoint position; member in class:blink::WebTouchPoint
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Scanners.py 37 position() --> (name, line, col)
38 Returns the position of the last token read using the
54 # buf_start_pos = 0 # position in input of start of buffer
55 # next_pos = 0 # position in input of next char to read
56 # cur_pos = 0 # position in input of current char
58 # cur_line_start = 0 # position in input of start of current line
59 # start_pos = 0 # position in input of start of token
61 # start_col = 0 # position in line of start of token
291 def position(self): member in class:Scanner
297 position within the line of the first character of the toke
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.cpp 32 float position[4]; member in struct:vertex
66 {"POSITION", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, 0, D3D10_INPUT_PER_VERTEX_DATA, 0},
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
d3d11tri.cpp 32 float position[4]; member in struct:vertex
68 {"POSITION", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, 0, D3D11_INPUT_PER_VERTEX_DATA, 0},
  /external/chromium_org/third_party/polymer/components-chromium/core-layout-grid/
core-layout-grid-extracted.js 212 // TODO(sjmiles): this code tries to preserve actual position,
217 style.position = 'absolute';
240 function position(elt, left, right, top, bottom) { function
292 node.style.position = 'absolute';
319 position(node, l, r, t, b);
  /external/chromium_org/third_party/webrtc/common_audio/vad/
vad_sp.c 65 int position = -1; local
95 // |smallest_values|. If so, find the |position| where to insert the new value
101 position = 0;
103 position = 1;
106 position = 2;
108 position = 3;
112 position = 4;
114 position = 5;
117 position = 6;
119 position = 7
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLBIOSink.java 24 private int position; field in class:OpenSSLBIOSink
37 return buffer.size() - position;
42 position = 0;
47 position += maxLength;
48 if (position == buffer.size()) {
62 public int position() { method in class:OpenSSLBIOSink
63 return position;

Completed in 624 milliseconds

1 2 34 5 6 7 8 91011>>