/external/clang/www/analyzer/ |
menu.css | 27 list-style-position: inside; 30 position: relative; 37 position: absolute;
|
/external/eigen/demos/opengl/ |
camera.h | 24 : orientation(o), position(pos) 28 return Frame((1.f-alpha)*position + alpha * other.position, 33 Eigen::Vector3f position; member in class:Frame 61 inline const Eigen::Vector3f& position(void) const { return mFrame.position; } function in class:Camera
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/ |
d3d11spikysphere.hlsl | 43 float3 position : POSITION;
48 float3 position : POSITION;
54 result.position = input.position;
66 float3 position : POSITION;
86 result.position = p[i].position;
[all...] |
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
ListWithFooterViewAndNewLabels.java | 85 public Object getItem(int position) { 86 return mLabels.get(position); 89 public long getItemId(int position) { 90 return position; 93 public View getView(int position, View convertView, ViewGroup parent) { 94 String label = mLabels.get(position);
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
PhotoViewPager.java | 81 public void transformPage(View page, float position) { 91 if (position < 0 || position >= 1.f) { 97 page.setTranslationX(-position * page.getWidth()); 98 page.setAlpha(Math.max(0,1.f - position)); 99 final float scale = Math.max(0, 1.f - position * 0.3f);
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
LegacyContactListAdapter.java | 65 public String getContactDisplayName(int position) { 66 return ((Cursor)getItem(position)).getString(PERSON_DISPLAY_NAME_COLUMN_INDEX); 69 public Uri getPersonUri(int position) { 70 Cursor cursor = ((Cursor)getItem(position)); 76 protected View newView(Context context, int partition, Cursor cursor, int position, 84 protected void bindView(View itemView, int partition, Cursor cursor, int position) {
|
LegacyPhoneNumberListAdapter.java | 69 public String getContactDisplayName(int position) { 70 return ((Cursor)getItem(position)).getString(PHONE_DISPLAY_NAME_COLUMN_INDEX); 73 public Uri getPhoneUri(int position) { 74 Cursor cursor = ((Cursor)getItem(position)); 80 protected View newView(Context context, int partition, Cursor cursor, int position, 88 protected void bindView(View itemView, int partition, Cursor cursor, int position) {
|
LegacyPostalAddressListAdapter.java | 70 public String getContactDisplayName(int position) { 71 return ((Cursor)getItem(position)).getString(POSTAL_DISPLAY_NAME_COLUMN_INDEX); 74 public Uri getContactMethodUri(int position) { 75 Cursor cursor = ((Cursor)getItem(position)); 81 protected View newView(Context context, int partition, Cursor cursor, int position, 89 protected void bindView(View itemView, int partition, Cursor cursor, int position) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/ |
MtpPagerAdapter.java | 63 public int translatePositionWithLabels(int position) { 65 return mModel.getPositionWithoutLabelsFromPosition(position, mSortOrder); 80 public void destroyItem(ViewGroup container, int position, Object object) { 88 public Object instantiateItem(ViewGroup container, int position) { 96 MtpObjectInfo i = mModel.getWithoutLabels(position, mSortOrder); 98 v.setPositionAndBroker(position, mBroker);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
AnimatedAdapter.java | 399 public int getItemViewType(int position) { 401 if (mShowFooter && position == getCount() - 1) { 408 // types. In a future release, use position/id map to try to make 411 } else if (mSpecialViews.get(position) != null) { 421 * {@link Conversation#position} set to the position of these conversations 438 * {@link Conversation#position} set to the position of these conversations 462 if (c.position >= startPosition && c.position <= endPosition) 1013 int position = (specialView.getPosition()); local [all...] |
/external/chromium_org/v8/test/cctest/ |
test-mark-compact.cc | 472 static uintptr_t ReadLong(char* buffer, intptr_t* position, int base) { 473 char* end_address = buffer + *position; 474 uintptr_t result = strtoul(buffer + *position, &end_address, base); 476 CHECK(end_address > buffer + *position); 477 *position = end_address - buffer; 503 intptr_t position = line_start; local 504 uintptr_t start = ReadLong(buffer, &position, 16); 505 CHECK_EQ(buffer[position++], '-'); 506 uintptr_t end = ReadLong(buffer, &position, 16); 507 CHECK_EQ(buffer[position++], ' ') [all...] |
/external/v8/test/cctest/ |
test-mark-compact.cc | 463 static uintptr_t ReadLong(char* buffer, intptr_t* position, int base) { 464 char* end_address = buffer + *position; 465 uintptr_t result = strtoul(buffer + *position, &end_address, base); 467 CHECK(end_address > buffer + *position); 468 *position = end_address - buffer; 490 intptr_t position = line_start; local 491 uintptr_t start = ReadLong(buffer, &position, 16); 492 CHECK_EQ(buffer[position++], '-'); 493 uintptr_t end = ReadLong(buffer, &position, 16); 494 CHECK_EQ(buffer[position++], ' ') [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
ApplyBlockElementCommand.cpp | 107 Position start = startOfSelection.deepEquivalent().downstream(); 123 Position end; 131 Position afterEnd = end.next(); 143 // is in a list item or a table. As a result, endAfterSelection could refer to a position 157 static bool isNewLineAtPosition(const Position& position) 159 Node* textNode = position.containerNode(); 160 int offset = position.offsetInContainerNode(); 172 static RenderStyle* renderStyleOfEnclosingTextNode(const Position& position) 244 Position position = endOfNextParagraph.deepEquivalent(); local [all...] |
/external/chromium_org/cc/base/ |
scoped_ptr_vector.h | 73 scoped_ptr<T> take(iterator position) { 74 if (position == end()) 76 DCHECK(position < end()); 78 typename std::vector<T*>::iterator writable_position = position; 91 void erase(iterator position) { 92 if (position == end()) 94 typename std::vector<T*>::iterator writable_position = position; 96 data_.erase(position); 127 void insert(iterator position, scoped_ptr<T> item) { 128 DCHECK(position <= end()) [all...] |
/external/chromium_org/content/browser/geolocation/ |
geolocation_provider_impl.cc | 21 const Geoposition& position, 25 GeolocationProviderImpl::GetInstance()->OverrideLocationForTesting(position); 35 const Geoposition& position, 38 position, 99 void GeolocationProviderImpl::OnLocationUpdate(const Geoposition& position) { 107 base::Unretained(this), position)); 111 const Geoposition& position) { 113 position_ = position; 115 NotifyClients(position); 148 // when the next observer is added we will not provide a stale position [all...] |
/frameworks/native/services/surfaceflinger/RenderEngine/ |
RenderEngine.cpp | 162 Mesh::VertexArray<vec2> position(mesh.getPositionArray<vec2>()); 164 position[i*6 + 0].x = r->left; 165 position[i*6 + 0].y = height - r->top; 166 position[i*6 + 1].x = r->left; 167 position[i*6 + 1].y = height - r->bottom; 168 position[i*6 + 2].x = r->right; 169 position[i*6 + 2].y = height - r->bottom; 170 position[i*6 + 3].x = r->left; 171 position[i*6 + 3].y = height - r->top; 172 position[i*6 + 4].x = r->right [all...] |
/art/test/070-nio-buffer/src/ |
Main.java | 53 shortBuf.position(0); 55 shortBuf.position(0); 67 shortBuf.position(0); 75 shortBuf.position(16); 98 int1.position (0); 102 int1.position (0); 122 directBuf.position(0); 160 directBuf.position(0);
|
/cts/tests/tests/holo/src/android/holo/cts/ |
LayoutPickerActivity.java | 45 protected void onListItemClick(ListView l, View v, int position, long id) { 48 intent.putExtra(ThemeTestActivity.EXTRA_LAYOUT_INDEX, position);
|
ThemePickerActivity.java | 42 protected void onListItemClick(ListView l, View v, int position, long id) { 44 intent.putExtra(LayoutPickerActivity.EXTRA_THEME_INDEX, position);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
FixedSizeInsn.java | 39 * @param position {@code non-null;} source position 44 public FixedSizeInsn(Dop opcode, SourcePosition position, 46 super(opcode, position, registers);
|
LocalEnd.java | 43 * @param position {@code non-null;} source position 47 public LocalEnd(SourcePosition position, RegisterSpec local) { 48 super(position);
|
LocalStart.java | 51 * @param position {@code non-null;} source position 55 public LocalStart(SourcePosition position, RegisterSpec local) { 56 super(position);
|
OddSpacer.java | 34 * @param position {@code non-null;} source position 36 public OddSpacer(SourcePosition position) { 37 super(position, RegisterSpecList.EMPTY);
|
/dalvik/dx/src/com/android/dx/dex/code/ |
FixedSizeInsn.java | 40 * @param position {@code non-null;} source position 45 public FixedSizeInsn(Dop opcode, SourcePosition position, 47 super(opcode, position, registers);
|
LocalEnd.java | 43 * @param position {@code non-null;} source position 47 public LocalEnd(SourcePosition position, RegisterSpec local) { 48 super(position);
|