Searched defs:position (Results 201 - 225 of 997) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/ots/include/
H A Dots-memory-stream.h31 virtual bool Seek(off_t position) { argument
32 if (position < 0) return false;
33 if (static_cast<size_t>(position) > length_) return false;
34 off_ = position;
85 bool Seek(off_t position) { argument
86 if (position < 0) return false;
87 if (static_cast<size_t>(position) > length_) return false;
88 off_ = position;
/external/chromium_org/third_party/skia/gm/
H A Drects.cpp251 // position the current test on the canvas
252 static void position(SkCanvas* canvas, int testCount) { function in class:skiagm::RectsGM
269 this->position(canvas, testCount);
284 this->position(canvas, testCount);
/external/chromium_org/third_party/webrtc/common_audio/vad/
H A Dvad_sp.c65 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
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dsync_buffer.cc44 void SyncBuffer::InsertZerosAtIndex(size_t length, size_t position) { argument
45 position = std::min(position, Size());
46 length = std::min(length, Size() - position);
49 channels_[channel]->InsertZerosAt(length, position);
51 if (next_index_ >= position) {
55 if (dtmf_index_ > 0 && dtmf_index_ >= position) {
63 size_t position) {
64 position = std::min(position, Siz
61 ReplaceAtIndex(const AudioMultiVector& insert_this, size_t length, size_t position) argument
69 ReplaceAtIndex(const AudioMultiVector& insert_this, size_t position) argument
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DColorSuggestionListAdapter.java96 public View getView(int position, View convertView, ViewGroup parent) { argument
123 setUpColorButton(layout.getChildAt(i), position * COLORS_PER_ROW + i);
129 public long getItemId(int position) { argument
130 return position;
134 public Object getItem(int position) { argument
/external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
H A DAutofillPopup.java123 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
125 int listIndex = mSuggestions.indexOf(adapter.getItem(position));
/external/chromium_org/ui/gfx/
H A Dbreak_list.h20 // Each break stores the start position and value of its associated range.
21 // A solitary break at position 0 applies to the entire space [0, max_).
23 // The first break always has position 0, to ensure all positions have a value.
33 // Initialize a break at position 0 with the default or supplied |value|.
39 // Clear the breaks and set a break at position 0 with the supplied |value|.
45 // Set the max position and trim any breaks at or beyond that position.
49 // Get the break applicable to |position| (at or preceeding |position|).
50 typename std::vector<Break>::iterator GetBreak(size_t position);
123 GetBreak( size_t position) argument
[all...]
/external/chromium_org/ui/gfx/range/
H A Drange.cc26 Range::Range(size_t position) argument
27 : start_(position),
28 end_(position) {
/external/chromium_org/ui/message_center/views/
H A Dpadded_button.cc64 gfx::Point position = ComputePaddedImagePaintPosition(image); local
66 canvas->DrawImageInt(background_image_, position.x(), position.y());
67 canvas->DrawImageInt(image, position.x(), position.y());
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_drop_target_win.cc37 POINT position,
43 Translate(data_object, key_state, position, effect, &data, &event, &delegate);
50 POINT position,
56 Translate(data_object, key_state, position, effect, &data, &event, &delegate);
68 POINT position,
74 Translate(data_object, key_state, position, effect, &data, &event, &delegate);
92 POINT position,
97 gfx::Point location(position.x, position.y);
35 OnDragEnter(IDataObject* data_object, DWORD key_state, POINT position, DWORD effect) argument
48 OnDragOver(IDataObject* data_object, DWORD key_state, POINT position, DWORD effect) argument
66 OnDrop(IDataObject* data_object, DWORD key_state, POINT position, DWORD effect) argument
89 Translate( IDataObject* data_object, DWORD key_state, POINT position, DWORD effect, scoped_ptr<OSExchangeData>* data, scoped_ptr<ui::DropTargetEvent>* event, DragDropDelegate** delegate) argument
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-sourceinfo.js65 // This is the last position in the entire file (note: this equals
82 // The position of the first line of d(), i.e. "x = 1 ;".
102 // Test that when running through source positions the position, line and
104 var position; variable
110 assertEquals(position + 1, location.position);
118 assertEquals(0, location.position);
124 position = location.position;
135 assertEquals(p, location.position);
[all...]
/external/deqp/framework/common/
H A DtcuResource.cpp88 void FileResource::setPosition (int position) argument
90 fseek(m_file, (size_t)position, SEEK_SET);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCstInsn.java48 * @param position {@code non-null;} source position
54 public CstInsn(Dop opcode, SourcePosition position, argument
56 super(opcode, position, registers);
H A DPositionList.java23 * List of source position entries. This class includes a utility
31 * constant for {@link #make} to indicate that no actual position
43 * constant for {@link #make} to indicate that only "important" position
50 * Extracts and returns the source position information out of an
146 * Entry in a position list.
152 /** {@code non-null;} corresponding source position information */
153 private final SourcePosition position; field in class:PositionList.Entry
159 * @param position {@code non-null;} corresponding source position information
161 public Entry (int address, SourcePosition position) { argument
[all...]
H A DSwitchData.java54 * @param position {@code non-null;} source position
61 public SwitchData(SourcePosition position, CodeAddress user, argument
63 super(position, RegisterSpecList.EMPTY);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DFillArrayDataInsn.java46 * @param position {@code non-null;} source position
51 public FillArrayDataInsn(Rop opcode, SourcePosition position, argument
55 super(opcode, position, null, sources);
H A DSwitchInsn.java36 * @param position {@code non-null;} source position
41 public SwitchInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
43 super(opcode, position, result, sources);
H A DThrowingCstInsn.java37 * @param position {@code non-null;} source position
42 public ThrowingCstInsn(Rop opcode, SourcePosition position, argument
45 super(opcode, position, null, sources, cst);
H A DThrowingInsn.java58 * @param position {@code non-null;} source position
62 public ThrowingInsn(Rop opcode, SourcePosition position, argument
65 super(opcode, position, null, sources);
/external/doclava/src/com/google/doclava/
H A DParameterInfo.java27 SourcePositionInfo position) {
32 mPosition = position;
55 SourcePositionInfo position() { method in class:ParameterInfo
26 ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, SourcePositionInfo position) argument
H A DTagInfo.java46 SourcePositionInfo position() { method in class:TagInfo
/external/e2fsprogs/debugfs/
H A Dncheck.c32 int position; member in struct:inode_walk_struct
50 iw->position++;
51 if (iw->position <= 2)
168 iw.position = 0;
/external/eigen/demos/opengl/
H A Dgpuhelper.cpp56 void GpuHelper::drawVector(const Vector3f& position, const Vector3f& vec, const Color& color, float aspect /* = 50.*/) argument
62 glTranslatef(position.x(), position.y(), position.z());
77 void GpuHelper::drawVectorBox(const Vector3f& position, const Vector3f& vec, const Color& color, float aspect) argument
83 glTranslatef(position.x(), position.y(), position.z());
/external/icu/icu4c/source/i18n/
H A Dstsearch.cpp221 void StringSearch::setOffset(int32_t position, UErrorCode &status) argument
224 usearch_setOffset(m_strsrch_, position, &status);
306 int32_t StringSearch::handleNext(int32_t position, UErrorCode &status) argument
308 // values passed here are already in the pre-shift position
326 if (position + m_strsrch_->pattern.defaultShiftSize
339 m_search_->matchedIndex = position - 1;
342 ucol_setOffset(m_strsrch_->textIter, position, &status);
404 int32_t StringSearch::handlePrev(int32_t position, UErrorCode &status) argument
406 // values passed here are already in the pre-shift position
428 position
[all...]
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DJavascriptTokenBuffer.java148 * @param position The index into the buffer
152 public char getChar(int position) { argument
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) { argument
176 assert(position < 0); // Developer error if it triggers.
178 int absolutePosition = getAbsolutePosition(position);
199 int position;
245 getAbsolutePosition(int position) argument
[all...]

Completed in 344 milliseconds

1234567891011>>