/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/ |
FindFunction.java | 20 import com.google.clearsilver.jsilver.values.Value; 21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
|
/external/libffi/testsuite/libffi.call/ |
pyobjc-tc.c | 40 void* values[6]; local 98 values[0] = &o; 99 values[1] = &m; 100 values[2] = &p; 101 values[3] = &r; 102 values[4] = &l; 103 values[5] = NULL; 108 ffi_call(&cif, FFI_FN(doit), &result, values);
|
/external/llvm/test/FrontendFortran/ |
2009-02-09-FloorDivExpr.f90 | 21 subroutine test (from, to, step, values) 22 integer, dimension (:) :: values local in subroutine:test 28 if (values (last) .ne. i) call abort 30 if (size (values, dim = 1) .ne. last) call abort
|
/external/skia/src/animator/ |
SkOperandInterpolator.h | 33 /** Add or replace a key frame, copying the values[] data into the interpolator. 36 @param values The array of values [elemCount] for this frame. The data is copied 43 bool setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend = SK_Scalar1); 44 Result timeToValues(SkMSec time, SkOperand values[]) const;
|
/external/webkit/Source/WebKit2/Shared/API/c/ |
WKArray.cpp | 39 WKArrayRef WKArrayCreate(WKTypeRef* values, size_t numberOfValues) 41 RefPtr<ImmutableArray> array = ImmutableArray::create(reinterpret_cast<APIObject**>(const_cast<void**>(values)), numberOfValues);
|
/external/webkit/Source/WebKit2/Shared/mac/ |
WebMemorySampler.mac.mm | 144 webKitMemoryStats.values.append(now); 146 webKitMemoryStats.values.append(totalBytesInUse); 148 webKitMemoryStats.values.append(fastMallocBytesInUse); 150 webKitMemoryStats.values.append(defaultMallocZoneBytesInUse); 152 webKitMemoryStats.values.append(dispatchContinuationMallocZoneBytesInUse); 154 webKitMemoryStats.values.append(purgeableMallocZoneBytesInUse); 156 webKitMemoryStats.values.append(jscHeapBytesInUse); 158 webKitMemoryStats.values.append(totalBytesCommitted); 160 webKitMemoryStats.values.append(fastMallocBytesCommitted); 162 webKitMemoryStats.values.append(defaultMallocZoneBytesCommitted) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
AuthorityKeyIdentifier.java | 111 Object[] values = (Object[]) in.content; 113 byte[] enc = (byte[]) values[2]; 119 return new AuthorityKeyIdentifier((byte[]) values[0], 120 (GeneralNames) values[1], authorityCertSerialNumber); 123 @Override protected void getValues(Object object, Object[] values) { 125 values[0] = akid.keyIdentifier; 126 values[1] = akid.authorityCertIssuer; 128 values[2] = akid.authorityCertSerialNumber.toByteArray();
|
Certificate.java | 120 Object[] values = (Object[]) in.content; 122 (TBSCertificate) values[0], 123 (AlgorithmIdentifier) values[1], 124 ((BitString) values[2]).bytes, // FIXME keep as BitString object 128 @Override protected void getValues(Object object, Object[] values) { 130 values[0] = cert.tbsCertificate; 131 values[1] = cert.signatureAlgorithm; 132 values[2] = new BitString(cert.signatureValue, 0);
|
CertificateList.java | 118 Object[] values = (Object[]) in.content; 120 (TBSCertList) values[0], 121 (AlgorithmIdentifier) values[1], 122 ((BitString) values[2]).bytes, // FIXME keep as BitString object 127 @Override protected void getValues(Object object, Object[] values) { 129 values[0] = certificateList.tbsCertList; 130 values[1] = certificateList.signatureAlgorithm; 131 values[2] = new BitString(certificateList.signatureValue, 0);
|
PolicyConstraints.java | 116 Object[] values = (Object[]) in.content; 119 if (values[0] != null) { 120 requireExplicitPolicy = new BigInteger((byte[]) values[0]); 122 if (values[1] != null) { 123 inhibitPolicyMapping = new BigInteger((byte[]) values[1]); 130 @Override protected void getValues(Object object, Object[] values) { 132 values[0] = pc.requireExplicitPolicy.toByteArray(); 133 values[1] = pc.inhibitPolicyMapping.toByteArray();
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/ |
PKIFailureInfo.java | 50 The value of PKIFailureInfo can take only one of the values, 111 * @return maximum of values in the enum 115 for (PKIFailureInfo cur : values()) 128 for (PKIFailureInfo info : values()){
|
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
WidgetDatabaseHelper.java | 136 ContentValues values = new ContentValues(); local 137 values.put(FIELD_APPWIDGET_ID, entry.widgetId); 138 values.put(FIELD_WIDGET_TYPE, entry.type); 139 values.put(FIELD_IMAGE_URI, entry.imageUri); 140 values.put(FIELD_PHOTO_BLOB, entry.imageData); 141 values.put(FIELD_ALBUM_PATH, entry.albumPath); 142 db.insert(TABLE_WIDGETS, null, values); 181 ContentValues values = new ContentValues(); local 182 values.put(FIELD_APPWIDGET_ID, appWidgetId); 183 values.put(FIELD_WIDGET_TYPE, TYPE_SINGLE_PHOTO) 198 ContentValues values = new ContentValues(); local [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForNote.java | 40 public boolean containsSearchableColumns(ContentValues values) { 41 return values.containsKey(Note.NOTE);
|
/sdk/common/tests/src/com/android/resources/ |
FolderTypeRelationShipTest.java | 30 for (ResourceType type : ResourceType.values()) { 39 for (ResourceFolderType type : ResourceFolderType.values()) {
|
/cts/apps/CtsVerifier/jni/audioquality/ |
MeasureRms.cpp | 19 /* Return the median of the n values in "values". 21 float getMedian(float* values, int n) { 25 return values[0]; 27 return 0.5 * (values[0] + values[1]); 30 if (values[j] < values[i-1]) { 31 float tmp = values[i-1]; 32 values[i-1] = values[j] [all...] |
/external/chromium/chrome/browser/tabs/ |
pinned_tab_codec.cc | 7 #include "base/values.h" 38 // Adds a DictionaryValue to |values| representing the pinned tab at the 42 ListValue* values) { 55 values->Append(value.release()); 62 values->Append(value.release()); 68 static void EncodePinnedTabs(Browser* browser, ListValue* values) { 71 EncodePinnedTab(tab_model, i, values); 74 // Decodes the previously written values in |value| to |tab|, returning true 101 ListValue values; 107 EncodePinnedTabs(browser, &values); 127 DictionaryValue* values = NULL; local [all...] |
/external/e2fsprogs/e2fsck/ |
profile_helpers.c | 8 * list of sections or relations, or accessing multiple values from a 147 struct profile_string_list values; local 154 if ((retval = init_list(&values))) 161 add_to_list(&values, value); 164 if (values.num == 0) { 169 end_list(&values, ret_values); 173 end_list(&values, 0); 188 struct profile_string_list values; local 195 if ((retval = init_list(&values))) 202 add_to_list(&values, name) 224 struct profile_string_list values; local [all...] |
/frameworks/base/core/java/android/webkit/ |
GeolocationPermissions.java | 106 Map values = (Map) msg.obj; 107 Set<String> origins = (Set<String>) values.get(ORIGINS); 108 ValueCallback<Set<String> > callback = (ValueCallback<Set<String> >) values.get(CALLBACK); 112 Map values = (Map) msg.obj; 113 Boolean allowed = (Boolean) values.get(ALLOWED); 114 ValueCallback<Boolean> callback = (ValueCallback<Boolean>) values.get(CALLBACK); 137 Map values = new HashMap<String, Object>(); 138 values.put(CALLBACK, callback); 139 values.put(ORIGINS, origins); 140 postUIMessage(Message.obtain(null, RETURN_ORIGINS, values)); 237 Map values = new HashMap<String, Object>(); local [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
AbstractMapTest.java | 226 * @tests java.util.AbstractMap#values() 230 assertSame("HashMap(0)", map1.values(), map1.values()); 233 assertSame("HashMap(10)", map2.values(), map2.values()); 236 assertSame("EMPTY_MAP", map3.values(), map3.values()); 239 assertSame("IdentityHashMap", map4.values(), map4.values()); 242 assertSame("IdentityHashMap", map5.values(), map5.values()) 291 Vector values = new Vector(); field in class:AbstractMapTest.AMT [all...] |
/external/webkit/Source/WebCore/rendering/svg/ |
SVGTextLayoutAttributesBuilder.cpp | 42 // Build list of x/y/dx/dy/rotate values for each subtree element that may define these values (tspan/textPath etc). 50 // Collect x/y/dx/dy/rotate values for each character, stored in the m_positioningLists.xValues()/etc. lists. 227 // Pad x/y/dx/dy/rotate value lists with empty values, if the metrics span more than one character. 256 static inline void fillListAtPosition(Vector<float>& allValues, Vector<float>& values, unsigned start) 258 unsigned valuesSize = values.size(); 260 allValues[start + i] = values[i]; 265 Vector<float> values; local 266 extractFloatValuesFromSVGLengthList(position.element, position.element->x(), values, position.length); 267 fillListAtPosition(m_positioningLists.xValues, values, position.start) [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
AbstractMapTest.java | 138 * java.util.AbstractMap#values() 142 assertSame("HashMap(0)", map1.values(), map1.values()); 145 assertSame("HashMap(10)", map2.values(), map2.values()); 148 assertSame("EMPTY_MAP", map3.values(), map3.values()); 151 assertSame("IdentityHashMap", map4.values(), map4.values()); 154 assertSame("IdentityHashMap", map5.values(), map5.values()) 203 Vector values = new Vector(); field in class:AbstractMapTest.AMT [all...] |
/packages/apps/Calendar/src/com/android/calendar/event/ |
EditEventHelper.java | 270 ContentValues values = getContentValuesFromModel(model); local 284 values.put(Events.HAS_ALARM, (len > 0) ? 1 : 0); 288 values.put(Events.HAS_ATTENDEE_DATA, 1); 289 values.put(Events.STATUS, Events.STATUS_TENTATIVE); 292 Events.CONTENT_URI).withValues(values); 298 checkTimeDependentFields(originalModel, model, values, modifyWhich); 299 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build()); 304 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build()); 310 values.put(Events.ORIGINAL_SYNC_ID, originalModel.mSyncId); 311 values.put(Events.ORIGINAL_INSTANCE_TIME, begin) 804 ContentValues values = new ContentValues(); local 848 ContentValues values = new ContentValues(); local 1173 ContentValues values = new ContentValues(); local [all...] |
/frameworks/base/core/java/android/animation/ |
PropertyValuesHolder.java | 30 * This class holds information about a property and the values that that property 38 * The name of the property associated with the values. This need not be a real property, 40 * aniamted values are looked up with getAnimatedValue(String) in ValueAnimator. 62 * The getter is only derived and used if one of the values is null. 67 * The type of values supplied. This information is used both in deriving the setter/getter 83 // The caller may have supplied values in a type that does not match the setter/getter 84 // functions (such as the integers 0 and 1 to represent floating point values for alpha). 112 * The type evaluator used to calculate the animated values. This evaluator is determined 147 * set of int values. 149 * @param values The values that the named property will animate between [all...] |
/cts/tools/dex-tools/src/dex/reader/ |
DexEncodedAnnotationImpl.java | 31 private List<DexAnnotationAttribute> values; field in class:DexEncodedAnnotationImpl 52 values = new ArrayList<DexAnnotationAttribute>(size); 54 values.add(new DexAnnotationAttributeImpl(buffer, annotation, 64 return values;
|
/external/bluetooth/glib/tests/ |
gen-casefold-txt.pl | 80 @values = map { hex ($_) } split /\s+/, $fields[$FOLDING_MAPPING]; 81 printf ("%s\t%s\n", pack ("U", $code), pack ("U*", @values));
|