Searched refs:values (Results 51 - 75 of 1772) sorted by relevance

1234567891011>>

/external/harfbuzz_ng/src/
H A Dhb-cache-private.hh43 memset (values, 255, sizeof (values));
49 unsigned int v = values[k];
62 values[k] = v;
67 unsigned int values[1<<cache_bits]; member in struct:hb_cache_t
H A Dhb-gobject-enums.cc.tmpl55 static const G@Type@Value values[] = {
66 g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
/external/proguard/src/proguard/evaluation/
H A DVariables.java29 * objects. Values are generalizations of all values that have been stored in
39 protected Value[] values; field in class:Variables
48 this.values = new Value[size];
58 // Create the values array.
61 // Copy the values.
71 // Is the values array large enough?
72 if (size > values.length)
75 values = new Value[size];
80 Arrays.fill(values, null);
88 * Initializes the values o
[all...]
/external/v8/test/mjsunit/compiler/
H A Descape-analysis-representation.js31 // have field descriptors with a representation matching the values that
34 var values = [ function() { return {}; },
69 for (var i = 0; i < values.length; i++) {
70 for (var j = 0; j < values.length; j++) {
71 test(values[i], values[j])
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp245 void test_unexpanded_exprs(Types ...values) { argument
247 (void)(values + 0); // expected-error{{expression contains unexpanded parameter pack 'values'}}
248 (void)(0 + values); // expected-error{{expression contains unexpanded parameter pack 'values'}}
251 values.f(); // expected-error{{expression contains unexpanded parameter pack 'values'}}
253 x.f(values); // expected-error{{expression contains unexpanded parameter pack 'values'}}
258 (void)static_cast<Types&>(values); // expecte
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DSQLite_Test.java16 ContentValues values; field in class:SQLite_Test
22 values = new ContentValues();
23 values.put("name", "Chuck");
24 values.put("int_value", 33);
25 values.put("float_value", (float) 1.5);
26 values.put("byte_data", byteData);
31 SQLite.SQLStringAndBindings insertString = buildInsertString("table_name", values, SQLiteDatabase.CONFLICT_NONE);
38 SQLite.SQLStringAndBindings insertString = buildUpdateString("table_name", values, "id=?", new String[]{"1234"});
57 SQLStringAndBindings columnValuesClause = buildColumnValuesClause(values);
65 SQLStringAndBindings columnAssignmentsClause = buildColumnAssignmentsClause(values);
[all...]
H A DH2Test.java19 ContentValues values; field in class:H2Test
26 values = new ContentValues();
27 values.put("name", "Chuck");
28 values.put("int_value", 33);
29 values.put("float_value", (float) 1.5);
30 values.put("byte_data", byteData);
35 SQLite.SQLStringAndBindings insertString = buildInsertString("table_name", values, SQLiteDatabase.CONFLICT_REPLACE);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSettings.java72 /** Bitfield of which flags that values. */
81 /** Flag values. */
82 private final int[] values = new int[COUNT]; field in class:Settings
86 Arrays.fill(values, 0);
90 if (id >= values.length) {
107 values[id] = value;
119 return values[id];
130 /** Returns the number of settings that have values assigned. */
138 return (bit & set) != 0 ? values[UPLOAD_BANDWIDTH] : defaultValue;
144 return (bit & set) != 0 ? values[HEADER_TABLE_SIZ
[all...]
/external/hamcrest/src/org/hamcrest/core/
H A DDescribedAs.java18 private final Object[] values; field in class:DescribedAs
22 public DescribedAs(String descriptionTemplate, Matcher<T> matcher, Object[] values) { argument
25 this.values = values.clone();
39 description.appendValue(values[argIndex]);
52 public static <T> Matcher<T> describedAs(String description, Matcher<T> matcher, Object... values) { argument
53 return new DescribedAs<T>(description, matcher, values);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCalendarCache.java23 values = new long[newSize];
26 values[i] = EMPTY;
37 return values[findIndex(key)];
51 values[index] = value;
59 while (values[index] != EMPTY && keys[index] != key)
73 long[] oldValues = values;
120 private long[] values = new long[arraySize]; field in class:CalendarCache
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/summary/
H A DProduct.java26 * Returns the product of the available values.
28 * If there are no values in the dataset, or any of the values are
43 /**The number of values that have been added */
113 * @param values the input array
116 * @return the product of the values or Double.NaN if length = 0
121 public double evaluate(final double[] values, final int begin, final int length) { argument
123 if (test(values, begin, length)) {
126 product *= values[i];
138 * <ul><li>the values arra
160 evaluate(final double[] values, final double[] weights, final int begin, final int length) argument
195 evaluate(final double[] values, final double[] weights) argument
[all...]
H A DSum.java25 * Returns the sum of the available values.
27 * If there are no values in the dataset, or any of the values are
112 * @param values the input array
115 * @return the sum of the values or Double.NaN if length = 0
120 public double evaluate(final double[] values, final int begin, final int length) { argument
122 if (test(values, begin, length)) {
125 sum += values[i];
137 * <ul><li>the values array is null</li>
139 * <li>the weights array does not have the same length as the values arra
158 evaluate(final double[] values, final double[] weights, final int begin, final int length) argument
192 evaluate(final double[] values, final double[] weights) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DVariance.java27 * Computes the variance of the available values. By default, the unbiased
44 * full array of values in memory to execute a two-pass algorithm.
48 * Note that adding values using <code>increment</code> or
51 * <code>evaluate</code> with the full array of values. The former approach
52 * should only be used when the full array of values is not available.</p>
149 * <p>If all values are available, it is more accurate to use
150 * {@link #evaluate(double[])} rather than adding values one at a time
153 * list of values together to execute a two-pass algorithm.
210 * @param values the input array
211 * @return the variance of the values o
215 evaluate(final double[] values) argument
243 evaluate(final double[] values, final int begin, final int length) argument
302 evaluate(final double[] values, final double[] weights, final int begin, final int length) argument
358 evaluate(final double[] values, final double[] weights) argument
388 evaluate(final double[] values, final double mean, final int begin, final int length) argument
441 evaluate(final double[] values, final double mean) argument
490 evaluate(final double[] values, final double[] weights, final double mean, final int begin, final int length) argument
564 evaluate(final double[] values, final double[] weights, final double mean) argument
[all...]
H A DMean.java26 * <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) { argument
155 if (test(values, begin, length)) {
160 double xbar = sum.evaluate(values, begi
201 evaluate(final double[] values, final double[] weights, final int begin, final int length) argument
244 evaluate(final double[] values, final double[] weights) argument
[all...]
/external/hamcrest/src/org/hamcrest/
H A DDescription.java27 * Appends a list of values to the description.
30 T... values);
33 * Appends a list of values to the description.
36 Iterable<T> values);
43 Iterable<? extends SelfDescribing> values);
29 appendValueList(String start, String separator, String end, T... values) argument
35 appendValueList(String start, String separator, String end, Iterable<T> values) argument
42 appendList(String start, String separator, String end, Iterable<? extends SelfDescribing> values) argument
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DArrayData.java38 /** {@code non-null;} initial values to be filled into an array */
39 private final ArrayList<Constant> values; field in class:ArrayData
57 * @param values {@code non-null;} initial values to be filled into an array
60 ArrayList<Constant> values,
68 if (values == null) {
69 throw new NullPointerException("values == null");
72 int sz = values.size();
75 throw new IllegalArgumentException("Illegal number of init values");
96 this.values
59 ArrayData(SourcePosition position, CodeAddress user, ArrayList<Constant> values, Constant arrayType) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentValues.java40 private HashMap<String, Object> values = new HashMap<String, Object>(); field in class:ShadowContentValues
43 values = new HashMap<String, Object>(shadowOf(from).values);
48 values.put(key, value);
53 values.putAll(shadowOf(other).values);
58 values.put(key, value);
63 values.put(key, value);
68 values.put(key, value);
73 values
[all...]
/external/ceres-solver/include/ceres/
H A Dcrs_matrix.h49 // rows, cols and values.
52 // values array. For each row i:
57 // values[rows[i]] .. values[rows[i + 1] - 1] are the values of the
60 // cols and values contain as many entries as there are non-zeros in
75 // values = [10, 4, 2, -3, 2, 1, 2]
79 vector<double> values; member in struct:ceres::CRSMatrix
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultimapReplaceValuesTester.java52 List<V> values = Arrays.asList(sampleValues().e0, null, sampleValues().e3);
53 multimap().replaceValues(key, values);
54 assertGet(key, values);
62 List<V> values = Arrays.asList(sampleValues().e0, sampleValues().e2, sampleValues().e3);
63 multimap().replaceValues(key, values);
64 assertGet(key, values);
72 List<V> values = Arrays.asList(sampleValues().e0, sampleValues().e2, sampleValues().e3);
73 multimap().replaceValues(key, values);
74 assertGet(key, values);
75 assertEquals(size + values
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DStandardSystemPropertyTest.java29 for (StandardSystemProperty property : StandardSystemProperty.values()) {
37 for (StandardSystemProperty property : StandardSystemProperty.values()) {
43 for (StandardSystemProperty property : StandardSystemProperty.values()) {
49 for (StandardSystemProperty property : StandardSystemProperty.values()) {
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.h25 * @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/
H A DFunction.java19 import com.google.clearsilver.jsilver.values.Value;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
H A DNameFunction.java21 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;
/external/nanopb-c/generator/google/protobuf/internal/
H A Denum_type_wrapper.py42 """A utility for finding the names of enum values."""
72 for value_descriptor in self._enum_type.values]
74 def values(self): member in class:EnumTypeWrapper
75 """Return a list of the integer values in the enum.
81 for value_descriptor in self._enum_type.values]
89 for value_descriptor in self._enum_type.values]
/external/protobuf/python/google/protobuf/internal/
H A Denum_type_wrapper.py42 """A utility for finding the names of enum values."""
72 for value_descriptor in self._enum_type.values]
74 def values(self): member in class:EnumTypeWrapper
75 """Return a list of the integer values in the enum.
81 for value_descriptor in self._enum_type.values]
89 for value_descriptor in self._enum_type.values]

Completed in 602 milliseconds

1234567891011>>