/external/libpcap/ |
acconfig.h | 4 * put "const" here. This may cause duplicate definitions
|
/external/libpng/projects/ |
netware.txt | 5 Put the zip file in this directory (projects) and then run
|
wince.txt | 5 Put the zip file in this directory (projects) and then run
|
/frameworks/base/core/java/android/ddm/ |
README.txt | 3 It's not necessary to put all DDM-related code in this package; this just
|
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
ResultSetTest.java | 46 thePublicStatics.put("CLOSE_CURSORS_AT_COMMIT", 48 thePublicStatics.put("HOLD_CURSORS_OVER_COMMIT", new java.lang.Integer( 50 thePublicStatics.put("CONCUR_UPDATABLE", new java.lang.Integer(1008)); 51 thePublicStatics.put("CONCUR_READ_ONLY", new java.lang.Integer(1007)); 52 thePublicStatics.put("TYPE_SCROLL_SENSITIVE", new java.lang.Integer( 54 thePublicStatics.put("TYPE_SCROLL_INSENSITIVE", new java.lang.Integer( 56 thePublicStatics.put("TYPE_FORWARD_ONLY", new java.lang.Integer(1003)); 57 thePublicStatics.put("FETCH_UNKNOWN", new java.lang.Integer(1002)); 58 thePublicStatics.put("FETCH_REVERSE", new java.lang.Integer(1001)); 59 thePublicStatics.put("FETCH_FORWARD", new java.lang.Integer(1000)) [all...] |
/external/guava/src/com/google/common/collect/ |
MutableClassToInstanceMap.java | 64 return cast(type, put(type, value)); 85 .put(boolean.class, Boolean.class) 86 .put(byte.class, Byte.class) 87 .put(char.class, Character.class) 88 .put(double.class, Double.class) 89 .put(float.class, Float.class) 90 .put(int.class, Integer.class) 91 .put(long.class, Long.class) 92 .put(short.class, Short.class) 93 .put(void.class, Void.class [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
X509Name.java | 229 DefaultSymbols.put(C, "C"); 230 DefaultSymbols.put(O, "O"); 231 DefaultSymbols.put(T, "T"); 232 DefaultSymbols.put(OU, "OU"); 233 DefaultSymbols.put(CN, "CN"); 234 DefaultSymbols.put(L, "L"); 235 DefaultSymbols.put(ST, "ST"); 236 DefaultSymbols.put(SN, "SN"); 237 DefaultSymbols.put(EmailAddress, "E"); 238 DefaultSymbols.put(DC, "DC") [all...] |
/frameworks/base/core/java/android/content/ |
ContentValues.java | 92 * @param key the name of the value to put 93 * @param value the data for the value to put 95 public void put(String key, String value) { method in class:ContentValues 96 mValues.put(key, value); 111 * @param key the name of the value to put 112 * @param value the data for the value to put 114 public void put(String key, Byte value) { method in class:ContentValues 115 mValues.put(key, value); 121 * @param key the name of the value to put 122 * @param value the data for the value to put 124 public void put(String key, Short value) { method in class:ContentValues 134 public void put(String key, Integer value) { method in class:ContentValues 144 public void put(String key, Long value) { method in class:ContentValues 154 public void put(String key, Float value) { method in class:ContentValues 164 public void put(String key, Double value) { method in class:ContentValues 174 public void put(String key, Boolean value) { method in class:ContentValues 184 public void put(String key, byte[] value) { method in class:ContentValues [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
CommandLine.java | 34 options.put("--nocdata", Boolean.FALSE); // CDATA elements are normal 35 options.put("--files", Boolean.FALSE); // process arguments as separate files 36 options.put("--reuse", Boolean.FALSE); // reuse a single Parser 37 options.put("--nons", Boolean.FALSE); // no namespaces 38 options.put("--nobogons", Boolean.FALSE); // suppress unknown elements 39 options.put("--any", Boolean.FALSE); // unknowns have ANY content model 40 options.put("--emptybogons", Boolean.FALSE); // unknowns have EMPTY content model 41 options.put("--norootbogons", Boolean.FALSE); // unknowns can't be the root 42 options.put("--pyxin", Boolean.FALSE); // input is PYX 43 options.put("--lexical", Boolean.FALSE); // output comment [all...] |
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarSyncTestingBase.java | 109 m.put(Calendar.Events.CALENDAR_ID, calendarId); 110 m.put(Calendar.Events.TITLE, event.mTitle); 111 m.put(Calendar.Events.DTSTART, event.mDtstart); 112 m.put(Calendar.Events.ALL_DAY, event.mAllDay ? 1 : 0); 116 m.put(Calendar.Events.DTEND, event.mDtend); 119 m.put(Calendar.Events.RRULE, event.mRrule); 120 m.put(Calendar.Events.DURATION, event.mDuration); 124 m.put(Calendar.Events.DESCRIPTION, event.mDescription); 127 m.put(Calendar.Events.EVENT_TIMEZONE, event.mTimezone); 143 values.put(Calendar.Events.TITLE, event.mTitle) [all...] |
RecurrenceSetTest.java | 107 values.put(Calendar.Events.DTSTART, 0); 108 values.put(Calendar.Events.DURATION, "P3600S"); 109 values.put(Calendar.Events.RRULE, RRULE_LESS_THAN_75_CHARS); 123 values.put(Calendar.Events.DTSTART, 0); 124 values.put(Calendar.Events.DURATION, "P3600S"); 125 values.put(Calendar.Events.RRULE, RRULE_MORE_THAN_75_CHARS); 136 values.put(Calendar.Events.DTSTART, 0); 137 values.put(Calendar.Events.DURATION, "P3600S"); 138 values.put(Calendar.Events.RRULE, STRING_WITH_160_CHARS);
|
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/ |
SocketHandlerTest.java | 87 props.put("handlers", className + "$MockHandler " + className 89 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log"); 90 props.put("java.util.logging.FileHandler.limit", "50000"); 91 props.put("java.util.logging.FileHandler.count", "5"); 92 props.put("java.util.logging.FileHandler.formatter", 94 props.put(".level", "FINE"); 95 props.put("java.util.logging.ConsoleHandler.level", "OFF"); 96 props.put("java.util.logging.ConsoleHandler.formatter", 98 props.put("foo.handlers", "java.util.logging.ConsoleHandler"); 99 props.put("foo.level", "WARNING") [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
AbstractMapTest.java | 69 public Object put(Object key, Object value) { method in class:AbstractMapTest.MyMap 124 map1.put("key", value); 128 map4.put(key, value); 132 map5.put(key, value); 141 map6.put(key, value); 145 map7.put(key, value); 149 aSpecialMap.put(specialKey, specialValue); 203 public Object put(Object key, Object value) { method in class:AbstractMapTest.MyMap 204 return map.put(key, value); 221 map.put("one", "1") [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/ |
FunctionTable.java | 232 m_functionID.put(Keywords.FUNC_CURRENT_STRING, 234 m_functionID.put(Keywords.FUNC_LAST_STRING, 236 m_functionID.put(Keywords.FUNC_POSITION_STRING, 238 m_functionID.put(Keywords.FUNC_COUNT_STRING, 240 m_functionID.put(Keywords.FUNC_ID_STRING, 242 m_functionID.put(Keywords.FUNC_KEY_STRING, 244 m_functionID.put(Keywords.FUNC_LOCAL_PART_STRING, 246 m_functionID.put(Keywords.FUNC_NAMESPACE_STRING, 248 m_functionID.put(Keywords.FUNC_NAME_STRING, 250 m_functionID.put(Keywords.FUNC_GENERATE_ID_STRING [all...] |
/dalvik/libcore/support/src/test/java/tests/support/ |
Support_GetPutFields.java | 122 putField.put("booleanValue", booleanValue); 123 putField.put("byteValue", byteValue); 124 putField.put("charValue", charValue); 125 putField.put("doubleValue", doubleValue); 126 putField.put("floatValue", floatValue); 127 putField.put("longValue", longValue); 128 putField.put("intValue", intValue); 129 putField.put("objectValue", objectValue); 130 putField.put("shortValue", shortValue);
|
Support_GetPutFieldsDeprecated.java | 123 putField.put("booleanValue", booleanValue); 124 putField.put("byteValue", byteValue); 125 putField.put("charValue", charValue); 126 putField.put("doubleValue", doubleValue); 127 putField.put("floatValue", floatValue); 128 putField.put("longValue", longValue); 129 putField.put("intValue", intValue); 130 putField.put("objectValue", objectValue); 131 putField.put("shortValue", shortValue);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
SettingsTest.java | 55 value.put(Settings.System.NAME, insertName); 56 value.put(Settings.System.VALUE, insertValue); 71 value.put(Settings.System.NAME, updateName); 72 value.put(Settings.System.VALUE, updateValue); 123 value.put("name", insertName); 124 value.put("addr", insertAddr); 125 value.put("channel", 1); 126 value.put("type", 2); 142 value.put("name", updateName); 143 value.put("addr", updateAddr) [all...] |
BrowserTest.java | 79 value.put(BookmarkColumns._ID, cursor.getInt(0)); 80 value.put(BookmarkColumns.TITLE, cursor.getString(1)); 81 value.put(BookmarkColumns.URL, cursor.getString(2)); 82 value.put(BookmarkColumns.VISITS, cursor.getInt(3)); 83 value.put(BookmarkColumns.DATE, cursor.getLong(4)); 84 value.put(BookmarkColumns.CREATED, cursor.getLong(5)); 85 value.put(BookmarkColumns.BOOKMARK, cursor.getInt(7)); 86 value.put(BookmarkColumns.FAVICON, cursor.getBlob(8)); 99 value.put(SearchColumns._ID, cursor.getInt(0)); 100 value.put(SearchColumns.SEARCH, cursor.getString(1)) [all...] |
MediaStore_Images_MediaTest.java | 130 // the tests will be aborted because the image will be put in sdcard 144 // the tests will be aborted because the image will be put in sdcard 208 // the tests will be aborted because the image will be put in sdcard 256 values.put(Media.ORIENTATION, 0); 257 values.put(Media.PICASA_ID, 0); 259 values.put(Media.DATE_TAKEN, dateTaken); 260 values.put(Media.DESCRIPTION, "This is a image"); 261 values.put(Media.LATITUDE, 40.689060d); 262 values.put(Media.LONGITUDE, -74.044636d); 263 values.put(Media.IS_PRIVATE, 1) [all...] |
/packages/apps/Email/tests/src/com/android/exchange/adapter/ |
CalendarSyncAdapterTests.java | 66 cv.put(Events.RRULE, "FREQ=DAILY"); 83 cv.put(Events.RRULE, "FREQ=WEEKLY;BYDAY=MO"); 111 cv.put(Events.ORIGINAL_ALL_DAY, 1); 113 cv.put(Events.ORIGINAL_INSTANCE_TIME, instanceCalendar.getTimeInMillis()); 141 cv.put(Events.DTSTART, validTime); 144 cv.put(Events._SYNC_DATA, validData); 147 cv.put(Events.DURATION, validDuration); 151 cv.put(Events.ORIGINAL_INSTANCE_TIME, validTime); 154 cv.put(Events.DTEND, validTime); 162 cv.put(Events.DTSTART, validTime) [all...] |
/frameworks/base/tests/CoreTests/android/core/ |
HashMapTest.java | 35 map.put("one", ONE); 36 map.put("two", TWO); 37 map.put("three", THREE); 38 map.put("four", FOUR); 98 assertNull(map.put(null, new Integer(-1))); 99 assertNull(map.put("one", new Integer(1))); 100 assertNull(map.put("two", new Integer(2))); 101 assertNull(map.put("three", new Integer(3))); 102 assertEquals(-1, ((Integer) map.put(null, new Integer(0))).intValue()); 263 map1.put("one", "1") [all...] |
/frameworks/base/core/java/com/google/android/mms/pdu/ |
PduPersister.java | 193 MESSAGE_BOX_MAP.put(Mms.Inbox.CONTENT_URI, Mms.MESSAGE_BOX_INBOX); 194 MESSAGE_BOX_MAP.put(Mms.Sent.CONTENT_URI, Mms.MESSAGE_BOX_SENT); 195 MESSAGE_BOX_MAP.put(Mms.Draft.CONTENT_URI, Mms.MESSAGE_BOX_DRAFTS); 196 MESSAGE_BOX_MAP.put(Mms.Outbox.CONTENT_URI, Mms.MESSAGE_BOX_OUTBOX); 199 CHARSET_COLUMN_INDEX_MAP.put(PduHeaders.SUBJECT, PDU_COLUMN_SUBJECT_CHARSET); 200 CHARSET_COLUMN_INDEX_MAP.put(PduHeaders.RETRIEVE_TEXT, PDU_COLUMN_RETRIEVE_TEXT_CHARSET); 203 CHARSET_COLUMN_NAME_MAP.put(PduHeaders.SUBJECT, Mms.SUBJECT_CHARSET); 204 CHARSET_COLUMN_NAME_MAP.put(PduHeaders.RETRIEVE_TEXT, Mms.RETRIEVE_TEXT_CHARSET); 208 ENCODED_STRING_COLUMN_INDEX_MAP.put(PduHeaders.RETRIEVE_TEXT, PDU_COLUMN_RETRIEVE_TEXT); 209 ENCODED_STRING_COLUMN_INDEX_MAP.put(PduHeaders.SUBJECT, PDU_COLUMN_SUBJECT) [all...] |
/packages/apps/IM/samples/PluginDemo/src/com/android/im/plugin/demo/ |
DemoPresenceMapping.java | 69 // commC.put("Qualifier", "T"); 70 // commC.put("Cap", "IM"); 71 // commC.put("Status", "Open"); 73 // commCap.put("Qualifier", "T"); 74 // commCap.put("CommC", commC); 76 // extra.put("CommCap", commCap);
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
TrackerEntry.java | 171 cValues.put(TIMESTAMP, mTimestamp); 172 cValues.put(TAG, mTag); 173 cValues.put(ENTRY_TYPE, mType.toString()); 175 cValues.put(LATITUDE, mLocation.getLatitude()); 176 cValues.put(LONGITUDE, mLocation.getLongitude()); 178 cValues.put(ACCURACY, mLocation.getAccuracy()); 181 cValues.put(ALTITUDE, mLocation.getAltitude()); 184 cValues.put(SPEED, mLocation.getSpeed()); 187 cValues.put(BEARING, mLocation.getBearing()); 189 cValues.put(DIST_NET_LOCATION, mDistFromNetLocation) [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/ |
EntityDeltaTests.java | 70 contact.put(RawContacts.VERSION, 43); 71 contact.put(RawContacts._ID, contactId); 74 phone.put(Data._ID, phoneId); 75 phone.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); 76 phone.put(Phone.NUMBER, TEST_PHONE_NUMBER_1); 77 phone.put(Phone.TYPE, Phone.TYPE_HOME); 107 phone.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE); 108 phone.put(Phone.NUMBER, TEST_PHONE_NUMBER_2); 109 phone.put(Phone.TYPE, Phone.TYPE_WORK); 124 child.put(Phone.NUMBER, TEST_PHONE_NUMBER_2) [all...] |