HomeSort by relevance Sort by last modified time
    Searched refs:position (Results 301 - 325 of 3483) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationPosition.cpp 50 WebGeolocationPosition& WebGeolocationPosition::operator=(PassRefPtr<GeolocationPosition> position)
52 m_private = position;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.hlsl 39 float4 position : POSITION;
45 float4 position : SV_POSITION;
55 float3 view = mul((float3x4)modelview, input.position);
56 result.position = mul((float4x4)proj, float4(view, 1));
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.hlsl 34 float4 position : POSITION;
40 float4 position : SV_POSITION;
48 result.position = input.position;
  /external/chromium_org/ui/webui/resources/css/
bubble_button.css 17 position: relative;
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SimpleInsn.java 32 * @param position {@code non-null;} source position
37 public SimpleInsn(Dop opcode, SourcePosition position,
39 super(opcode, position, registers);
VariableSizeInsn.java 30 * @param position {@code non-null;} source position
33 public VariableSizeInsn(SourcePosition position,
35 super(Dops.SPECIAL_FORMAT, position, registers);
ZeroSizeInsn.java 33 * @param position {@code non-null;} source position
35 public ZeroSizeInsn(SourcePosition position) {
36 super(Dops.SPECIAL_FORMAT, position, RegisterSpecList.EMPTY);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
CstInsn.java 33 * @param position {@code non-null;} source position
38 public CstInsn(Rop opcode, SourcePosition position, RegisterSpec result,
40 super(opcode, position, result, sources);
  /external/icu4c/layout/
SubstitutionLookups.cpp 31 le_int32 position,
44 tempIterator.setCurrStreamPosition(position);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.hlsl 39 float4 position : POSITION;
45 float4 position : SV_POSITION;
55 float3 view = mul((float3x4)modelview, input.position);
56 result.position = mul((float4x4)proj, float4(view, 1));
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.hlsl 34 float4 position : POSITION;
40 float4 position : SV_POSITION;
48 result.position = input.position;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemDataBox.java 36 content.position(content.position() + content.remaining());
UnknownBox.java 43 content.position(content.position() + content.remaining());
  /external/replicaisland/src/com/replica/replicaisland/
EventRecorder.java 37 synchronized void setLastDeathPosition(Vector2 position) {
38 mLastDeathPosition.set(position);
  /frameworks/base/core/java/android/widget/
HeaderViewListAdapter.java 146 public boolean isEnabled(int position) {
149 if (position < numHeaders) {
150 return mHeaderViewInfos.get(position).isSelectable;
154 final int adjPosition = position - numHeaders;
167 public Object getItem(int position) {
170 if (position < numHeaders) {
171 return mHeaderViewInfos.get(position).data;
175 final int adjPosition = position - numHeaders;
188 public long getItemId(int position) {
190 if (mAdapter != null && position >= numHeaders)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfInternalSelectionViews.java 74 * @param position The position
75 * @return The label (closest thing to a value) for the item at position
77 public String getLabelForPosition(int position) {
78 return "position " + position;
156 public Object getItem(int position) {
157 return getLabelForPosition(position);
160 public long getItemId(int position) {
161 return position;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemFocusablesClose.java 50 protected View createView(int position, ViewGroup parent, int desiredHeight) {
52 position, parent.getContext(), desiredHeight);
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
StorageBrowser.java 64 public Object getItem(int position) {
65 return mStorageList.get(position);
68 public long getItemId(int position) {
69 return position;
72 public View getView(int position, View convertView, ViewGroup parent) {
81 MtpStorageInfo info = mStorageList.get(position);
114 protected void onListItemClick(ListView l, View v, int position, long id) {
117 intent.putExtra("storage", mStorageList.get(position).getStorageId());
  /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...]
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DropDownEditor.java 45 public View getDropDownView(int position, View convertView, ViewGroup parent) {
46 TextView v = (TextView) super.getDropDownView(position, convertView, parent);
49 v.setText(v.getResources().getString(getItem(position)));
54 public View getView(int position, View convertView, ViewGroup parent) {
55 TextView v = (TextView) super.getView(position, convertView, parent);
58 v.setText(v.getResources().getString(getItem(position)));
70 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
72 Object newValue = adapter.getItem(position);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/
FloatBufferTest.java 87 buf.position(buf.limit());
93 assertEquals(buf.position(), readonly.position());
99 // readonly's position, mark, and limit should be independent to buf
101 assertEquals(readonly.position(), 0);
103 assertEquals(buf.position(), buf.limit());
105 assertEquals(buf.position(), 0);
116 assertEquals(buf.position(), buf.capacity());
127 buf.position(0);
132 assertEquals(buf.position(), 0)
    [all...]
LongBufferTest.java 87 buf.position(buf.limit());
93 assertEquals(buf.position(), readonly.position());
99 // readonly's position, mark, and limit should be independent to buf
101 assertEquals(readonly.position(), 0);
103 assertEquals(buf.position(), buf.limit());
105 assertEquals(buf.position(), 0);
115 assertEquals(buf.position(), buf.capacity());
126 buf.position(0);
131 assertEquals(buf.position(), 0)
    [all...]
IntBufferTest.java 87 buf.position(buf.limit());
93 assertEquals(buf.position(), readonly.position());
99 // readonly's position, mark, and limit should be independent to buf
101 assertEquals(readonly.position(), 0);
103 assertEquals(buf.position(), buf.limit());
105 assertEquals(buf.position(), 0);
115 assertEquals(buf.position(), buf.capacity());
126 buf.position(0);
131 assertEquals(buf.position(), 0)
    [all...]
ShortBufferTest.java 86 buf.position(buf.limit());
92 assertEquals(buf.position(), readonly.position());
98 // readonly's position, mark, and limit should be independent to buf
100 assertEquals(readonly.position(), 0);
102 assertEquals(buf.position(), buf.limit());
104 assertEquals(buf.position(), 0);
114 assertEquals(buf.position(), buf.capacity());
125 buf.position(0);
130 assertEquals(buf.position(), 0)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileOutputStreamTest.java 274 assertEquals(0, f.getChannel().position());
281 assertEquals(0, fos.getChannel().position());
283 assertEquals(10, fos.getChannel().position());
285 assertEquals(20, fos.getChannel().position());
287 assertEquals(30, fos.getChannel().position());
291 fos.getChannel().position();
302 assertEquals(0, fos.getChannel().position());
304 assertEquals(10, fos.getChannel().position());
306 assertEquals(20, fos.getChannel().position());
308 assertEquals(30, fos.getChannel().position());
    [all...]

Completed in 798 milliseconds

<<11121314151617181920>>