Searched defs:position (Results 101 - 125 of 895) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalStart.java51 * @param position {@code non-null;} source position
55 public LocalStart(SourcePosition position, RegisterSpec local) { argument
56 super(position);
H A DTargetInsn.java35 * @param position {@code non-null;} source position
41 public TargetInsn(Dop opcode, SourcePosition position, argument
43 super(opcode, position, registers);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DPlainCstInsn.java34 * @param position {@code non-null;} source position
39 public PlainCstInsn(Rop opcode, SourcePosition position, argument
42 super(opcode, position, result, sources, cst);
H A DPlainInsn.java36 * @param position {@code non-null;} source position
40 public PlainInsn(Rop opcode, SourcePosition position, argument
42 super(opcode, position, result, sources);
62 * @param position {@code non-null;} source position
66 public PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
68 this(opcode, position, result, RegisterSpecList.make(source));
/external/doclava/src/com/google/doclava/
H A DSeeTagInfo.java25 SeeTagInfo(String name, String kind, String text, ContainerInfo base, SourcePositionInfo position) { argument
26 super(name, kind, text, position);
33 LinkReference.parse(text(), mBase, position(), (!"@see".equals(name()))
/external/e2fsprogs/debugfs/
H A Dncheck.c25 int position; member in struct:inode_walk_struct
38 iw->position++;
39 if (iw->position <= 2)
116 iw.position = 0;
/external/flac/libFLAC/
H A Dogg_helper.c94 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data) argument
109 if((seek_status = seek_callback((FLAC__StreamEncoder*)encoder, position, client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
178 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data) argument
190 if((seek_status = seek_callback((FLAC__StreamEncoder*)encoder, position, client_data)) != FLAC__STREAM_ENCODER_SEEK_STATUS_OK) {
/external/icu4c/i18n/
H A Dudateintervalformat.cpp71 UFieldPosition* position,
88 if (position != 0) {
89 fp.setField(position->field);
97 if (position != 0) {
98 position->beginIndex = fp.getBeginIndex();
99 position->endIndex = fp.getEndIndex();
66 udtitvfmt_format(const UDateIntervalFormat* formatter, UDate fromDate, UDate toDate, UChar* result, int32_t resultCapacity, UFieldPosition* position, UErrorCode* status) argument
/external/icu4c/layout/
H A DLEInsertionList.cpp18 le_int32 position; member in struct:InsertionRecord
54 LEGlyphID *LEInsertionList::insert(le_int32 position, le_int32 count, LEErrorCode &success) argument
66 insertion->position = position;
88 if (callback->applyInsertion(rec->position, rec->count, rec->glyphs)) {
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DPointLight.java45 * A point light emits light from a given position into all directions in space.
48 * In addition to a position, point lights also have a radius which
55 protected Vector3f position = new Vector3f(); field in class:PointLight
63 lastDistance = bv.distanceSquaredTo(position);
65 lastDistance = owner.getWorldTranslation().distanceSquared(position);
70 * Returns the world space position of the light.
72 * @return the world space position of the light.
77 return position;
81 * Set the world space position of the light.
83 * @param position th
85 setPosition(Vector3f position) argument
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DDrawableObject.java57 public boolean visibleAtPosition(Vector2 position) { argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAbsListView.java20 public void smoothScrollToPosition(int position) { argument
21 smoothScrolledPosition = position;
42 * @return int position
H A DShadowViewPager.java39 public void setCurrentItem(int position) { argument
41 onPageChangeListener.onPageSelected(position);
43 currentItem = position;
47 public void setCurrentItem(int position, boolean smoothScroll){ argument
48 setCurrentItem( position );
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DExpandableListViewTest.java51 public boolean onChildClick(ExpandableListView expandableListView, View view, int i, int position, long l) { argument
53 transcript.add("item was clicked: " + position);
H A DViewPagerTest.java65 public void onPageSelected(int position) { argument
/external/smack/src/org/jivesoftware/smackx/workgroup/
H A DQueueUser.java41 * @param position the position customer sits in the queue
45 public QueueUser (String uid, int position, int time, Date joinedAt) { argument
49 this.queuePosition = position;
62 * @return the position in the queue at which the customer sits, or -1 if the update which
71 * if the update which this instance embodies is only a position update instead
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DQueueUpdate.java28 * status notifications -- position updates, and estimated time
43 private int position; field in class:QueueUpdate
46 public QueueUpdate(int position, int remainingTime) { argument
47 this.position = position;
52 * Returns the user's position in the workgroup queue, or -1 if the
55 * @return the position in the workgroup queue.
58 return this.position;
74 if (position != -1) {
75 buf.append("<position>")
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisIterator.java55 * @return The position of the current node in the set, as defined by XPath.
94 * from its current position.
104 * Return the node at the given position.
106 * @param position The position
107 * @return The node at the given position.
109 public int getNodeByPosition(int position); argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMAxisIteratorBase.java32 /** The position of the last node within the iteration, as defined by XPath.
34 * confuse it with the current (most recently returned) position.
38 /** The position of the current node within the iteration, as defined by XPath.
43 /** The position of the marked node within the iteration;
111 /** Returns the position of the last node within the iteration, as
128 // -- and explicitly saving our position counter (number of nodes
131 // %REVIEW% Should position also be saved by setMark()?
152 * @return The position of the current node within the set, as defined by
219 * Reset the position to zero. NOTE that this does not change the iteration
220 * state, only the position numbe
266 getNodeByPosition(int position) argument
[all...]
/external/bison/examples/calc++/
H A Dposition.hh34 ** \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/
H A Dblock_jacobi_preconditioner.cc81 ConstMatrixRef m(values + cells[c].position,
105 const int position = block_structure_.cols[c].position; local
110 ConstVectorRef(D + position, size).array().square().matrix();
124 const int position = block_structure_.cols[c].position; local
126 ConstVectorRef x_block(x + position, size);
127 VectorRef y_block(y + position, size);
H A Dblock_structure.h53 Block() : size(-1), position(-1) {}
54 Block(int size_, int position_) : size(size_), position(position_) {}
57 int position; // Position along the row/column. member in struct:ceres::internal::Block
61 Cell() : block_id(-1), position(-1) {}
63 : block_id(block_id_), position(position_) {}
68 int position; member in struct:ceres::internal::Cell
/external/chromium/net/base/
H A Dupload_data_stream.h50 // Returns the total size of the data stream and the current position.
55 uint64 position() const { return current_position_; } function in class:net::UploadDataStream
60 // position < size.
113 // Size and current read position within the stream.
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Djavascriptlintrules.py37 from closure_linter.common import position namespace
41 Position = position.Position
335 token, position=Position.AtBeginning())
377 token, position=Position.AtBeginning())
439 token, position=Position.AtBeginning(),
459 token, position=Position.AtBeginning(),
519 position=Position.AtBeginning(),
530 position=Position.AtBeginning(),
/external/chromium_org/ash/display/
H A Dscreen_position_controller_unittest.cc36 void SetSecondaryDisplayLayout(DisplayLayout::Position position) { argument
40 layout.position = position;
192 // On secondary display. The position on the 2nd host window is (150,50)
193 // so the screen position is (100,0) + (150,50).

Completed in 971 milliseconds

1234567891011>>