Searched refs:values (Results 26 - 50 of 2560) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCStatsReport.mm39 NSString* format = @"id: %@, type: %@, timestamp: %f, values: %@";
44 self.values];
56 NSMutableArray* values =
57 [NSMutableArray arrayWithCapacity:statsReport.values.size()];
58 webrtc::StatsReport::Values::const_iterator it = statsReport.values.begin();
59 for (; it != statsReport.values.end(); ++it) {
62 [values addObject:pair];
64 _values = values;
/external/valgrind/main/none/tests/s390x/
H A Dtroo.stdout.exp2 the translated values are
4 the translated values are
6 the translated values are ff bb dd ab ca
8 the translated values are ff bb dd ab ca bc cc da ea aa
10 the translated values are
12 the translated values are ff
14 the translated values are ff bb dd ab ca bc cc da
H A Dtrot.stdout.exp2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is bbbb ccdd ffff
10 the translated values is bbbb ccdd ffff cccc abab caca bcbc cccc dada eaea
12 the translated values is bbbb ccdd 0 0 0
14 the translated values is bbbb ccdd ffff 0 0
16 the translated values is bbbb ccdd ffff cccc abab caca bcbc cccc dada eaea
H A Dtrto.stdout.exp2 the translated values is
4 the translated values is
6 the translated values is
8 the translated values is cc dd ff cc ab ca
10 the translated values is cc dd ff cc ab ca bc cc dd ea
12 the translated values is cc dd 0 0 0 0
14 the translated values is cc dd 0 0 0 0
16 the translated values is cc dd ff cc ab ca bc cc dd 0
/external/chromium_org/tools/telemetry/telemetry/value/
H A Dlist_of_string_values.py10 def __init__(self, page, name, units, values,
15 if values is not None:
16 assert isinstance(values, list)
17 assert len(values) > 0
18 assert all(isinstance(v, basestring) for v in values)
19 none_values.ValidateNoneValueReason(values, none_value_reason)
20 self.values = values
38 repr(self.values),
49 return self.values
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/
H A Dstatistics.js28 this.max = function (values) {
29 return Math.max.apply(Math, values);
32 this.min = function (values) {
33 return Math.min.apply(Math, values);
36 this.sum = function (values) {
37 return values.reduce(function (a, b) { return a + b; }, 0);
40 this.squareSum = function (values) {
41 return values.reduce(function (sum, value) { return sum + value * value;}, 0);
86 this.confidenceInterval = function (values, probability) {
87 var sum = this.sum(values);
[all...]
/external/chromium_org/tools/auto_bisect/
H A Dmath_utils.py11 """Calculates the truncated mean of a set of values.
13 Note that this isn't just the mean of the set of values with the highest
14 and lowest values discarded; the non-discarded values are also weighted
15 differently depending how many values are discarded.
18 data_set: Non-empty list of values.
26 TypeError: The data set was empty after discarding values.
41 # values.
55 def Mean(values):
56 """Calculates the arithmetic mean of a list of values
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java29 private int[] values; field in class:IntList
34 /** whether the values are currently sorted */
87 values = new int[initialCapacity];
103 result = (result * 31) + values[i];
131 if (values[i] != otherList.values[i]) {
150 sb.append(values[i]);
177 return values[n];
198 values[n] = value;
219 values[siz
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkScalar.cpp14 const SkScalar values[], int length) {
17 SkASSERT(values != NULL);
25 // Could use sentinel values to eliminate conditionals, but since the
28 return values[length-1];
30 return values[0];
35 return SkScalarInterp(values[right-1], values[right], fract);
13 SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[], const SkScalar values[], int length) argument
/external/skia/src/core/
H A DSkScalar.cpp14 const SkScalar values[], int length) {
17 SkASSERT(values != NULL);
25 // Could use sentinel values to eliminate conditionals, but since the
28 return values[length-1];
30 return values[0];
35 return SkScalarInterp(values[right-1], values[right], fract);
13 SkScalarInterpFunc(SkScalar searchKey, const SkScalar keys[], const SkScalar values[], int length) argument
/external/valgrind/main/none/tests/ppc32/
H A Djm-misc.stdout.exp2 dcbtct with various hint values completes with no exceptions
4 dcbtds with various hint values completes with no exceptions
6 dcbtst with various hint values completes with no exceptions
/external/valgrind/main/none/tests/ppc64/
H A Djm-misc.stdout.exp2 dcbtct with various hint values completes with no exceptions
4 dcbtds with various hint values completes with no exceptions
6 dcbtst with various hint values completes with no exceptions
/external/chromium_org/chrome/common/extensions/
H A Dcommand.cc11 #include "base/values.h"
22 namespace values = manifest_values;
32 return command_name != values::kPageActionCommandEvent &&
33 command_name != values::kBrowserActionCommandEvent;
37 return accelerator != values::kKeyMediaNextTrack &&
38 accelerator != values::kKeyMediaPlayPause &&
39 accelerator != values::kKeyMediaPrevTrack &&
40 accelerator != values::kKeyMediaStop;
49 if (platform_key != values::kKeybindingPlatformWin &&
50 platform_key != values
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_matrix.h79 // MatrixRef m(cell->values, row_stride, col_stride);
88 : values(NULL) {
92 : values(ptr) {
95 double* values; member in struct:ceres::internal::CellInfo
119 // Zero out the values of the array. The structure of the matrix
/external/chromium_org/chrome/browser/ui/tabs/
H A Dpinned_tab_test_utils.cc18 const std::vector<StartupTab>& values) {
20 for (size_t i = 0; i < values.size(); ++i) {
23 result += TabToString(values[i]);
17 TabsToString( const std::vector<StartupTab>& values) argument
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Ddata_log_c_helpers_unittest.c71 int values[kTestArrayLen] = {1, 2, 3, 4}; local
72 return WebRtcDataLog_InsertArray_int(kTableName, kColumnName2, values,
81 float values[kTestArrayLen] = {1.0f, 2.0f, 3.0f, 4.0f}; local
82 return WebRtcDataLog_InsertArray_float(kTableName, kColumnName2, values,
91 double values[kTestArrayLen] = {1.0, 2.0, 3.0, 4.0}; local
92 return WebRtcDataLog_InsertArray_double(kTableName, kColumnName2, values,
101 int32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
102 return WebRtcDataLog_InsertArray_int32(kTableName, kColumnName2, values,
111 uint32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
112 return WebRtcDataLog_InsertArray_uint32(kTableName, kColumnName2, values,
121 int64_t values[kTestArrayLen] = {1, 2, 3, 4}; local
[all...]
/external/webrtc/src/system_wrappers/source/
H A Ddata_log_c_helpers_unittest.c71 int values[kTestArrayLen] = {1, 2, 3, 4}; local
72 return WebRtcDataLog_InsertArray_int(kTableName, kColumnName2, values,
81 float values[kTestArrayLen] = {1.0f, 2.0f, 3.0f, 4.0f}; local
82 return WebRtcDataLog_InsertArray_float(kTableName, kColumnName2, values,
91 double values[kTestArrayLen] = {1.0, 2.0, 3.0, 4.0}; local
92 return WebRtcDataLog_InsertArray_double(kTableName, kColumnName2, values,
101 int32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
102 return WebRtcDataLog_InsertArray_int32(kTableName, kColumnName2, values,
111 uint32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
112 return WebRtcDataLog_InsertArray_uint32(kTableName, kColumnName2, values,
121 int64_t values[kTestArrayLen] = {1, 2, 3, 4}; local
[all...]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DArrayRegion.java31 private Value[] values; field in class:ArrayRegion
39 values = new Value[length];
47 return values[index];
55 values[index] = value;
/external/chromium_org/third_party/skia/src/animator/
H A DSkAnimateProperties.h18 SK_PROPERTY(values)
/external/chromium_org/tools/grit/grit/tool/
H A Dtransl2tc_unittest.py105 values = translations.values()
108 self.failUnless('Ein' in values)
109 self.failUnless('NUMBIRDS Vogeln' in values)
110 self.failUnless('ITEM von COUNT' in values)
111 self.failUnless(values.count('Hallo') == 1)
112 self.failIf('Dass war die alte Version' in values)
113 self.failIf(':' in values)
114 self.failIf('Dokument FILENAME ist entfernt worden' in values)
115 self.failIf('Nicht verwendet' in values)
[all...]
/external/clang/test/CodeGenCXX/
H A Dvariadic-templates.cpp15 int values[sizeof...(T)+1] = { T::value... }; local
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DSettings.java68 /** Bitfield of which flags that values. */
77 /** Flag values. */
78 private final int[] values = new int[COUNT]; field in class:Settings
82 Arrays.fill(values, 0);
86 if (id >= values.length) {
103 values[id] = value;
115 return values[id];
126 /** Returns the number of settings that have values assigned. */
134 return (bit & set) != 0 ? values[UPLOAD_BANDWIDTH] : defaultValue;
140 return (bit & set) != 0 ? values[HEADER_TABLE_SIZ
[all...]
/external/skia/src/animator/
H A DSkAnimateProperties.h18 SK_PROPERTY(values)
/external/chromium_org/google_apis/gcm/engine/
H A Daccount_mapping.cc83 std::vector<std::string> values; local
84 Tokenize(value, kSeparator, &values);
85 if (values.size() != kSizeWithNoMessage &&
86 values.size() != kSizeWithMessage) {
90 if (values[kEmailIndex].empty() ||
91 values[kStatusChangeTimestampIndex].empty() ||
92 values[kStatusIndex].empty()) {
96 if (values.size() == kSizeWithMessage && values[kMessageIdIndex].empty())
100 if (!StringToStatus(values[kStatusInde
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_params.c262 const VGfloat * values)
268 if ((count && !values) || !count_in_bounds(type, count) || !is_aligned(values)) {
293 vegaSeti(type, floor(values[0]));
298 VGuint *x = (VGuint*)values;
300 state->scissor_rects[i].f = values[i];
311 state->color_transform_values[i] = values[i];
317 state->stroke.line_width.f = values[0];
318 state->stroke.line_width.i = float_to_int_floor(*((VGuint*)(values)));
321 state->stroke.miter_limit.f = values[
261 vegaSetfv(VGParamType type, VGint count, const VGfloat * values) argument
389 vegaSetiv(VGParamType type, VGint count, const VGint * values) argument
764 vegaGetfv(VGParamType type, VGint count, VGfloat * values) argument
865 vegaGetiv(VGParamType type, VGint count, VGint * values) argument
1100 vegaSetParameterfv(VGHandle object, VGint paramType, VGint count, const VGfloat * values) argument
1216 vegaSetParameteriv(VGHandle object, VGint paramType, VGint count, const VGint * values) argument
1522 vegaGetParameterfv(VGHandle object, VGint paramType, VGint count, VGfloat * values) argument
1608 vegaGetParameteriv(VGHandle object, VGint paramType, VGint count, VGint * values) argument
[all...]

Completed in 1744 milliseconds

1234567891011>>