/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
CompletionInfoTest.java | 31 private static final int POSITION = 1; 83 new CompletionInfo(ID, POSITION, TEXT); 84 CompletionInfo info = new CompletionInfo(ID, POSITION, TEXT, LABEL); 100 assertEquals(POSITION, info.getPosition());
|
/external/v8/test/cctest/ |
test-reloc-info.cc | 57 RelocInfo::STATEMENT_POSITION : RelocInfo::POSITION; 68 RelocIterator it(desc, RelocInfo::ModeMask(RelocInfo::POSITION)); 72 RelocInfo::STATEMENT_POSITION : RelocInfo::POSITION; 73 if (mode == RelocInfo::POSITION) { 89 RelocInfo::STATEMENT_POSITION : RelocInfo::POSITION; 106 RelocInfo::STATEMENT_POSITION : RelocInfo::POSITION;
|
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/ |
FileChannelTest.java | 272 * @tests java.nio.channels.FileChannel#position() 275 assertEquals(0, readOnlyFileChannel.position()); 276 assertEquals(0, writeOnlyFileChannel.position()); 277 assertEquals(0, readWriteFileChannel.position()); 281 * @tests java.nio.channels.FileChannel#position() 286 assertEquals(0, readOnlyFileChannel.position()); 289 assertEquals(CONTENT_LENGTH, readOnlyFileChannel.position()); 331 * @tests java.nio.channels.FileChannel#position() 336 assertEquals(CONTENT_LENGTH, writeOnlyFileChannel.position()); 340 * @tests java.nio.channels.FileChannel#position() 3045 public long position() throws IOException { method in class:FileChannelTest.MockFileChannel 3049 public FileChannel position(long arg0) throws IOException { method in class:FileChannelTest.MockFileChannel [all...] |
/packages/apps/Browser/src/com/android/browser/ |
BookmarksLoader.java | 47 Bookmarks.POSITION, // 7
|
/external/harfbuzz/src/ |
harfbuzz-buffer-private.h | 82 #define POSITION( pos ) (&buffer->positions[(pos)])
|
harfbuzz-gpos.c | 1039 sp->ValueFormat, POSITION( buffer->in_pos ) ); 1048 sp->ValueFormat, POSITION( buffer->in_pos ) ); 1523 POSITION( first_pos ) ) [all...] |
/external/expat/lib/ |
xmltok.h | 112 typedef struct position { struct 116 } POSITION; 156 POSITION *);
|
xmltok.c | 942 const char *end, POSITION *pos) [all...] |
xmltok_impl.c | [all...] |
xmlparse.c | 536 POSITION m_position; 605 #define position (parser->m_position) macro 848 memset(&position, 0, sizeof(POSITION)); [all...] |
/external/v8/src/ |
assembler.cc | 115 // position: [6 bits pc delta] 10, 250 int pos_type_tag = rmode == RelocInfo::POSITION ? kNonstatementPositionTag 350 return RelocInfo::POSITION; 467 case RelocInfo::POSITION: 468 return "position"; 470 return "statement position"; 552 case POSITION: 1056 // Write the statement position if it is different from what was written last 1066 // Write the position if it is different from what was written last time and 1067 // also different from the written statement position [all...] |
assembler.h | 91 // Returns the position of bound or linked labels. Cannot be used 97 // and the binding position (via its value) of a label. 99 // pos_ < 0 bound label, pos() returns the jump target position 101 // pos_ > 0 linked label, pos() returns the last reference position 150 void bind_to(int position) { 152 pos_ = position; 155 void link_to(int position) { 158 unresolved_positions_[unresolved_branches_++] = position; 186 // "position" (RelocMode position) and "statement position" (RelocMod [all...] |
/frameworks/base/services/input/tests/ |
InputReader_test.cpp | [all...] |
/frameworks/base/core/java/android/provider/ |
BrowserContract.java | 281 * The position of the bookmark in relation to it's siblings that share the same 285 public static final String POSITION = "position";
|
/packages/apps/Browser/src/com/android/browser/provider/ |
BrowserProvider2.java | 185 Bookmarks.IS_FOLDER + " DESC, position ASC, _id ASC"; 188 static final String DEFAULT_BOOKMARKS_SORT_ORDER_SYNC = "position ASC, _id ASC"; 264 map.put(Bookmarks.POSITION, Bookmarks.POSITION); 290 OTHER_BOOKMARKS_PROJECTION_MAP.put(Bookmarks.POSITION, 291 Long.toString(Long.MAX_VALUE) + " AS " + Bookmarks.POSITION); 399 Bookmarks.POSITION + " INTEGER NOT NULL," + 525 values.put(Bookmarks.POSITION, 0); 634 values.put(Bookmarks.POSITION, 0); 659 Bookmarks.POSITION + "," [all...] |
/packages/apps/Browser/src/com/android/browser/widget/ |
BookmarkThumbnailWidgetService.java | 64 BrowserContract.Bookmarks.POSITION, /* needed for order by */ 205 public long getItemId(int position) { 206 return position; 216 public RemoteViews getViewAt(int position) { 217 if (!mBookmarks.moveToPosition(position)) {
|
/external/v8/src/arm/ |
assembler-arm.cc | 526 // generated code. pos() is the position the label refers to. 529 // to be generated; pos() is the position of the last 533 // The link chain is terminated by a negative code position (must be aligned) 638 ASSERT(0 <= pos && pos <= pc_offset()); // must have a valid binding position [all...] |