Searched refs:values (Results 126 - 150 of 2560) sorted by relevance

1234567891011>>

/external/chromium_org/tools/telemetry/telemetry/value/
H A Dstring.py44 # Buildbot's print_perf_results method likes to get lists for all values,
78 def MergeLikeValuesFromSamePage(cls, values):
79 assert len(values) > 0
80 v0 = values[0]
81 return cls._MergeLikeValues(values, v0.page, v0.name)
84 def MergeLikeValuesFromDifferentPages(cls, values,
86 assert len(values) > 0
87 v0 = values[0]
89 return cls._MergeLikeValues(values, None, name)
92 def _MergeLikeValues(cls, values, pag
[all...]
/external/chromium_org/build/
H A Dgypi_to_gn.py41 Read the values into a target like this:
51 "//path/gypi/input/values/are/relative/to")
107 def ReplaceSubstrings(values, search_for, replace_with):
111 strings occurring in "values". This is done by recursively iterating into
112 lists as well as the keys and values of dictionaries."""
113 if isinstance(values, str):
114 return values.replace(search_for, replace_with)
116 if isinstance(values, list):
117 return [ReplaceSubstrings(v, search_for, replace_with) for v in values]
119 if isinstance(values, dic
[all...]
/external/chromium_org/components/test/data/autofill/merge/tools/
H A Dreserialize_profiles_from_query.py32 values = line.split("|")
33 profiles.append(zip(types, values))
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
H A DExistsFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
H A DNotFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
H A DNumericFunction.java20 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/
H A DLengthFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
/external/chromium-trace/trace-viewer/src/base/
H A Dcolor.js17 var values;
20 values = tmp.split(',').map(function(v) {
23 if (values.length != 3)
26 parseInt(values[0]),
27 parseInt(values[1]),
28 parseInt(values[2]));
31 values = tmp.split(',').map(function(v) {
34 if (values.length != 4)
37 parseInt(values[0]),
38 parseInt(values[
[all...]
/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/media/cast/sender/
H A Dfake_software_video_encoder.cc8 #include "base/values.h"
42 base::DictionaryValue values; local
43 values.SetBoolean("key",
45 values.SetInteger("ref", encoded_image->referenced_frame_id);
46 values.SetInteger("id", encoded_image->frame_id);
47 values.SetInteger("size", frame_size_);
48 base::JSONWriter::Write(&values, &encoded_image->data);
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableRepeatable.h39 // This class represents collections of values that animate in a repeated fashion as described by the CSS Transitions spec:
46 static PassRefPtrWillBeRawPtr<AnimatableRepeatable> create(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values) argument
48 return adoptRefWillBeNoop(new AnimatableRepeatable(values));
51 const WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values() const { return m_values; } function in class:blink::AnimatableRepeatable
59 AnimatableRepeatable(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values) argument
61 ASSERT(!values.isEmpty());
62 m_values.swap(values);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DStatsReport.java54 public final Value[] values; field in class:StatsReport
56 public StatsReport(String id, String type, double timestamp, Value[] values) { argument
60 this.values = values;
66 .append(", timestamp: ").append(timestamp).append(", values: ");
67 for (int i = 0; i < values.length; ++i) {
68 builder.append(values[i].toString()).append(", ");
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Ddata_log_c.h41 const int* values,
48 const float* values,
55 const double* values,
62 const int32_t* values,
69 const uint32_t* values,
76 const int64_t* values,
/external/chromium_org/tools/auto_bisect/
H A Dmath_utils_test.py29 def AlternateMeanFunction(values):
31 return sum(values) / float(len(values))
34 for values in test_values_lists:
36 AlternateMeanFunction(values),
37 math_utils.Mean(values))
/external/oprofile/libutil++/
H A Dunique_storage.h3 * Unique storage of values
20 * Store values such that only one copy of the value
38 values.push_back(V());
81 typename id_map::value_type val(value, id_value(values.size()));
85 values.push_back(value);
94 if (id.id < values.size())
95 return values[id.id];
103 /// the contained values
104 stored_values values; member in class:unique_storage
/external/webrtc/src/system_wrappers/interface/
H A Ddata_log_c.h45 const int* values,
52 const float* values,
59 const double* values,
66 const int32_t* values,
73 const uint32_t* values,
80 const int64_t* values,
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dmalloc_hook_test.cc97 // values as integers for testing.
123 int values[2] = { 0, 0 }; local
124 EXPECT_EQ(1, TestHookList_Traverse(list, values, 2));
125 EXPECT_EQ(69, values[0]);
134 int values[2] = { 0, 0 }; local
135 EXPECT_EQ(0, TestHookList_Traverse(list, values, 2));
143 int values[2] = { 0, 0 }; local
144 EXPECT_EQ(2, TestHookList_Traverse(list, values, 2));
145 EXPECT_EQ(69, values[0]);
146 EXPECT_EQ(42, values[
156 int values[2] = { 0, 0 }; local
175 int values[2] = { 0, 0 }; local
185 int values[2] = { 0, 0 }; local
199 int values[kHookListMaxValues + 1]; local
221 int values[kHookListMaxValues + 1]; local
287 int values[kHookListMaxValues + 1]; local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dmalloc_hook_test.cc97 // values as integers for testing.
123 int values[2] = { 0, 0 }; local
124 EXPECT_EQ(1, TestHookList_Traverse(list, values, 2));
125 EXPECT_EQ(69, values[0]);
134 int values[2] = { 0, 0 }; local
135 EXPECT_EQ(0, TestHookList_Traverse(list, values, 2));
143 int values[2] = { 0, 0 }; local
144 EXPECT_EQ(2, TestHookList_Traverse(list, values, 2));
145 EXPECT_EQ(69, values[0]);
146 EXPECT_EQ(42, values[
156 int values[2] = { 0, 0 }; local
175 int values[2] = { 0, 0 }; local
185 int values[2] = { 0, 0 }; local
199 int values[kHookListMaxValues + 1]; local
221 int values[kHookListMaxValues + 1]; local
287 int values[kHookListMaxValues + 1]; local
[all...]
/external/aac/libAACenc/src/
H A Dbit_cnt.cpp109 static void FDKaacEnc_count1_2_3_4_5_6_7_8_9_10_11(const SHORT *RESTRICT values, argument
127 t0= values[i+0];
128 t1= values[i+1];
129 t2= values[i+2];
130 t3= values[i+3];
185 static void FDKaacEnc_count3_4_5_6_7_8_9_10_11(const SHORT *RESTRICT values, argument
203 t0= values[i+0];
204 t1= values[i+1];
205 t2= values[i+2];
206 t3= values[
256 FDKaacEnc_count5_6_7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
311 FDKaacEnc_count7_8_9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
361 FDKaacEnc_count9_10_11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
408 FDKaacEnc_count11(const SHORT *RESTRICT values, const INT width, INT *bitCount) argument
449 FDKaacEnc_countEsc(const SHORT *RESTRICT values, const INT width, INT *RESTRICT bitCount) argument
519 FDKaacEnc_bitCount(const SHORT *values, const INT width, INT maxVal, INT *bitCount) argument
545 FDKaacEnc_countValues(SHORT *RESTRICT values, INT width, INT codeBook) argument
779 FDKaacEnc_codeValues(SHORT *RESTRICT values, INT width, INT codeBook, HANDLE_FDK_BITSTREAM hBitstream) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/
H A DJSArticle.js110 if (!examples[i].values)
112 var language = examples[i].values["Language"];
113 var code = examples[i].values["Code"];
114 var liveUrl = examples[i].values["LiveURL"];
115 var description = examples[i].values["Description"];
124 if (!parameters[i].values)
126 var name = parameters[i].values["Name"];
127 var dataType = parameters[i].values["Data type"];
128 var optional = parameters[i].values["Optional"];
129 var description = parameters[i].values["Descriptio
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.cpp59 // Check against JavaScript giving us bogus floating-point values.
72 // If values have been explicitly scheduled on the timeline, then use the exact value.
104 void AudioParam::calculateSampleAccurateValues(float* values, unsigned numberOfValues) argument
106 bool isSafe = context() && context()->isAudioThread() && values && numberOfValues;
111 calculateFinalValues(values, numberOfValues, true);
114 void AudioParam::calculateFinalValues(float* values, unsigned numberOfValues, bool sampleAccurate) argument
116 bool isGood = context() && context()->isAudioThread() && values && numberOfValues;
124 // Calculate sample-accurate (a-rate) intrinsic values.
125 calculateTimelineValues(values, numberOfValues);
134 values[
154 calculateTimelineValues(float* values, unsigned numberOfValues) argument
[all...]
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DBlendMinMaxTest.cpp22 float values[4]; member in struct:BlendMinMaxTest::Color
39 colors[i].values[j] = (rand() % 255) / 255.0f;
48 glUniform4f(mColorLocation, color.values[0], color.values[1], color.values[2], color.values[3]);
58 getExpected(blendMin, color.values[0], prevColor[0]),
59 getExpected(blendMin, color.values[1], prevColor[1]),
60 getExpected(blendMin, color.values[2], prevColor[2]),
61 getExpected(blendMin, color.values[
[all...]
/external/ceres-solver/internal/ceres/
H A Dproblem.cc149 void Problem::AddParameterBlock(double* values, int size) { argument
150 problem_impl_->AddParameterBlock(values, size);
153 void Problem::AddParameterBlock(double* values, argument
156 problem_impl_->AddParameterBlock(values, size, local_parameterization);
163 void Problem::RemoveParameterBlock(double* values) { argument
164 problem_impl_->RemoveParameterBlock(values);
167 void Problem::SetParameterBlockConstant(double* values) { argument
168 problem_impl_->SetParameterBlockConstant(values);
171 void Problem::SetParameterBlockVariable(double* values) { argument
172 problem_impl_->SetParameterBlockVariable(values);
175 SetParameterization( double* values, LocalParameterization* local_parameterization) argument
186 SetParameterLowerBound(double* values, int index, double lower_bound) argument
192 SetParameterUpperBound(double* values, int index, double upper_bound) argument
254 GetResidualBlocksForParameterBlock( const double* values, vector<ResidualBlockId>* residual_blocks) const argument
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DDeviceSensors.java195 sensorChanged(event.sensor.getType(), event.values);
199 void sensorChanged(int type, float[] values) { argument
203 gotAccelerationIncludingGravity(values[0], values[1], values[2]);
208 gotAcceleration(values[0], values[1], values[2]);
213 gotRotationRate(values[0], values[
282 computeDeviceOrientationFromRotationMatrix(float[] R, double[] values) argument
[all...]
/external/chromium_org/content/browser/resources/media/
H A Ddata_series.js40 var values = [];
42 values.push(this.dataPoints_[i].value);
47 values: JSON.stringify(values),
83 * Returns a list containing the values of the data series at |count|
85 * Caches values, so showing/hiding individual data series is fast.
88 // Use cached values, if we can.
104 * Returns the cached |values| in the specified time period.
107 var values = [];
117 values[
[all...]

Completed in 2048 milliseconds

1234567891011>>