Searched refs:values (Results 276 - 300 of 1772) sorted by relevance

<<11121314151617181920>>

/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DVariantValue.java17 package com.google.clearsilver.jsilver.values;
23 * Base class for values of variant types (i.e. those that can be treated as different types at
51 // TODO: Cache the result for constant values (or just get rid of this class)
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_gather.h62 LLVMValueRef * values,
/external/mockito/src/org/mockito/stubbing/
H A DOngoingStubbing.java52 * Sets consecutive return values to be returned when the method is called. E.g:
62 * @param values next return values
66 OngoingStubbing<T> thenReturn(T value, T... values); argument
/external/proguard/src/proguard/evaluation/
H A DTracedVariables.java127 if (values[index] == null)
129 producerVariables.values[index] = null;
133 other.producerVariables.values[index] = null;
151 // Account for the extra space required by Category 2 values.
189 Value value = this.values[index];
/external/v8/src/compiler/
H A Dast-graph-builder.h64 // Getters for values in the activation record.
128 // Nodes representing values in the activation record.
190 // values are stored in one list using the following layout:
203 return static_cast<int>(values()->size()) - parameters_count_ -
212 values()->at(variable->index() + 1) = node;
215 values()->at(variable->index() + parameters_count_) = node;
221 return values()->at(variable->index() + 1);
224 return values()->at(variable->index() + parameters_count_);
230 values()->push_back(node);
234 return values()
[all...]
/external/v8/test/mjsunit/
H A Dproto-accessor.js99 var values = [1, true, false, 's', Symbol()]; variable
104 for (var i = 0; i < values.length; i++) {
105 assertEquals(setProto.call(values[i], proto), undefined);
119 var valuesWithUndefined = values.concat(undefined);
H A Ddebug-evaluate-locals-optimized-double.js49 args: { names: ["i", "x0", "y0"], values: [0, 3.03, 4.04] } },
51 args: { names: ["i", "x1", "y1"], values: [1, 5.05, 6.06] } },
53 args: { names: ["i"], values: [2] } },
56 values: [3, 9.09, 10.10, undefined] } },
58 args: { names: ["i", "x4", "y4"], values: [4, 11.11, 12.12] } }
87 assertEquals(expected_args.values[j],
103 var arg_value = expected_args.values[j];
115 var arg_value = expected_args.values[j];
120 var expected_args_sum = arraySum(expected_args.values);
H A Ddebug-evaluate-locals-optimized.js41 args: { names: ["i", "x0", "y0"], values: [0, 3, 4] } },
43 args: { names: ["i", "x1", "y1"], values: [1, 5, 6] } },
45 args: { names: ["i"], values: [2] } },
47 args: { names: ["i", "x3", "y3", "z3"], values: [3, 9, 10, undefined] } },
49 args: { names: ["i", "x4", "y4"], values: [4, 11, 12] } }
78 assertEquals(expected_args.values[j],
94 var arg_value = expected_args.values[j];
106 var arg_value = expected_args.values[j];
111 var expected_args_sum = arraySum(expected_args.values);
/external/guava/guava/src/com/google/common/collect/
H A DDenseImmutableTable.java39 private final V[][] values; field in class:DenseImmutableTable
57 this.values = array;
70 V existingValue = values[rowIndex][columnIndex];
72 values[rowIndex][columnIndex] = cell.getValue();
167 return values[rowIndex][keyIndex];
191 return values[keyIndex][columnIndex];
256 : values[rowIndex][columnIndex];
270 V value = values[rowIndex][columnIndex];
276 return values[iterationOrderRow[index]][iterationOrderColumn[index]];
/external/bison/src/
H A Dmuscle-tab.c64 | Create the MUSCLE_TABLE, and initialize it with default values. |
586 muscle_percent_define_check_values (char const * const *values) argument
588 for (; *values; ++values)
590 char const * const *variablep = values;
599 for (++values; *values; ++values)
601 if (0 == strcmp (value, *values))
604 if (!*values)
[all...]
H A Doutput.c202 int *values = xnmalloc (ntokens, sizeof *values); local
204 values[i] = symbols[i]->user_token_number;
205 muscle_insert_int_table ("toknum", values,
206 values[0], 1, ntokens);
207 free (values);
281 symbol_number *values = xnmalloc (nstates, sizeof *values); local
283 values[i] = states[i]->accessing_symbol;
284 muscle_insert_symbol_number_table ("stos", values,
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DConfigResults.java198 * The slots of the second level are the numbers values:
246 double[] values = new double[NUMBERS_LENGTH];
248 values[i] = Double.NaN;
251 values[BUILD_VALUE_INDEX] = buildValue;
253 values[BASELINE_VALUE_INDEX] = baselineValue;
255 values[DELTA_VALUE_INDEX] = buildDelta;
257 return values;
264 values[BASELINE_ERROR_INDEX] = baselineError;
265 values[BUILD_ERROR_INDEX] = currentError;
266 values[DELTA_ERROR_INDE
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMultimap.java39 * An immutable {@link Multimap}. Does not permit null keys or values.
122 * value orderings, allows duplicate values, and performs better than
183 * Stores a collection of values with the same key in the built multimap.
185 * @throws NullPointerException if {@code key}, {@code values}, or any
186 * element in {@code values} is null. The builder is left in an invalid
189 public Builder<K, V> putAll(K key, Iterable<? extends V> values) { argument
192 "null key in entry: null=" + Iterables.toString(values));
195 for (V value : values) {
203 * Stores an array of values with the same key in the built multimap.
208 public Builder<K, V> putAll(K key, V... values) { argument
335 replaceValues(K key, Iterable<? extends V> values) argument
390 putAll(K key, Iterable<? extends V> values) argument
609 public ImmutableCollection<V> values() { method in class:ImmutableMultimap
[all...]
/external/deqp/modules/glshared/
H A DglsFragmentOpUtil.cpp39 inline T triQuadInterpolate (const T values[4], float xFactor, float yFactor) argument
42 return values[0] + (values[2]-values[0])*xFactor + (values[1]-values[0])*yFactor;
44 return values[3] + (values[1]-values[3])*(1.0f-xFactor) + (values[
[all...]
/external/guava/guava/src/com/google/common/math/
H A DDoubleMath.java299 // Multiplying the last (n & 0xf) values into their own accumulator gives a more accurate
339 * <li>With {@link Double#POSITIVE_INFINITY} tolerance, all non-NaN values are fuzzily equal.
361 * Compares {@code a} and {@code b} "fuzzily," with a tolerance for nearly-equal values.
365 * {@link Double#compare(double, double)}, it treats all NaN values as equal and greater than all
366 * other values (including {@link Double#POSITIVE_INFINITY}).
400 checkArgument(count > 0, "Cannot take mean of 0 values");
406 * Returns the arithmetic mean of the values. There must be at least one value, and they must all
410 public static double mean(double... values) { argument
412 for (double value : values) {
419 * Returns the arithmetic mean of the values
423 mean(int... values) argument
437 mean(long... values) argument
451 mean(Iterable<? extends Number> values) argument
465 mean(Iterator<? extends Number> values) argument
[all...]
/external/protobuf/python/google/protobuf/pyext/
H A Dextension_dict.cc83 return PyLong_FromLong(PyDict_Size(self->values));
85 return PyInt_FromLong(PyDict_Size(self->values));
136 PyObject* value = PyDict_GetItem(self->values, key);
149 PyDict_SetItem(self->values, key, sub_message);
174 PyDict_SetItem(self->values, key, py_container);
185 PyDict_SetItem(self->values, key, py_container);
212 PyDict_SetItem(self->values, key, value);
223 PyObject* value = PyDict_GetItem(self->values, extension);
233 if (PyDict_DelItem(self->values, extension) < 0) {
269 self->values
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fShaderCommonFunctionTests.cpp215 // flush too small values to zero
220 // clamp too large values
251 virtual void getInputValues (int numValues, void* const* values) const = 0;
454 m_testCtx.getLog() << TestLog::Message << (m_numValues - numFailed) << " / " << m_numValues << " values passed" << TestLog::EndMessage;
507 void getInputValues (int numValues, void* const* values) const
528 fillRandomScalars(rnd, floatRanges[precision].x(), floatRanges[precision].y(), values[0], numValues*scalarSize);
530 fillRandomScalars(rnd, intRanges[precision].x(), intRanges[precision].y(), values[0], numValues*scalarSize);
589 void getInputValues (int numValues, void* const* values) const
612 std::fill((float*)values[0], (float*)values[
[all...]
/external/aac/libAACenc/src/
H A Dbit_cnt.h175 INT FDKaacEnc_countValues(SHORT *values, INT width, INT codeBook);
177 INT FDKaacEnc_codeValues(SHORT *values, INT width, INT codeBook, HANDLE_FDK_BITSTREAM hBitstream);
/external/android-mock/src/com/google/android/testing/mocking/
H A DSdkVersion.java66 * {@link #values()} method, since that method will also return the UNKNOWN
73 for (SdkVersion version : values()) {
99 for (SdkVersion version : values()) {
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DTreeRuleReturnScope.as42 private var _values:Object = new Object(); // contains the return values
53 public function get values():Object {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
H A DX509Principal.java95 * constructor from a vector of attribute values and a vector of OIDs.
99 Vector values)
101 super(oids, values);
97 X509Principal( Vector oids, Vector values) argument
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_diagonal_matrix.cc69 double* values = tsm_->mutable_values(); local
74 layout_.push_back(new CellInfo(values + pos));
H A Dtriplet_sparse_matrix.h67 virtual const double* values() const { return values_.get(); } function in class:ceres::internal::TripletSparseMatrix
103 // the array values. Entries of the values array are copied into the
105 static TripletSparseMatrix* CreateSparseDiagonalMatrix(const double* values,
/external/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp62 Ph->values().reserveCheck(1, Arena);
63 Ph->values().push_back(nullptr);
74 Ph->values().reserve(NumPreds, Arena);
92 E = Ph->values()[0];
123 E = Ph->values()[0];
141 SExpr *E0 = simplifyToCanonicalVal(Ph->values()[0]);
142 for (unsigned i=1, n=Ph->values().size(); i<n; ++i) {
143 SExpr *Ei = simplifyToCanonicalVal(Ph->values()[i]);
/external/clang/test/Sema/
H A Dvector-cast.c14 't2' (vector of 16 'char' values) and 't1' (vector of 1 'long long' value) of different size}}
16 't1' (vector of 1 'long long' value) and 't2' (vector of 16 'char' values) of different size}}
36 f2(Y); // expected-warning {{incompatible vector types passing 't3' (vector of 4 'float' values) to parameter of type 't2' (vector of 16 'char' values)}}
54 v = ptr; // expected-error-re {{assigning to 'short_sizeof_pointer' (vector of {{[0-9]+}} 'short' values) from incompatible type 'void *'}}

Completed in 1530 milliseconds

<<11121314151617181920>>