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

1234567891011>>

/external/mesa3d/src/gallium/tests/graw/
H A Dtri.c15 float position[4]; member in struct:vertex
47 ve[0].src_offset = Offset(struct vertex, position);
/external/mockito/src/org/mockito/internal/invocation/
H A DInvocationMatcher.java121 for (int position = 0; position < matchers.size(); position++) {
122 Matcher m = matchers.get(position);
123 if (m instanceof CapturesArguments && invocation.getArguments().length > position) {
124 if(isVariableArgument(invocation, position) && isVarargMatcher(m)) {
125 ((CapturesArguments) m).captureFrom(invocation.getRawArguments()[position]);
127 ((CapturesArguments) m).captureFrom(invocation.getArguments()[position]);
141 private boolean isVariableArgument(Invocation invocation, int position) { argument
142 return invocation.getRawArguments().length - 1 == position
[all...]
/external/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
H A DDistinguishedNameParser.java143 beg = pos; // store '#' position
307 // specified 'position' and the next char
311 private int getByte(int position) { argument
312 if (position + 1 >= length) {
318 b1 = chars[position];
329 b2 = chars[position + 1];
/external/qemu/distrib/sdl-1.2.15/src/cdrom/dc/
H A DSDL_syscdrom.c38 static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position);
98 static CDstatus SDL_SYS_CDStatus(SDL_CD *cdrom, int *position) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DCollisionVolume.java25 * some origin); when used with game objects the position of the parent object must be passed to
55 public abstract boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
H A DEventRecorder.java37 synchronized void setLastDeathPosition(Vector2 position) { argument
38 mLastDeathPosition.set(position);
H A DMotionBlurComponent.java31 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);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowItemizedOverlay.java39 public final Item getItem(int position) { argument
40 return items.get(position);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DAbsSpinnerTest.java123 @Override public View getView(int position, View convertView, ViewGroup parent) { argument
125 textView.setText(getItem(position));
/external/skia/gm/
H A Drects.cpp247 // position the current test on the canvas
248 static void position(SkCanvas* canvas, int testCount) { function in class:skiagm::RectsGM
265 this->position(canvas, testCount);
280 this->position(canvas, testCount);
/external/smack/src/org/xbill/DNS/
H A DRRset.java27 private short position; field in class:RRset
34 position = 0;
50 position = rrset.position;
108 position = 0;
129 if (position >= size)
130 position = 0;
131 start = position++;
/external/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/webrtc/src/common_audio/vad/
H A Dvad_sp.c63 int position = -1; local
96 // |low_value_vector|. If so, find the |position| where to insert the new
102 position = 0;
104 position = 1;
107 position = 2;
109 position = 3;
113 position = 4;
115 position = 5;
118 position = 6;
120 position
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java105 * the record, both 0-based (though position 0 is reserved for special
107 * @param position int Record number
110 int readEntry(int position, int offset) throws ArrayIndexOutOfBoundsException argument
115 return fastArray[(position*slotsize)+offset];
123 position*=slotsize;
124 int chunkpos = position >> lowbits;
125 int slotpos = position & lowmask;
131 // Check that the node at index "position" is not an ancestor
133 // RETURN -1. If position is NOT an ancestor, return position
137 specialFind(int startPos, int position) argument
192 writeEntry(int position, int offset, int value) argument
221 writeSlot(int position, int w0, int w1, int w2, int w3) argument
245 readSlot(int position, int[] buffer) argument
[all...]
/external/chromium/base/memory/
H A Dscoped_vector.h61 iterator insert(iterator position, T* x) { argument
62 return v.insert(position, x);
67 void insert(iterator position, InputIterator first, InputIterator last) { argument
68 v.insert(position, first, last);
71 iterator erase(iterator position) { argument
72 delete *position;
73 return v.erase(position);
81 // Like |erase()|, but doesn't delete the element at |position|.
82 iterator weak_erase(iterator position) { argument
83 return v.erase(position);
[all...]
/external/chromium/chrome/browser/renderer_host/
H A Ddownload_throttling_resource_handler.cc55 uint64 position,
59 return download_handler_->OnUploadProgress(request_id, position, size);
54 OnUploadProgress(int request_id, uint64 position, uint64 size) argument
H A Doffline_resource_handler.cc43 uint64 position,
45 return next_handler_->OnUploadProgress(request_id, position, size);
42 OnUploadProgress(int request_id, uint64 position, uint64 size) argument
/external/chromium/chrome/browser/ui/webui/
H A Dnew_tab_page_sync_handler.cc65 size_t position = local
67 if (0 == position)
/external/chromium/chrome/common/extensions/
H A Dextension_localization_peer.cc44 uint64 position, uint64 size) {
43 OnUploadProgress( uint64 position, uint64 size) argument
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dindentation.py26 from closure_linter.common import position namespace
37 Position = position.Position
324 Hard stops are indentations defined by the position of another token as in
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwAutofillManagerDelegate.java91 int position);
90 nativeSuggestionSelected(long nativeAwAutofillManagerDelegate, int position) argument
/external/chromium_org/ash/display/
H A Ddisplay_layout.cc24 const char kPositionKey[] = "position";
40 bool GetPositionFromString(const base::StringPiece& position, argument
42 if (ReverseFind(GetPositionToStringMap(), position, field))
44 LOG(ERROR) << "Invalid position value:" << position;
48 std::string GetStringFromPosition(DisplayLayout::Position position) { argument
50 PositionToStringMap::const_iterator iter = map->find(position);
54 bool GetDisplayIdFromString(const base::StringPiece& position, int64* field) { argument
55 return base::StringToInt64(position, field);
64 DisplayLayout DisplayLayout::FromInts(int position, in argument
75 DisplayLayout(DisplayLayout::Position position, int offset) argument
[all...]
H A Dmouse_cursor_event_filter.cc62 DisplayLayout::Position position = Shell::GetInstance()-> local
63 display_manager()->GetCurrentDisplayLayout().position;
64 if (position == DisplayLayout::TOP || position == DisplayLayout::BOTTOM)
180 DisplayLayout::Position position = Shell::GetInstance()-> local
181 display_manager()->GetCurrentDisplayLayout().position;
190 position == DisplayLayout::TOP ?
197 position == DisplayLayout::TOP ?
209 DisplayLayout::Position position = Shell::GetInstance()-> local
210 display_manager()->GetCurrentDisplayLayout().position;
[all...]
/external/chromium_org/ash/drag_drop/
H A Ddrag_image_view.cc63 void DragImageView::SetScreenPosition(const gfx::Point& position) { argument
64 widget_->SetBounds(gfx::Rect(position, widget_size_));
94 const gfx::Point& position) {
95 if (touch_drag_operation_indicator_position_ == position)
97 touch_drag_operation_indicator_position_ = position;
93 SetTouchDragOperationHintPosition( const gfx::Point& position) argument
/external/chromium_org/ash/wm/
H A Dtoplevel_window_event_handler_unittest.cc117 gfx::Point position = w1->bounds().origin(); local
120 EXPECT_EQ(position, w1->bounds().origin());
131 gfx::Point position = w1->bounds().origin(); local
136 EXPECT_EQ(position, w1->bounds().origin());
143 EXPECT_EQ(position, w1->bounds().origin());
149 EXPECT_EQ(position, w1->bounds().origin());
155 gfx::Point position = w1->bounds().origin(); local
158 EXPECT_EQ(position, w1->bounds().origin());
165 gfx::Point position = w1->bounds().origin(); local
168 EXPECT_EQ(position, w
244 gfx::Point position = w1->bounds().origin(); local
299 gfx::Point position = w1->bounds().origin(); local
312 gfx::Point position = target->bounds().origin(); local
326 gfx::Point position = target->bounds().origin(); local
341 gfx::Point position = target->bounds().origin(); local
[all...]

Completed in 713 milliseconds

1234567891011>>