HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 76 - 100 of 1385) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ORAddress.java 74 protected Object getDecodedObject(Object[] values) {
78 protected void getValues(Object object, Object[] values) {
88 protected void getValues(Object object, Object[] values) {
89 values[0] = foo;
DistributionPoint.java 128 Object[] values = (Object[]) in.content;
129 return new DistributionPoint((DistributionPointName) values[0],
130 (ReasonFlags) values[1], (GeneralNames) values[2]);
133 protected void getValues(Object object, Object[] values) {
135 values[0] = dp.distributionPoint;
136 values[1] = dp.reasons;
137 values[2] = dp.cRLIssuer;
EDIPartyName.java 125 Object[] values = (Object[]) in.content;
126 return new EDIPartyName((String) values[0], (String) values[1],
130 protected void getValues(Object object, Object[] values) {
132 values[0] = epn.nameAssigner;
133 values[1] = epn.partyName;
OtherName.java 112 Object[] values = (Object[]) in.content;
113 return new OtherName(ObjectIdentifier.toString((int[]) values[0]),
114 (byte[]) values[1], in.getEncoded());
117 protected void getValues(Object object, Object[] values) {
121 values[0] = ObjectIdentifier.toIntArray(on.typeID);
122 values[1] = on.value;
PrivateKeyUsagePeriod.java 117 Object[] values = (Object[])in.content;
119 new PrivateKeyUsagePeriod((Date) values[0], (Date) values[1],
123 protected void getValues(Object object, Object[] values) {
127 values[0] = pkup.notBeforeDate;
128 values[1] = pkup.notAfterDate;
TBSCertificate.java 313 Object[] values = (Object[]) in.content;
315 boolean[] issuerUniqueID = (values[7] == null)
316 ? null : ((BitString) values[7]).toBooleanArray();
317 boolean[] subjectUniqueID = (values[8] == null)
318 ? null : ((BitString) values[8]).toBooleanArray();
320 ASN1Integer.toIntValue(values[0]),
321 new BigInteger((byte[]) values[1]),
322 (AlgorithmIdentifier) values[2],
323 (Name) values[3],
324 (Validity) values[4]
    [all...]
Validity.java 97 Object[] values = (Object[]) in.content;
98 return new Validity((Date) values[0], (Date) values[1]);
101 protected void getValues(Object object, Object[] values) {
105 values[0] = validity.notBefore;
106 values[1] = validity.notAfter;
BasicConstraints.java 53 * Creates the extension object on the base of the values of
66 Object[] values = (Object[]) ASN1.decode(encoding); local
67 cA = ((Boolean) values[0]).booleanValue();
68 if (values[1] != null) {
69 pathLenConstraint = new BigInteger((byte[]) values[1]).intValue();
120 protected void getValues(Object object, Object[] values) {
122 values[0] = (Boolean) vals[0];
123 values[1] = ((BigInteger) vals[1]).toByteArray();
  /frameworks/base/core/tests/coretests/src/android/pim/
RecurrenceSetTest.java 68 ContentValues values = new ContentValues(); local
69 RecurrenceSet.populateContentValues(recurrenceComponent, values);
70 Log.d("KS", "values " + values);
72 assertEquals(rrule, values.get(android.provider.Calendar.Events.RRULE));
73 assertEquals(rdate, values.get(android.provider.Calendar.Events.RDATE));
74 assertEquals(exrule, values.get(android.provider.Calendar.Events.EXRULE));
75 assertEquals(exdate, values.get(android.provider.Calendar.Events.EXDATE));
76 assertEquals(dtstart, (long) values.getAsLong(Calendar.Events.DTSTART));
77 assertEquals(tzid, values.get(android.provider.Calendar.Events.EVENT_TIMEZONE))
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
ChecksumTest.java 33 * Values computed experimentally, using C interfaces.
42 private void adler32Test(byte[] values, long expected) {
46 adler.update(values);
51 for (int i = 0; i < values.length; i++) {
52 adler.update(values[i]);
57 private void cRC32Test(byte[] values, long expected) {
61 crc.update(values);
66 for (int i = 0; i < values.length; i++) {
67 crc.update(values[i]);
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequest.java 111 Object[] values = (Object[]) in.content;
114 (CertificationRequestInfo) values[0],
115 (AlgorithmIdentifier) values[1],
116 ((BitString) values[2]).bytes,
120 protected void getValues(Object object, Object[] values) {
123 values[0] = certReq.info;
124 values[1] = certReq.algId;
125 values[2] = new BitString(certReq.signature, 0);
  /dalvik/vm/arch/generic/
Call.c 64 void* values[kMaxArgs]; local
71 values[0] = &pEnv;
75 values[1] = &clazz;
78 values[1] = (void*) argv++;
85 * "types" array. Store the start address of the argument in "values".
90 values[dstArg++] = (void*) argv++;
103 ffi_call(&cif, FFI_FN(func), pReturn, values);
  /external/webkit/WebCore/svg/
SVGTransformable.cpp 58 static int parseTransformParamList(const UChar*& ptr, const UChar* end, float* values, int required, int optional)
70 if (ptr >= end || !parseNumber(ptr, end, values[requiredParams], false))
90 if (ptr >= end || !parseNumber(ptr, end, values[requiredParams + optionalParams], false))
120 float values[] = {0, 0, 0, 0, 0, 0}; local
121 if ((valueCount = parseTransformParamList(ptr, end, values, requiredValuesForType[type], optionalValuesForType[type])) < 0)
126 t.setSkewX(values[0]);
129 t.setSkewY(values[0]);
133 t.setScale(values[0], values[0]);
135 t.setScale(values[0], values[1])
    [all...]
  /frameworks/base/core/java/android/provider/
UserDictionary.java 72 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
126 ContentValues values = new ContentValues(4); local
128 values.put(WORD, word);
129 values.put(FREQUENCY, frequency);
130 values.put(LOCALE, locale);
131 values.put(APP_ID, 0); // TODO: Get App UID
133 Uri result = resolver.insert(CONTENT_URI, values);
  /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;
PKIStatusInfo.java 103 protected void getValues(Object object, Object[] values) {
105 values[0] = BigInteger.valueOf(psi.status.getStatus())
107 values[1] = psi.statusString;
113 values[2] = new BitString(failInfoBoolArray);
115 values[2] = null;
120 Object[] values = (Object[]) in.content;
123 if (values[2] != null) {
124 boolean[] failInfoBoolArray = ((BitString) values[2]).toBooleanArray();
133 PKIStatus.getInstance(ASN1Integer.toIntValue(values[0])),
134 (List)values[1]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceType.java 68 for (ResourceType rType : values()) {
104 ResourceType[] values = values(); local
105 String[] names = new String[values.length];
106 for (int i = values.length - 1; i >= 0; --i) {
107 names[i] = values[i].getName();
  /frameworks/base/core/java/android/database/
CursorJoiner.java 24 * supports the case where the tuple of key column values is unique.
149 * next() are guaranteed to point to the row that was indicated. Reading values
196 * array and saves them in values beginning at startingIndex, skipping a slot
198 * values will be stored in slots 1, 3, and 5.
199 * @param values the String[] to populate
201 * @param columnIndicies the indicies of the values to read from the cursor
202 * @param startingIndex the slot in which to start storing values, and must be either 0 or 1.
204 private static void populateValues(String[] values, Cursor cursor, int[] columnIndicies,
208 values[startingIndex + i*2] = cursor.getString(columnIndicies[i]);
235 * Compare the values. Values contains n pairs of strings. If all the pairs of strings matc
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/
PrivateKeyInfo.java 133 Object[] values = (Object[]) in.content;
135 return new PrivateKeyInfo(ASN1Integer.toIntValue(values[0]),
136 (AlgorithmIdentifier) values[1], (byte[]) values[2],
137 (List) values[3], in.getEncoded());
140 protected void getValues(Object object, Object[] values) {
144 values[0] = ASN1Integer.fromIntValue(privateKeyInfo.version);
145 values[1] = privateKeyInfo.privateKeyAlgorithm;
146 values[2] = privateKeyInfo.privateKey;
147 values[3] = privateKeyInfo.attributes
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
TranslateAnimationTest.java 102 // Test negative input values
109 // Test negative input values
141 float values[] = new float[9]; local
144 transformation.getMatrix().getValues(values);
145 assertEquals(FROM_X_DETLTA, values[Matrix.MTRANS_X], POSITION_DELTA);
146 assertEquals(FROM_Y_DELTA, values[Matrix.MTRANS_Y], POSITION_DELTA);
150 transformation.getMatrix().getValues(values);
151 assertEquals((TO_X_DELTA + FROM_X_DETLTA) / 2, values[Matrix.MTRANS_X], POSITION_DELTA);
152 assertEquals((TO_Y_DELTA + FROM_Y_DELTA) / 2, values[Matrix.MTRANS_Y], POSITION_DELTA);
156 transformation.getMatrix().getValues(values);
214 float values[] = new float[9]; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
ContentInfo.java 121 protected void getValues(Object object, Object[] values) {
123 values[0] = ci.oid;
127 values[1] =
131 values[1] = SignedData.ASN1.encode(ci.content);
133 values[1] = ci.content;
139 Object[] values = (Object[]) in.content;
140 int[] oid = (int[]) values[0];
142 if (values[1] != null) {
144 ASN1OctetString.getInstance().decode((byte[])values[1]),
147 return new ContentInfo((int[])values[0], null
    [all...]
SignedData.java 141 protected void getValues(Object object, Object[] values) {
143 values[0] = new byte[] {(byte)sd.version};
144 values[1] = sd.digestAlgorithms;
145 values[2] = sd.contentInfo;
146 values[3] = sd.certificates;
147 values[4] = sd.crls;
148 values[5] = sd.signerInfos;
152 Object[] values = (Object[]) in.content;
154 ASN1Integer.toIntValue(values[0]),
155 (List) values[1]
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 173 ContentValues values = new ContentValues(); local
175 values.put(extras[i], extras[i + 1]);
179 Uri contactUri = mResolver.insert(uri, values);
188 ContentValues values = new ContentValues(); local
189 values.put(Groups.SOURCE_ID, sourceId);
190 values.put(Groups.TITLE, title);
191 values.put(Groups.GROUP_VISIBLE, visible);
193 return ContentUris.parseId(mResolver.insert(uri, values));
197 ContentValues values = new ContentValues(); local
198 values.put(Settings.ACCOUNT_NAME, account.name)
206 ContentValues values = new ContentValues(); local
252 ContentValues values = new ContentValues(); local
275 ContentValues values = new ContentValues(); local
290 ContentValues values = new ContentValues(); local
301 ContentValues values = new ContentValues(); local
311 ContentValues values = new ContentValues(); local
320 ContentValues values = new ContentValues(); local
328 ContentValues values = new ContentValues(); local
342 ContentValues values = new ContentValues(); local
363 ContentValues values = new ContentValues(); local
376 ContentValues values = new ContentValues(); local
381 RawContacts.CONTENT_URI, rawContactId), values, null, null); local
385 ContentValues values = new ContentValues(); local
620 ContentValues values = new ContentValues(); local
630 ContentValues values = new ContentValues(); local
641 ContentValues values = new ContentValues(); local
1137 ContentValues values = new ContentValues(); local
1146 ContentValues values = new ContentValues(); local
1161 ContentValues values = new ContentValues(); local
1181 ContentValues values = new ContentValues(); local
    [all...]
  /frameworks/base/core/java/android/webkit/
WebStorage.java 122 Map values = (Map) msg.obj;
123 Map origins = (Map) values.get(ORIGINS);
124 ValueCallback<Map> callback = (ValueCallback<Map>) values.get(CALLBACK);
129 Map values = (Map) msg.obj;
130 ValueCallback<Long> callback = (ValueCallback<Long>) values.get(CALLBACK);
131 callback.onReceiveValue((Long)values.get(USAGE));
135 Map values = (Map) msg.obj;
136 ValueCallback<Long> callback = (ValueCallback<Long>) values.get(CALLBACK);
137 callback.onReceiveValue((Long)values.get(QUOTA));
174 Map values = new HashMap<String, Object>()
273 HashMap values = new HashMap<String, Object>(); local
296 HashMap values = new HashMap<String, Object>(); local
    [all...]

Completed in 880 milliseconds

1 2 34 5 6 7 8 91011>>