Searched defs:values (Results 101 - 125 of 967) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/test/base/
H A Dchrome_process_util_mac.cc47 std::vector<std::string> values; local
48 base::SplitString(line, ' ', &values);
49 if (values.size() == 3) {
52 base::StringToInt(values[0], &pid);
54 base::StringToInt(values[1], &proc_info.rsz_in_kb);
55 base::StringToInt(values[2], &proc_info.vsz_in_kb);
64 // Common interface for fetching memory values from parsed ps output.
65 // We fill in both values we may get called for, even though our
/external/chromium_org/chrome/test/logging/win/
H A Dmof_data_parser.h20 // data. Callers invoke Read* methods to extract primitive data types values or
39 // Populates |values| with a pointer to an array of |size| pointer-sized
40 // values in the data.
41 bool ReadPointerArray(DWORD size, const intptr_t** values) { argument
42 return ReadPrimitiveArray(size, values);
76 template<typename T> bool ReadPrimitiveArray(DWORD size, const T** values) { argument
77 if (length_ < sizeof(**values) * size)
79 *values = reinterpret_cast<const T*>(scan_);
80 Advance(sizeof(**values) * size);
/external/chromium_org/extensions/browser/api/storage/
H A Dweak_unlimited_settings_storage.cc49 WriteOptions options, const base::DictionaryValue& values) {
50 return delegate_->Set(IGNORE_QUOTA, values);
48 Set( WriteOptions options, const base::DictionaryValue& values) argument
/external/chromium_org/rlz/test/
H A Drlz_test_helpers.cc42 std::vector<RegistryValue> values; member in struct:__anon10536::RegistryKeyData
47 // First read values.
50 data->values.clear();
51 data->values.reserve(i.ValueCount());
53 RegistryValue& value = *data->values.insert(data->values.end(),
71 // First write values.
72 for (size_t i = 0; i < data.values.size(); ++i) {
73 const RegistryValue& value = data.values[i];
80 // Next write values recursivel
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEColorMatrixElement.cpp116 // Use defaults if values is empty (SVG 1.1 15.10).
133 RefPtr<SVGNumberList> values = m_values->currentValue(); local
134 size_t size = values->length();
141 filterValues = values->toFloatVector();
/external/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_akey.c71 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values);
114 X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values)
129 for(i = 0; i < sk_CONF_VALUE_num(values); i++)
131 cnf = sk_CONF_VALUE_value(values, i);
113 v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values) argument
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp27 * Implements tracking of values copied between registers, and
61 try_constant_propagation(vec4_instruction *inst, int arg, src_reg *values[4]) argument
68 src_reg value = *values[0];
70 if (!value.equals(values[i]))
164 vec4_instruction *inst, int arg, src_reg *values[4])
171 src_reg value = *values[0];
174 if (value.file != values[i]->file ||
175 value.reg != values[i]->reg ||
176 value.reg_offset != values[i]->reg_offset ||
177 value.type != values[
163 try_copy_propagation(struct intel_context *intel, vec4_instruction *inst, int arg, src_reg *values[4]) argument
272 src_reg *values[4]; local
[all...]
/external/chromium_org/tools/gn/
H A Dconfig_values_extractors.h20 // of configs applying to it, and also config values on the target itself.
47 // null for the config values of a target itself.
58 // Returns the config holding the current config values, or NULL for those
59 // config values associated with the target itself.
70 // values on the target itself.
76 const ConfigValues& values,
80 const std::vector<T>& v = (values.*getter)();
86 // all values from the target itself and all configs that apply, and writes
98 // Writes the values out as strings with no transformation.
75 ConfigValuesToStream( const ConfigValues& values, const std::vector<T>& (ConfigValues::* getter)() const, const Writer& writer, std::ostream& out) argument
H A Dsubstitution_list.cc34 bool SubstitutionList::Parse(const std::vector<std::string>& values, argument
37 list_.resize(values.size());
38 for (size_t i = 0; i < values.size(); i++) {
39 if (!list_[i].Parse(values[i], origin, err))
/external/chromium_org/tools/relocation_packer/src/
H A Dsleb128.cc49 // Add a vector of values to the encoding.
50 void Sleb128Encoder::EnqueueAll(const std::vector<ELF::Sxword>& values) { argument
51 for (size_t i = 0; i < values.size(); ++i)
52 Enqueue(values[i]);
89 // Decode and retrieve all remaining values from the encoding.
90 void Sleb128Decoder::DequeueAll(std::vector<ELF::Sxword>* values) { argument
92 values->push_back(Dequeue());
/external/chromium_org/ui/android/java/src/org/chromium/ui/interpolators/
H A DBakedBezierInterpolator.java16 * Lookup table values.
39 * Lookup table values.
62 * Lookup table values.
85 * Lookup table values.
136 private BakedBezierInterpolator(float[] values) { argument
138 mValues = values;
/external/chromium_org/ui/gfx/
H A Dblit_unittest.cc15 // Fills the given canvas with the values by duplicating the values into each
18 // Example values = {{0x0, 0x01}, {0x12, 0xFF}} would give a canvas with:
22 void SetToCanvas(skia::PlatformCanvas* canvas, uint8 values[h][w]) { argument
31 uint8 value = values[y][x];
39 // values, where each value has been duplicated into each channel of the given
42 void VerifyCanvasValues(skia::PlatformCanvas* canvas, uint8 values[h][w]) { argument
51 uint8 value = values[y][x];
/external/chromium_org/v8/test/mjsunit/
H A Dmath-floor-of-div-nosudiv.js38 var values = [0x10000001, variable
168 // Use (values[key] | 0) to force the integer type.
169 for (var i = 0; i < values.length; i++) {
170 for (var j = 0; j < values.length; j++) {
171 assertEquals(Math.floor(div((values[i] | 0), (values[j] | 0))),
172 Math.floor((values[i] | 0) / (values[j] | 0)));
173 assertEquals(Math.floor(div(-(values[i] | 0), (values[
[all...]
H A Dmath-floor-of-div.js38 var values = [0x10000001, variable
168 // Use (values[key] | 0) to force the integer type.
169 for (var i = 0; i < values.length; i++) {
170 for (var j = 0; j < values.length; j++) {
171 assertEquals(Math.floor(div((values[i] | 0), (values[j] | 0))),
172 Math.floor((values[i] | 0) / (values[j] | 0)));
173 assertEquals(Math.floor(div(-(values[i] | 0), (values[
[all...]
H A Dsetters-on-elements.js192 var values = [3, 3.5, true]; variable
196 base_setter_test(cf[c], 0, values[s]);
197 base_setter_test(cf[c], 1, values[s]);
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-member.cpp66 T* values; member in struct:virt
/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/emma/core/java12/com/vladium/util/
H A DIntVector.java40 public int [] values () method in class:IntVector
128 final int [] values = new int [1 + (capacity << 1)];
131 for (int i = 0; i < capacity; ++ i) values [i] = m_values [i];
135 System.arraycopy (m_values, 0, values, 0, capacity);
138 m_values = values;
/external/guava/guava/src/com/google/common/collect/
H A DAbstractListMultimap.java43 * values
56 * <p>Because the values for a given key may have duplicates and follow the
67 * <p>Because the values for a given key may have duplicates and follow the
78 * <p>Because the values for a given key may have duplicates and follow the
83 @Nullable K key, Iterable<? extends V> values) {
84 return (List<V>) super.replaceValues(key, values);
102 * has {@link List} values.
112 * contain the same values in the same order. If the value orderings disagree,
82 replaceValues( @ullable K key, Iterable<? extends V> values) argument
H A DAbstractSetMultimap.java41 * values
54 * <p>Because a {@code SetMultimap} has unique values for a given key, this
65 * <p>Because a {@code SetMultimap} has unique values for a given key, this
76 * <p>Because a {@code SetMultimap} has unique values for a given key, this
87 * <p>Because a {@code SetMultimap} has unique values for a given key, this
91 * <p>Any duplicates in {@code values} will be stored in the multimap once.
94 @Nullable K key, Iterable<? extends V> values) {
95 return (Set<V>) super.replaceValues(key, values);
102 * has {@link Set} values.
124 * contain the same values
93 replaceValues( @ullable K key, Iterable<? extends V> values) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestMapEntrySetGenerator.java24 * Creates map entries using sample keys and sample values.
33 private final SampleElements<V> values; field in class:TestMapEntrySetGenerator
36 SampleElements<K> keys, SampleElements<V> values) {
38 this.values = values;
43 return SampleElements.mapEntries(keys, values);
35 TestMapEntrySetGenerator( SampleElements<K> keys, SampleElements<V> values) argument
/external/icu/icu4c/source/test/intltest/
H A Dsimplepatternformattertest.cpp92 UnicodeString values[] = { local
95 &values[0], &values[1], &values[2], &values[3], &values[4], &values[5]};
/external/jarjar/src/test/
H A Denumtest.jar ... private static final synthetic foo.EnumTest$X[] $VALUES public static final foo.EnumTest$X[] values () public ...
/external/javassist/src/main/javassist/bytecode/annotation/
H A DArrayMemberValue.java31 MemberValue[] values; field in class:ArrayMemberValue
39 values = null;
50 values = null;
56 if (values == null)
60 int size = values.length;
73 Array.set(a, i, values[i].getValue(cl, cp, method));
99 return values;
106 values = elements;
116 if (values != null) {
117 for (int i = 0; i < values
[all...]
/external/junit/src/org/junit/experimental/theories/internal/
H A DParameterizedAssertionError.java29 Collection<Object> values) {
31 Iterator<Object> iter = values.iterator();
28 join(String delimiter, Collection<Object> values) argument

Completed in 717 milliseconds

1234567891011>>