HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 151 - 175 of 5587) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/harfbuzz_ng/src/
hb-gobject-enums.cc.tmpl 55 static const G@Type@Value values[] = {
66 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
  /external/icu/icu4c/source/tools/toolutil/
denseranges.h 25 * @param values Sorted array of signed-integer values.
26 * @param length Number of values.
35 uprv_makeDenseRanges(const int32_t values[], int32_t length,
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/
Function.java 19 import com.google.clearsilver.jsilver.values.Value;
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
NameFunction.java 21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
23 import static com.google.clearsilver.jsilver.values.Value.literalValue;
24 import com.google.clearsilver.jsilver.values.VariableValue;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
ContactUpdateUtils.java 38 // Update the primary values in the data record.
39 ContentValues values = new ContentValues(2); local
40 values.put(ContactsContract.Data.IS_SUPER_PRIMARY, 1);
41 values.put(ContactsContract.Data.IS_PRIMARY, 1);
45 values, null, null); local
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogInsertionHelper.java 22 * Helper class to be used when inserting values in the call log.
25 /** Adds to the content values those key/value pairs which needs to added automatically. */
26 public void addComputedValues(ContentValues values);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
CallLogInsertionHelperTest.java 68 ContentValues values = new ContentValues(); local
69 values.put(Calls.NUMBER, number);
70 mInsertionHelper.addComputedValues(values);
72 assertEquals(expectedNormalized, values.getAsString(Calls.CACHED_NORMALIZED_NUMBER));
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/algorithms/tests/
test_cluster.py 9 assert_equal(list(nx.triangles(G).values()),[])
13 assert_equal(list(nx.triangles(G).values()),
21 assert_equal(list(nx.triangles(G).values()),
24 assert_equal(list(nx.triangles(G,[1,2]).values()),[0, 0])
30 assert_equal(list(nx.triangles(G).values()),[6, 6, 6, 6, 6])
31 assert_equal(sum(nx.triangles(G).values())/3.0,10)
34 assert_equal(list(nx.triangles(G).values()),[5, 3, 3, 5, 5])
42 assert_equal(list(nx.clustering(G,weight='weight').values()),[])
47 assert_equal(list(nx.clustering(G,weight='weight').values()),
55 assert_equal(list(nx.clustering(G,weight='weight').values()),
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Mean.java 26 * <p>Computes the arithmetic mean of a set of values. Uses the definitional
34 * stream of (unstored) values, the value of the statistic that
43 * of stored values, a two-pass, corrected algorithm is used, starting with
44 * the definitional formula computed using the array of stored values and then
45 * correcting this by adding the mean deviation of the data values from the
146 * @param values the input array
149 * @return the mean of the values or Double.NaN if length = 0
154 public double evaluate(final double[] values,final int begin, final int length) {
155 if (test(values, begin, length)) {
160 double xbar = sum.evaluate(values, begin, length) / sampleSize
    [all...]
StandardDeviation.java 147 * @param values the input array
148 * @return the standard deviation of the values or Double.NaN if length = 0
152 public double evaluate(final double[] values) {
153 return FastMath.sqrt(variance.evaluate(values));
167 * @param values the input array
170 * @return the standard deviation of the values or Double.NaN if length = 0
175 public double evaluate(final double[] values, final int begin, final int length) {
176 return FastMath.sqrt(variance.evaluate(values, begin, length));
195 * @param values the input array
199 * @return the standard deviation of the values or Double.NaN if length =
    [all...]
  /external/ceres-solver/internal/ceres/
compressed_col_sparse_matrix_utils.h 73 const double* values,
76 rhs_and_solution[c] /= values[cols[c + 1] - 1];
79 const double v = values[idx];
94 const double* values,
99 const double v = values[idx];
102 rhs_and_solution[c] = rhs_and_solution[c] / values[cols[c + 1] - 1];
120 const double* values,
124 solution[rhs_nonzero_index] = 1.0 / values[cols[rhs_nonzero_index + 1] - 1];
130 const double v = values[idx];
133 solution[c] = solution[c] / values[cols[c + 1] - 1]
    [all...]
  /external/v8/test/mjsunit/compiler/
division-by-constant.js 65 function PushSymmetric(values, x) {
66 values.push(x, -x);
69 function PushRangeSymmetric(values, from, to) {
71 PushSymmetric(values, x);
76 var values = [
79 // Some values from "Hacker's Delight", chapter 10-7.
86 PushSymmetric(values, 1 << shift);
88 // Values near zero
89 PushRangeSymmetric(values, 1, 32);
91 PushRangeSymmetric(values, 100, 109)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SortedSetNavigationTester.java 43 private List<E> values; field in class:SortedSetNavigationTester
51 values = Helpers.copyToList(getSubjectGenerator().getSampleElements(
53 Collections.sort(values, sortedSet.comparator());
56 if (values.size() >= 1) {
57 a = values.get(0);
58 if (values.size() >= 3) {
59 b = values.get(1);
60 c = values.get(2);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
ExistsFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
NotFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
NumericFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
LengthFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
  /frameworks/base/media/jni/
android_media_Utils.h 33 JNIEnv *env, jobjectArray keys, jobjectArray values,
41 JNIEnv *env, jobjectArray keys, jobjectArray values,
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequest.java 96 Object[] values = (Object[]) in.content;
98 (CertificationRequestInfo) values[0],
99 (AlgorithmIdentifier) values[1],
100 ((BitString) values[2]).bytes,
104 protected void getValues(Object object, Object[] values) {
106 values[0] = certReq.info;
107 values[1] = certReq.algId;
108 values[2] = new BitString(certReq.signature, 0);
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DistributionPoint.java 117 Object[] values = (Object[]) in.content;
118 return new DistributionPoint((DistributionPointName) values[0],
119 (ReasonFlags) values[1], (GeneralNames) values[2]);
122 @Override protected void getValues(Object object, Object[] values) {
124 values[0] = dp.distributionPoint;
125 values[1] = dp.reasons;
126 values[2] = dp.cRLIssuer;
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidChecksumTest.java 31 * Values computed experimentally, using C interfaces.
40 private void adler32Test(byte[] values, long expected) {
44 adler.update(values);
49 for (int i = 0; i < values.length; i++) {
50 adler.update(values[i]);
55 private void cRC32Test(byte[] values, long expected) {
59 crc.update(values);
64 for (int i = 0; i < values.length; i++) {
65 crc.update(values[i]);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
GroupMembershipDataItem.java 29 /* package */ GroupMembershipDataItem(ContentValues values) {
30 super(values);
IdentityDataItem.java 29 /* package */ IdentityDataItem(ContentValues values) {
30 super(values);
NicknameDataItem.java 29 public NicknameDataItem(ContentValues values) {
30 super(values);
PhotoDataItem.java 29 /* package */ PhotoDataItem(ContentValues values) {
30 super(values);

Completed in 252 milliseconds

1 2 3 4 5 67 8 91011>>