Searched defs:cursor (Results 1 - 25 of 439) sorted by last modified time

1234567891011>>

/external/vixl/src/a64/
H A Ddebugger-a64.cc986 const char* cursor = arg + 1; local
988 if (!StringToUInt64(&code, cursor)) {
1028 const char* cursor = arg + 1; local
1029 while ((*cursor != '\0') && isalnum(*cursor)) {
1030 ++cursor;
1033 if (*cursor == '\0') {
/external/valgrind/main/coregrind/m_debuginfo/
H A Dstorage.c1621 HChar** cursor = sym->sec_names; local
1625 *cursor = tmp[j];
1626 cursor++;
1628 vg_assert(*cursor == NULL);
/external/tinyxml/
H A Dtinyxmlparser.cpp168 const TiXmlCursor& Cursor() { return cursor; }
177 cursor.row = row;
178 cursor.col = col;
181 TiXmlCursor cursor; member in class:TiXmlParsingData
198 int row = cursor.row;
199 int col = cursor.col;
296 cursor.row = row;
297 cursor.col = col;
298 assert( cursor.row >= -1 );
299 assert( cursor
[all...]
/external/strace/
H A Dunwind.c281 get_symbol_name(unw_cursor_t *cursor, char **name, argument
285 int rc = unw_get_proc_name(cursor, *name, *size, offset);
305 unw_cursor_t *cursor,
313 if (unw_get_reg(cursor, UNW_REG_IP, &ip) < 0) {
329 get_symbol_name(cursor, symbol_name, symbol_name_size,
367 unw_cursor_t cursor; local
379 if (unw_init_remote(&cursor, libunwind_as, tcp->libunwind_ui) < 0)
384 &cursor, &symbol_name, &symbol_name_size) < 0)
386 if (unw_step(&cursor) <= 0)
301 print_stack_frame(struct tcb *tcp, call_action_fn call_action, error_action_fn error_action, void *data, unw_cursor_t *cursor, char **symbol_name, size_t *symbol_name_size) argument
/external/skia/tools/
H A DCrashHandler.cpp18 unw_cursor_t cursor; local
19 unw_init_local(&cursor, &context);
22 while (unw_step(&cursor) > 0) {
26 unw_get_proc_name(&cursor, mangled, kMax, &offset);
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dhttpcore-4.1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java71 private int cursor; field in class:AnnotatedBytes
91 * Moves the cursor to a new location
96 cursor = offset;
100 * Moves the cursor forward or backward by some amount
102 * @param offset The amount to move the cursor
105 cursor += offset;
109 annotate(offset - cursor, msg, formatArgs);
123 if (startLimit != -1 && endLimit != -1 && (cursor < startLimit || cursor >= endLimit)) {
133 int exclusiveEndOffset = cursor
[all...]
/external/sepolicy/tools/
H A Dcheck_seapp.c798 line_order_list *cursor, *tmp; local
801 cursor = list_head;
802 while (cursor) {
803 e = cursor->e;
805 tmp = cursor;
806 cursor = cursor->next;
991 line_order_list *cursor; local
992 cursor = list_head;
994 while (cursor) {
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxmlparser.cpp177 const TiXmlCursor& Cursor() const { return cursor; }
186 cursor.row = row;
187 cursor.col = col;
190 TiXmlCursor cursor; member in class:TiXmlParsingData
207 int row = cursor.row;
208 int col = cursor.col;
305 cursor.row = row;
306 cursor.col = col;
307 assert( cursor.row >= -1 );
308 assert( cursor
[all...]
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dhttpcore-4.0.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ...
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentResolver.java23 private TestCursor cursor; field in class:ShadowContentResolver
282 public void setCursor(TestCursor cursor) { argument
283 this.cursor = cursor;
337 } else if (cursor != null) {
338 return cursor;
H A DShadowCursorAdapter.java50 // if the cursor is null OR there are no views to dispense return null
119 * Constructor. The adapter will call requery() on the cursor whenever
122 * @param c The cursor from which to get the data.
132 * @param c The cursor from which to get the data.
135 * cursor whenever it changes so the most recent
158 * Returns the cursor.
160 * @return the cursor.
220 // throw new IllegalStateException("this should only be called when the cursor is valid");
223 // throw new IllegalStateException("couldn't move cursor to position " + position);
253 // * Makes a new view to hold the data pointed to by cursor
291 changeCursor(Cursor cursor) argument
326 convertToString(Cursor cursor) argument
[all...]
H A DShadowResourceCursorAdapter.java65 * @param c The cursor from which to get the data.
67 * cursor whenever it changes so the most recent
83 public View newView(Context context, Cursor cursor, ViewGroup parent) { argument
88 public View newDropDownView(Context context, Cursor cursor, ViewGroup parent) { argument
H A DShadowSimpleCursorAdapter.java35 * An easy adapter to map columns from a cursor to TextViews or ImageViews
88 * @param c The database cursor. Can be null if the cursor is not available yet.
90 * if the cursor is not available yet.
94 * parameter. Can be null if the cursor is not available yet.
105 * constructor with their corresponding cursor columns as specified in the
128 public void bindView(View view, Context context, Cursor cursor) { argument
139 bound = binder.setViewValue(v, cursor, from[i]);
143 String text = cursor.getString(from[i]);
201 * @param value the value retrieved from the cursor
309 convertToString(Cursor cursor) argument
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DAbstractCursorTest.java24 private TestCursor cursor; field in class:AbstractCursorTest
28 cursor = new TestCursor();
33 cursor.theTable.add("Foobar");
34 assertThat(cursor.moveToFirst(), equalTo(true));
35 assertThat(cursor.getCount(), equalTo(1));
40 assertThat(cursor.moveToFirst(), equalTo(false));
41 assertThat(cursor.getCount(), equalTo(0));
46 cursor.theTable.add("Foobar");
47 cursor.theTable.add("Bletch");
49 assertThat(cursor
[all...]
H A DCursorAdapterTest.java109 public void bindView(View view, Context context, Cursor cursor) { } argument
112 public View newView(Context context, Cursor cursor, ViewGroup parent) { argument
H A DDatabaseTestBase.java93 Cursor cursor = database.query("table_name", new String[]{"second_column", "first_column"}, null, null, null, null, null);
95 assertThat(cursor.moveToFirst(), equalTo(true));
97 byte[] byteValueFromDatabase = cursor.getBlob(0);
98 String stringValueFromDatabase = cursor.getString(1);
116 Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null);
118 assertThat(cursor.moveToFirst(), equalTo(true));
120 byte[] byteValueFromDatabase = cursor.getBlob(0);
121 String stringValueFromDatabase = cursor.getString(1);
142 Cursor cursor = database.rawQuery("select second_column, first_column from table_name", null);
143 assertThat(cursor
584 assertIdAndName(Cursor cursor, long id, String name) argument
[all...]
H A DSQLiteCursorTest.java27 private SQLiteCursor cursor; field in class:SQLiteCursorTest
49 String[] columnNames = cursor.getColumnNames();
57 String[] columnNames = cursor.getColumnNames();
66 assertThat(cursor.getColumnIndex("id"), equalTo(0));
67 assertThat(cursor.getColumnIndex("name"), equalTo(1));
72 assertThat(cursor.getColumnIndex("Fred"), equalTo(-1));
79 assertThat(cursor.getColumnIndex("id"), equalTo(0));
80 assertThat(cursor.getColumnIndex("name"), equalTo(1));
85 assertThat(cursor.getColumnIndexOrThrow("id"), equalTo(0));
86 assertThat(cursor
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/database/
H A DSimpleTestCursorTest.java21 private SimpleTestCursor cursor; field in class:SimpleTestCursorTest
29 cursor = new SimpleTestCursor();
30 shadowContentResolver.setCursor(uri, cursor);
34 cursor.setColumnNames(columnNames);
40 assertThat(cursor.uri, equalTo(uri));
41 assertThat(cursor.projection[0], equalTo("projection"));
42 assertThat(cursor.selection, equalTo("selection"));
43 assertThat(cursor.selectionArgs[0], equalTo("selection"));
44 assertThat(cursor.sortOrder, equalTo("sortOrder"));
49 cursor
[all...]

Completed in 346 milliseconds

1234567891011>>