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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserIdioms.cpp144 static bool parseHTMLIntegerInternal(const CharacterType* position, const CharacterType* end, int& value) argument
150 while (position < end) {
151 if (!isHTMLSpace<CharacterType>(*position))
153 ++position;
157 if (position == end)
159 ASSERT(position < end);
162 if (*position == '-') {
164 ++position;
165 } else if (*position == '+')
166 ++position;
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DValidatorContext.java14 return left.position - right.position;
50 public final int position; field in class:ValidatorContext.MessageRecord
53 public MessageRecord(int position, String text) { argument
54 this.position = position;
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriterSync.cpp53 writer()->write(position(), data->uuid());
59 setPosition(position() + data->size());
60 if (position() > length())
61 setLength(position());
64 void FileWriterSync::seek(long long position, ExceptionState& exceptionState) argument
68 seekInternal(position);
86 if (offset < position())
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBoundaries.cpp62 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward) argument
67 position = it->following(position);
68 while (position != TextBreakDone) {
71 if (position < len && isAlphanumeric(chars[position - 1]))
72 return position;
74 position = it->following(position);
79 position
93 findWordBoundary(const UChar* chars, int len, int position, int* start, int* end) argument
[all...]
/external/chromium_org/third_party/WebKit/public/web/
H A DWebTouchPoint.h63 WebPoint position; member in class:blink::WebTouchPoint
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DArrayData.java54 * @param position {@code non-null;} source position
59 public ArrayData(SourcePosition position, CodeAddress user, argument
62 super(position, RegisterSpecList.EMPTY);
H A DHighRegisterPrefix.java40 * @param position {@code non-null;} source position
43 public HighRegisterPrefix(SourcePosition position, argument
45 super(position, registers);
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

Completed in 518 milliseconds

1234567891011>>