/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/ |
SipAddressDataItem.java | 29 /* package */ SipAddressDataItem(ContentValues values) { 30 super(values);
|
WebsiteDataItem.java | 29 /* package */ WebsiteDataItem(ContentValues values) { 30 super(values);
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/ |
InMatcher.java | 34 public InMatcher(Collection<T> values) { 35 Preconditions.checkNotNull("values", values); 36 mValues = values; 39 public InMatcher(T... values) { 40 Preconditions.checkNotNull(values); 41 mValues = Arrays.asList(values);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
Max.java | 24 * Returns the maximum of the available values. 27 * <li>The result is <code>NaN</code> iff all values are <code>NaN</code> 28 * (i.e. <code>NaN</code> values have no impact on the value of the statistic).</li> 29 * <li>If any of the values equals <code>Double.POSITIVE_INFINITY</code>, 45 /** Number of values that have been added */ 113 * <li>The result is <code>NaN</code> iff all values are <code>NaN</code> 114 * (i.e. <code>NaN</code> values have no impact on the value of the statistic).</li> 115 * <li>If any of the values equals <code>Double.POSITIVE_INFINITY</code>, 119 * @param values the input array 122 * @return the maximum of the values or Double.NaN if length = [all...] |
Min.java | 24 * Returns the minimum of the available values. 27 * <li>The result is <code>NaN</code> iff all values are <code>NaN</code> 28 * (i.e. <code>NaN</code> values have no impact on the value of the statistic).</li> 29 * <li>If any of the values equals <code>Double.NEGATIVE_INFINITY</code>, 45 /**Number of values that have been added */ 113 * <li>The result is <code>NaN</code> iff all values are <code>NaN</code> 114 * (i.e. <code>NaN</code> values have no impact on the value of the statistic).</li> 115 * <li>If any of the values equals <code>Double.NEGATIVE_INFINITY</code>, 119 * @param values the input array 122 * @return the minimum of the values or Double.NaN if length = [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
SimplePatternFormatter.java | 128 * Formats the given values. 130 public String format(CharSequence... values) { 131 return formatAndAppend(new StringBuilder(), null, values).toString(); 135 * Formats the given values. 140 * corresponding value is not in appendTo. offsets.length and values.length may 141 * differ. If offsets.length < values.length then only the first offsets are written out; 142 * If offsets.length > values.length then the extra offsets get -1. 144 * @param values the placeholder values. A placeholder value may not be the same object as 149 StringBuilder appendTo, int[] offsets, CharSequence... values) { 219 String[] values = new String[this.getPlaceholderCount()]; local 382 private final CharSequence[] values; field in class:SimplePatternFormatter.PlaceholderValues [all...] |
/external/webrtc/src/system_wrappers/interface/ |
data_log_c.h | 45 const int* values, 52 const float* values, 59 const double* values, 66 const int32_t* values, 73 const uint32_t* values, 80 const int64_t* values,
|
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/ |
Scale.java | 34 private void captureValues(TransitionValues values) { 35 View view = values.view; 36 values.values.put(PROPNAME_SCALE, view.getScaleX()); 56 final float startScale = (Float) startValues.values.get(PROPNAME_SCALE); 57 final float endScale = (Float) endValues.values.get(PROPNAME_SCALE);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
AccessDescription.java | 83 Object[] values = (Object[]) in.content; 85 ObjectIdentifier.toString((int[]) values[0]), 86 (GeneralName) values[1], in.getEncoded()); 89 @Override protected void getValues(Object object, Object[] values) { 91 values[0] = ObjectIdentifier.toIntArray(ad.accessMethod); 92 values[1] = ad.accessLocation;
|
EDIPartyName.java | 91 Object[] values = (Object[]) in.content; 92 return new EDIPartyName((String) values[0], (String) values[1], 96 @Override protected void getValues(Object object, Object[] values) { 98 values[0] = epn.nameAssigner; 99 values[1] = epn.partyName;
|
OtherName.java | 91 Object[] values = (Object[]) in.content; 92 return new OtherName(ObjectIdentifier.toString((int[]) values[0]), 93 (byte[]) values[1], in.getEncoded()); 96 @Override protected void getValues(Object object, Object[] values) { 98 values[0] = ObjectIdentifier.toIntArray(on.typeID); 99 values[1] = on.value;
|
PrivateKeyUsagePeriod.java | 101 Object[] values = (Object[])in.content; 102 return new PrivateKeyUsagePeriod((Date) values[0], (Date) values[1], in.getEncoded()); 105 @Override protected void getValues(Object object, Object[] values) { 107 values[0] = pkup.notBeforeDate; 108 values[1] = pkup.notAfterDate;
|
TBSCertificate.java | 247 Object[] values = (Object[]) in.content; 249 boolean[] issuerUniqueID = (values[7] == null) 250 ? null : ((BitString) values[7]).toBooleanArray(); 251 boolean[] subjectUniqueID = (values[8] == null) 252 ? null : ((BitString) values[8]).toBooleanArray(); 254 ASN1Integer.toIntValue(values[0]), 255 new BigInteger((byte[]) values[1]), 256 (AlgorithmIdentifier) values[2], 257 (Name) values[3], 258 (Validity) values[4] [all...] |
Validity.java | 89 Object[] values = (Object[]) in.content; 90 return new Validity((Date) values[0], (Date) values[1]); 93 @Override protected void getValues(Object object, Object[] values) { 95 values[0] = validity.notBefore; 96 values[1] = validity.notAfter;
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/ |
MessageImprint.java | 52 Object[] values = (Object[]) in.content; 54 (AlgorithmIdentifier)values[0], 55 (byte[])values[1]); 58 protected void getValues(Object object, Object[] values) { 60 values[0] = mi.algId; 61 values[1] = mi.hashedMessage;
|
TimeStampResp.java | 82 Object[] values = (Object[]) in.content; 84 (PKIStatusInfo) values[0], 85 (ContentInfo) values[1]); 88 protected void getValues(Object object, Object[] values) { 91 values[0] = resp.status; 92 values[1] = resp.timeStampToken;
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
StructuredNameEditorView.java | 116 ValuesDelta values = getValues(); local 120 values.put(field, mSnapshot.getContentValues().getAsString(field)); 125 String displayName = values.getDisplayName(); 129 eraseFullName(values); 131 values.put(field, structuredNameMap.get(field)); 136 mSnapshot.getContentValues().putAll(values.getCompleteValues()); 141 ValuesDelta values = getValues(); local 144 values.setDisplayName(mSnapshot.getDisplayName()); 148 Map<String, String> structuredNameMap = valuesToStructuredNameMap(values); 152 eraseStructuredName(values); [all...] |
/packages/apps/FMRadio/src/com/android/fmradio/ |
FmStation.java | 95 ContentValues values = new ContentValues(2); local 96 values.put(Station.FREQUENCY, frequency); 97 values.put(Station.STATION_NAME, stationName); 98 context.getContentResolver().insert(Station.CONTENT_URI, values); 112 ContentValues values = new ContentValues(4); local 113 values.put(Station.FREQUENCY, frequency); 114 values.put(Station.STATION_NAME, stationName); 115 values.put(Station.PROGRAM_SERVICE, ps); 116 values.put(Station.RADIO_TEXT, rt); 117 context.getContentResolver().insert(Station.CONTENT_URI, values); 139 ContentValues values = new ContentValues(size); local 301 ContentValues values = new ContentValues(1); local 317 ContentValues values = new ContentValues(1); local [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForCommonDataKind.java | 45 ContentValues values) { 46 enforceTypeAndLabel(values); 47 return super.insert(db, txContext, rawContactId, values); 51 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 54 final ContentValues augmented = getAugmentedValues(db, dataId, values); 59 return super.update(db, txContext, values, c, callerIsSyncAdapter);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/tests/ |
test_swap.py | 7 degrees = sorted(graph.degree().values()) 9 assert_equal(degrees, sorted(graph.degree().values())) 13 degrees = sorted(graph.degree().values()) 16 assert_equal(degrees, sorted(graph.degree().values())) 39 degrees = sorted(G.degree().values()) 41 assert_equal(degrees, sorted(G.degree().values()))
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_PlaylistsTest.java | 67 ContentValues values = new ContentValues(); local 68 values.put(Playlists.NAME, "My favourites"); 69 values.put(Playlists.DATA, externalPlaylistPath); 72 values.put(Playlists.DATE_MODIFIED, dateModified); 74 Uri uri = mContentResolver.insert(Playlists.EXTERNAL_CONTENT_URI, values); 93 values.clear(); 94 values.put(Playlists.NAME, "xxx"); 96 values.put(Playlists.DATE_MODIFIED, dateModified); 97 assertEquals(1, mContentResolver.update(uri, values, null, null)); 113 ContentValues values = new ContentValues() local [all...] |
/packages/apps/Camera/src/com/android/camera/ |
Storage.java | 55 private static void setImageSize(ContentValues values, int width, int height) { 58 values.put(MediaColumns.WIDTH, width); 59 values.put(MediaColumns.HEIGHT, height); 94 ContentValues values = new ContentValues(9); local 95 values.put(ImageColumns.TITLE, title); 96 values.put(ImageColumns.DISPLAY_NAME, title + ".jpg"); 97 values.put(ImageColumns.DATE_TAKEN, date); 98 values.put(ImageColumns.MIME_TYPE, "image/jpeg"); 100 values.put(ImageColumns.ORIENTATION, orientation); 101 values.put(ImageColumns.DATA, path) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
WordListMetadata.java | 82 public static WordListMetadata createFromContentValues(@Nonnull final ContentValues values) { 83 final String id = values.getAsString(MetadataDbHelper.WORDLISTID_COLUMN); 84 final Integer type = values.getAsInteger(MetadataDbHelper.TYPE_COLUMN); 85 final String description = values.getAsString(MetadataDbHelper.DESCRIPTION_COLUMN); 86 final Long lastUpdate = values.getAsLong(MetadataDbHelper.DATE_COLUMN); 87 final Long fileSize = values.getAsLong(MetadataDbHelper.FILESIZE_COLUMN); 88 final String rawChecksum = values.getAsString(MetadataDbHelper.RAW_CHECKSUM_COLUMN); 89 final String checksum = values.getAsString(MetadataDbHelper.CHECKSUM_COLUMN); 90 final int retryCount = values.getAsInteger(MetadataDbHelper.RETRY_COUNT_COLUMN); 91 final String localFilename = values.getAsString(MetadataDbHelper.LOCAL_FILENAME_COLUMN) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
XMLRecordWriter.java | 55 public void boolArray(String name, boolean[] values) { 56 if (values != null) { 57 String[] stringValues = new String[values.length]; 58 for (int i = 0; i < values.length; ++i) { 59 stringValues[i] = String.valueOf(values[i]); 81 public void characterArray(String name, char[] values) { 82 if (values != null) { 83 String[] stringValues = new String[values.length]; 84 for (int i = 0; i < values.length; ++i) { 85 char value = values[i] [all...] |
/external/aac/libAACenc/src/ |
bit_cnt.cpp | 109 static void FDKaacEnc_count1_2_3_4_5_6_7_8_9_10_11(const SHORT *RESTRICT values, 127 t0= values[i+0]; 128 t1= values[i+1]; 129 t2= values[i+2]; 130 t3= values[i+3]; 185 static void FDKaacEnc_count3_4_5_6_7_8_9_10_11(const SHORT *RESTRICT values, 203 t0= values[i+0]; 204 t1= values[i+1]; 205 t2= values[i+2]; 206 t3= values[i+3] [all...] |