Searched refs:cursor (Results 151 - 175 of 1010) sorted by relevance

1234567891011>>

/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp78 addr_t cursor; local
84 cursor = info_addr = ResolveRendezvousAddress(m_process);
86 cursor = info_addr = m_rendezvous_addr;
88 if (cursor == LLDB_INVALID_ADDRESS)
91 if (!(cursor = ReadMemory(cursor, &info.version, word_size)))
94 if (!(cursor = ReadMemory(cursor + padding, &info.map_addr, address_size)))
97 if (!(cursor = ReadMemory(cursor,
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DHttpAuthDatabase.java207 Cursor cursor = null;
209 cursor = mDatabase.query(HTTPAUTH_TABLE_NAME, columns, selection,
211 if (cursor.moveToFirst()) {
213 cursor.getString(cursor.getColumnIndex(HTTPAUTH_USERNAME_COL)),
214 cursor.getString(cursor.getColumnIndex(HTTPAUTH_PASSWORD_COL)),
220 if (cursor != null) cursor.close();
235 Cursor cursor
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A Dgas-token.re39 #define YYCURSOR cursor
42 #define YYFILL(n) {cursor = fill(parser_gas, cursor);}
44 #define RETURN(i) do {s->cur = cursor; parser_gas->tokch = s->tok[0]; \
47 #define SCANINIT() {s->tok = cursor;}
50 #define TOKLEN (size_t)(cursor-s->tok)
96 fill(yasm_parser_gas *parser_gas, YYCTYPE *cursor)
106 cursor -= cnt;
116 cursor = &buf[cursor
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemmouse.c46 void GEM_FreeWMCursor(_THIS, WMcursor *cursor) argument
49 printf("sdl:video:gem: free cursor\n");
52 if (cursor == NULL)
57 if (cursor->mform_p != NULL)
58 SDL_free(cursor->mform_p);
60 SDL_free(cursor);
66 WMcursor *cursor; local
73 printf("sdl:video:gem: create cursor\n");
83 /* Allocate the cursor memory */
84 cursor
141 GEM_ShowWMCursor(_THIS, WMcursor *cursor) argument
[all...]
/external/chromium_org/components/policy/core/common/
H A Dpreg_parser_win.cc52 // Returns the character at |cursor| and increments it, unless the end is here
54 int NextChar(const uint8** cursor, const uint8* end) { argument
56 if (*cursor + sizeof(base::char16) > end)
59 int result = **cursor | (*(*cursor + 1) << 8);
60 *cursor += sizeof(base::char16);
65 bool ReadFieldBinary(const uint8** cursor, argument
72 const uint8* field_end = *cursor + size;
73 if (field_end <= *cursor || field_end > end)
75 std::copy(*cursor, field_en
80 ReadField32(const uint8** cursor, const uint8* end, uint32* data) argument
91 ReadFieldString(const uint8** cursor, const uint8* end, base::string16* str) argument
247 const uint8* cursor = mapped_file.data() + kHeaderSize; local
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dname2uni.cpp131 int32_t cursor = offsets.start; local
141 while (cursor < limit) {
142 c = text.char32At(cursor);
147 openPos = cursor;
149 ICU_Utility::parsePattern(openPat, text, cursor, limit);
153 cursor = i;
154 continue; // *** reprocess char32At(cursor)
199 cursor++; // advance over CLOSE_DELIM
203 text.handleReplaceBetween(openPos, cursor, str);
208 int32_t delta = cursor
[all...]
/external/icu/icu4c/source/i18n/
H A Dname2uni.cpp131 int32_t cursor = offsets.start; local
141 while (cursor < limit) {
142 c = text.char32At(cursor);
147 openPos = cursor;
149 ICU_Utility::parsePattern(openPat, text, cursor, limit);
153 cursor = i;
154 continue; // *** reprocess char32At(cursor)
199 cursor++; // advance over CLOSE_DELIM
203 text.handleReplaceBetween(openPos, cursor, str);
208 int32_t delta = cursor
[all...]
/external/libunwind/src/arm/
H A DGresume.c37 arm_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
40 struct cursor *c = (struct cursor *) cursor;
113 establish_machine_state (struct cursor *c)
121 Debug (8, "copying out cursor state\n");
140 unw_resume (unw_cursor_t *cursor) argument
142 struct cursor *c = (struct cursor *) cursor;
[all...]
/external/libunwind/src/hppa/
H A DGresume.c54 hppa_local_resume (unw_addr_space_t as, unw_cursor_t *cursor, void *arg) argument
57 struct cursor *c = (struct cursor *) cursor;
87 cursor C and establishing them as the current machine state. */
90 establish_machine_state (struct cursor *c)
105 Debug (8, "copying out cursor state\n");
125 unw_resume (unw_cursor_t *cursor) argument
127 struct cursor *c = (struct cursor *) curso
[all...]
H A DGstep.c30 unw_step (unw_cursor_t *cursor) argument
32 struct cursor *c = (struct cursor *) cursor;
35 Debug (1, "(cursor=%p, ip=0x%08x)\n", c, (unsigned) c->dwarf.ip);
53 if (unw_is_signal_frame (cursor))
/external/apache-http/src/org/apache/http/impl/cookie/
H A DNetscapeDraftHeaderParser.java66 final ParserCursor cursor) throws ParseException {
70 if (cursor == null) {
71 throw new IllegalArgumentException("Parser cursor may not be null");
73 NameValuePair nvp = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
75 while (!cursor.atEnd()) {
76 NameValuePair param = this.nvpParser.parseNameValuePair(buffer, cursor, DELIMITERS);
64 parseHeader( final CharArrayBuffer buffer, final ParserCursor cursor) argument
/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
H A Dcursor_unittest.cc15 #include "webrtc/modules/desktop_capture/win/cursor.h"
26 // |right| must be a 32bpp cursor with alpha channel.
31 win::ScopedCursor cursor(reinterpret_cast<HCURSOR>(
33 EXPECT_TRUE(cursor != NULL);
35 // Convert |cursor| to |mouse_shape|.
38 CreateMouseCursorFromHCursor(dc, cursor));
44 cursor.Set(reinterpret_cast<HCURSOR>(
48 EXPECT_TRUE(GetIconInfo(cursor, &iinfo));
/external/clang/bindings/python/examples/cindex/
H A Dcindex-dump.py24 def get_cursor_id(cursor, cursor_list = []):
28 if cursor is None:
34 if cursor == c:
36 cursor_list.append(cursor)
66 help="Compute cursor IDs (very slow)",
69 help="Limit cursor expansion to depth N",
83 pprint(('nodes', get_info(tu.cursor)))
/external/clang/bindings/python/tests/cindex/
H A Dtest_tokens.py21 cursor = tokens[1].cursor
22 assert cursor.kind == CursorKind.VAR_DECL
23 assert tokens[1].cursor == tokens[2].cursor
/external/libunwind/src/x86/
H A DGresume.c32 cursor C and establishing them as the current machine state. */
35 establish_machine_state (struct cursor *c)
50 Debug (8, "copying out cursor state\n");
70 unw_resume (unw_cursor_t *cursor) argument
72 struct cursor *c = (struct cursor *) cursor;
75 Debug (1, "(cursor=%p)\n", c);
H A Dunwind_i.h57 extern int x86_local_resume (unw_addr_space_t as, unw_cursor_t *cursor,
59 extern dwarf_loc_t x86_scratch_loc (struct cursor *c, unw_regnum_t reg);
60 extern dwarf_loc_t x86_get_scratch_loc (struct cursor *c, unw_regnum_t reg);
/external/libunwind/tests/
H A DGtest-init.cxx53 unw_cursor_t cursor; local
58 unw_init_local (&cursor, &uc);
62 unw_get_reg (&cursor, UNW_REG_IP, &ip);
65 if (unw_get_proc_name (&cursor, name, sizeof (name), &offset) == 0
73 while ((ret = unw_step (&cursor)) > 0);
H A Dia64-test-sig.c41 unw_cursor_t cursor, cursor2; local
49 if (unw_init_local (&cursor, &uc) < 0)
52 /* get cursor for caller of sighandler: */
53 if (unw_step (&cursor) < 0)
56 cursor2 = cursor;
75 unw_resume (&cursor); /* update context & return to caller of sighandler() */
/external/libcxxabi/src/Unwind/
H A DUnwindLevel1-gcc-ext.c85 // We create an unwind cursor then alter the IP to be pc
86 unw_cursor_t cursor; local
90 unw_init_local(&cursor, &uc);
91 unw_set_reg(&cursor, UNW_REG_IP, (unw_word_t)(long) pc);
92 if (unw_get_proc_info(&cursor, &info) == UNW_ESUCCESS)
103 unw_cursor_t cursor; local
106 unw_init_local(&cursor, &uc);
116 if (unw_step(&cursor) <= 0) {
117 _LIBUNWIND_TRACE_UNWINDING(" _backtrace: ended because cursor reached "
126 if (unw_get_proc_info(&cursor,
175 unw_cursor_t cursor; local
193 unw_cursor_t *cursor = (unw_cursor_t *)context; local
[all...]
/external/chromium_org/content/test/data/indexeddb/
H A Dcursor_test.js7 debug('Empty cursor opened successfully.');
13 debug('Opening an empty cursor.');
22 var cursor = event.target.result;
23 if (cursor === null) {
34 cursor.continue();
39 debug('Opening cursor');
H A Dindex_test.js7 var cursor = event.target.result;
8 if (cursor === null) {
9 debug('Reached end of object cursor.');
11 fail('Did not get object through cursor.');
18 debug('Got object through cursor.');
23 cursor.continue();
28 var cursor = event.target.result;
29 if (cursor === null) {
30 debug('Reached end of key cursor.');
32 fail('Did not get key through cursor
[all...]
/external/chromium_org/ui/wm/core/
H A Dcursor_manager.cc16 // Represents the cursor state which is composed of cursor type, visibility, and
17 // mouse events enable state. When mouse events are disabled, the cursor is
29 gfx::NativeCursor cursor() const { return cursor_; } function in class:wm::internal::CursorState
30 void set_cursor(gfx::NativeCursor cursor) { cursor_ = cursor; } argument
83 void CursorManager::SetCursor(gfx::NativeCursor cursor) { argument
84 state_on_unlock_->set_cursor(cursor);
86 GetCursor() != state_on_unlock_->cursor()) {
87 delegate_->SetCursor(state_on_unlock_->cursor(), thi
197 CommitCursor(gfx::NativeCursor cursor) argument
[all...]
/external/libunwind/include/tdep-ia64/
H A Dscript.h82 struct cursor; /* forward declaration */
84 extern int ia64_cache_proc_info (struct cursor *c);
85 extern int ia64_get_cached_proc_info (struct cursor *c);
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/bootstrap/
H A Dscanner.c18 #define YYCURSOR cursor
21 #define YYFILL(n) {cursor = fill(s, cursor);}
23 #define RETURN(i) {s->cur = cursor; return i;}
38 fill(Scanner *s, unsigned char *cursor) argument
46 cursor -= cnt;
55 cursor = &buf[cursor - s->bot];
68 return cursor;
77 unsigned char *cursor local
216 unsigned char *cursor = s->cur; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dscanner.c18 #define YYCURSOR cursor
21 #define YYFILL(n) {cursor = fill(s, cursor);}
23 #define RETURN(i) {s->cur = cursor; return i;}
38 fill(Scanner *s, unsigned char *cursor) argument
46 cursor -= cnt;
55 cursor = &buf[cursor - s->bot];
68 return cursor;
77 unsigned char *cursor local
216 unsigned char *cursor = s->cur; local
[all...]

Completed in 722 milliseconds

1234567891011>>