HomeSort by relevance Sort by last modified time
    Searched refs:Tags (Results 1 - 18 of 18) sorted by null

  /packages/apps/Email/src/com/android/exchange/adapter/
GalParser.java 42 if (nextTag(START_DOCUMENT) != Tags.SEARCH_SEARCH) {
46 if (tag == Tags.SEARCH_RESPONSE) {
58 while (nextTag(Tags.SEARCH_STORE) != END) {
59 if (tag == Tags.GAL_DISPLAY_NAME) {
61 } else if (tag == Tags.GAL_EMAIL_ADDRESS) {
73 while (nextTag(Tags.SEARCH_STORE) != END) {
74 if (tag == Tags.SEARCH_PROPERTIES) {
83 while (nextTag(Tags.SEARCH_RESPONSE) != END) {
84 if (tag == Tags.SEARCH_STORE) {
93 while (nextTag(Tags.SEARCH_STORE) != END)
    [all...]
MeetingResponseParser.java 35 while (nextTag(Tags.MREQ_RESULT) != END) {
36 if (tag == Tags.MREQ_STATUS) {
41 } else if (tag == Tags.MREQ_CAL_ID) {
52 if (nextTag(START_DOCUMENT) != Tags.MREQ_MEETING_RESPONSE) {
56 if (tag == Tags.MREQ_RESULT) {
ProvisionParser.java 70 while (nextTag(Tags.PROVISION_EAS_PROVISION_DOC) != END) {
72 case Tags.PROVISION_DEVICE_PASSWORD_ENABLED:
79 case Tags.PROVISION_MIN_DEVICE_PASSWORD_LENGTH:
82 case Tags.PROVISION_ALPHA_DEVICE_PASSWORD_ENABLED:
87 case Tags.PROVISION_MAX_INACTIVITY_TIME_DEVICE_LOCK:
91 case Tags.PROVISION_MAX_DEVICE_PASSWORD_FAILED_ATTEMPTS:
94 case Tags.PROVISION_ALLOW_SIMPLE_DEVICE_PASSWORD:
100 case Tags.PROVISION_ATTACHMENTS_ENABLED:
106 case Tags.PROVISION_DEVICE_ENCRYPTION_ENABLED:
107 case Tags.PROVISION_PASSWORD_RECOVERY_ENABLED
    [all...]
PingParser.java 53 while (nextTag(Tags.PING_FOLDERS) != END) {
54 if (tag == Tags.PING_FOLDER) {
68 if (nextTag(START_DOCUMENT) != Tags.PING_PING) {
72 if (tag == Tags.PING_STATUS) {
85 } else if (tag == Tags.PING_FOLDERS) {
87 } else if (tag == Tags.PING_HEARTBEAT_INTERVAL) {
EmailSyncAdapter.java 142 while (nextTag(Tags.SYNC_APPLICATION_DATA) != END) {
144 case Tags.EMAIL_ATTACHMENTS:
145 case Tags.BASE_ATTACHMENTS: // BASE_ATTACHMENTS is used in EAS 12.0 and up
148 case Tags.EMAIL_TO:
151 case Tags.EMAIL_FROM:
158 case Tags.EMAIL_CC:
161 case Tags.EMAIL_REPLY_TO:
164 case Tags.EMAIL_DATE_RECEIVED:
167 case Tags.EMAIL_SUBJECT:
170 case Tags.EMAIL_READ
    [all...]
ContactsSyncAdapter.java 85 private static final int[] HOME_ADDRESS_TAGS = new int[] {Tags.CONTACTS_HOME_ADDRESS_CITY,
86 Tags.CONTACTS_HOME_ADDRESS_COUNTRY,
87 Tags.CONTACTS_HOME_ADDRESS_POSTAL_CODE,
88 Tags.CONTACTS_HOME_ADDRESS_STATE,
89 Tags.CONTACTS_HOME_ADDRESS_STREET};
91 private static final int[] WORK_ADDRESS_TAGS = new int[] {Tags.CONTACTS_BUSINESS_ADDRESS_CITY,
92 Tags.CONTACTS_BUSINESS_ADDRESS_COUNTRY,
93 Tags.CONTACTS_BUSINESS_ADDRESS_POSTAL_CODE,
94 Tags.CONTACTS_BUSINESS_ADDRESS_STATE,
95 Tags.CONTACTS_BUSINESS_ADDRESS_STREET}
    [all...]
FolderSyncParser.java 104 if (nextTag(START_DOCUMENT) != Tags.FOLDER_FOLDER_SYNC)
107 if (tag == Tags.FOLDER_STATUS) {
127 } else if (tag == Tags.FOLDER_SYNC_KEY) {
130 } else if (tag == Tags.FOLDER_CHANGES) {
154 while (nextTag(Tags.FOLDER_DELETE) != END) {
156 case Tags.FOLDER_SERVER_ID:
185 while (nextTag(Tags.FOLDER_ADD) != END) {
187 case Tags.FOLDER_DISPLAY_NAME: {
191 case Tags.FOLDER_TYPE: {
195 case Tags.FOLDER_PARENT_ID:
    [all...]
AbstractSyncParser.java 100 if (nextTag(START_DOCUMENT) != Tags.SYNC_SYNC) {
109 if (tag == Tags.SYNC_COLLECTION || tag == Tags.SYNC_COLLECTIONS) {
110 // Ignore these tags, since we've only got one collection syncing in this loop
111 } else if (tag == Tags.SYNC_STATUS) {
134 } else if (tag == Tags.SYNC_COMMANDS) {
136 } else if (tag == Tags.SYNC_RESPONSES) {
138 } else if (tag == Tags.SYNC_MORE_AVAILABLE) {
140 } else if (tag == Tags.SYNC_SYNC_KEY) {
CalendarSyncAdapter.java 413 while (nextTag(Tags.SYNC_APPLICATION_DATA) != END) {
427 if (tag == Tags.CALENDAR_DTSTAMP) {
430 } else if (tag == Tags.CALENDAR_ATTENDEES) {
457 case Tags.CALENDAR_ALL_DAY_EVENT:
473 case Tags.CALENDAR_ATTENDEES:
477 case Tags.BASE_BODY:
480 case Tags.CALENDAR_BODY:
483 case Tags.CALENDAR_TIME_ZONE:
490 case Tags.CALENDAR_START_TIME:
493 case Tags.CALENDAR_END_TIME
    [all...]
Serializer.java 93 throw new IOException("Done received with unclosed tags");
110 int page = pendingTag >> Tags.PAGE_SHIFT;
111 int tag = pendingTag & Tags.PAGE_MASK;
120 String name = Tags.pages[page][tag - 5];
Parser.java 55 // Where tags start in a page
75 // The stack of names of tags being processed; used when debug = true
78 // The stack of tags being processed
138 String[][] pages = Tags.pages;
249 * Return the next tag found in the stream; special tags END and END_DOCUMENT are used to
252 * shifted PAGE_SHIFT bits OR'd with the tag retrieved from the stream. Thus, all tags returned
261 endTag = endingTag &= Tags.PAGE_MASK;
377 page = pg << Tags.PAGE_SHIFT;
Tags.java 21 * The wbxml tags for EAS are all defined here.
32 public class Tags {
    [all...]
  /packages/apps/Email/tests/src/com/android/exchange/
TagsTests.java 19 import com.android.exchange.adapter.Tags;
27 // Make sure there are no duplicates in the tags table
28 // This test is no longer required - tags can be duplicated
30 String[][] allTags = Tags.pages;
  /packages/apps/Email/src/com/android/exchange/
EasSyncService.java 50 import com.android.exchange.adapter.Tags;
421 s.start(Tags.FOLDER_FOLDER_SYNC).start(Tags.FOLDER_SYNC_KEY).text("0")
    [all...]
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 189 s.start(Tags.SYNC_DELETE).data(Tags.SYNC_SERVER_ID, "1:22").end().done();
196 mSyncParser.deleteParser(deleteList, Tags.SYNC_DELETE);
219 s.start(Tags.SYNC_CHANGE).data(Tags.SYNC_SERVER_ID, "1:22");
220 s.start(Tags.SYNC_APPLICATION_DATA).data(Tags.EMAIL_READ, "0").end();
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java 32 import com.android.exchange.adapter.Tags;
    [all...]
  /dalvik/docs/
prettify.js 34 * 3) mark the <pre> and <code> tags in your source with class=prettyprint.
76 /** find all the < pre > and < code > tags in the DOM with class=prettyprint
358 // XMP tags contain unescaped entities so require special handling.
433 /** split markup into chunks of html tags (style null) and
434 * plain text (style {@link #PR_PLAIN}), converting tags which are
438 * @return {Object} source code and extracted tags.
459 // <br> tags are lexically significant so convert them to text.
499 return { source: sourceBuf.join(''), tags: extractedTags };
617 // Tags whose content is not escaped, and which contain source code.
624 /** split markup on tags, comments, application directives, and other to
    [all...]
  /ndk/build/core/
definitions.mk 697 # 'tags' associated to it. A tag name must not contain space, and its
706 # More tags might be introduced in the future.
708 # LOCAL_SRC_TAGS contains the list of all tags used (initially empty)
712 # LOCAL_SRC_FILES_TAGS.<filename> contains the set of tags for a given
715 # Tags are processed by a toolchain-specific function (e.g. TARGET-compute-cflags)
731 # Macro : clear-all-src-tags
732 # Returns : remove all source file tags and associated data.
733 # Usage : $(clear-all-src-tags)
735 clear-all-src-tags = \
    [all...]

Completed in 164 milliseconds