HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 1 - 25 of 9255) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/COFF/
secrel-variant.s 6 values: label
11 movq values@SECREL32(%rax), %rcx
12 movq values@SECREL32+8(%rax), %rax
16 // CHECK-NEXT: 0x3 IMAGE_REL_AMD64_SECREL values
17 // CHECK-NEXT: 0xA IMAGE_REL_AMD64_SECREL values
  /external/chromium-trace/catapult/dashboard/dashboard/
math_utils.py 10 def Mean(values):
12 if not values:
14 return sum(values) / float(len(values))
17 def Median(values):
19 if not values:
21 sorted_values = sorted(values)
22 mid = len(values) / 2
23 if len(values) % 2 == 1:
28 def Variance(values)
    [all...]
  /external/clang/test/CodeGen/
2004-01-01-UnknownInitSize.c 10 int values []; member in struct:one
  /external/hamcrest/src/org/hamcrest/internal/
SelfDescribingValueIterator.java 8 private Iterator<T> values; field in class:SelfDescribingValueIterator
10 public SelfDescribingValueIterator(Iterator<T> values) {
11 this.values = values;
15 return values.hasNext();
19 return new SelfDescribingValue<T>(values.next());
23 values.remove();
  /cts/common/util/tests/src/com/android/compatibility/common/util/
StatTest.java 31 double[] values = new double[100]; local
33 values[i] = i;
35 assertEquals(95, (int) Stat.get95PercentileValue(values));
37 values = new double[1000];
39 values[i] = i;
41 assertEquals(950, (int) Stat.get95PercentileValue(values));
43 values = new double[100];
45 values[i] = i * i;
47 assertEquals(95 * 95, (int) Stat.get95PercentileValue(values));
54 double[] values = new double[]{0, 1, 2, 3, 4} local
71 double[] values = new double[]{0, 1, 2, 3, 4}; local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
WindowedMean.java 19 /** A simple class keeping track of the mean of a stream of values within a certain window. the WindowedMean will only return a
25 float values[]; field in class:WindowedMean
32 * only return meaning full values if at least window_size values have been added.
36 values = new float[window_size];
41 return added_values >= values.length;
44 /** clears this WindowedMean. The class will only return meaningful values after enough data has been added again. */
48 for (int i = 0; i < values.length; i++)
49 values[i] = 0;
57 if (added_values < values.length)
    [all...]
CumulativeDistribution.java 6 * It can be used in scenarios where there are values with different probabilities
25 private Array<CumulativeValue> values; field in class:CumulativeDistribution
28 values = new Array<CumulativeValue>(false, 10, CumulativeValue.class);
33 values.add(new CumulativeValue(value, 0, intervalSize));
38 values.add(new CumulativeValue(value, 0, 0));
44 for(int i=0; i < values.size; ++i){
45 sum += values.items[i].interval;
46 values.items[i].frequency = sum;
53 for(int i=0; i < values.size; ++i){
54 sum += values.items[i].interval
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
LegacyContactsProviderTest.java 68 ContentValues values = new ContentValues(); local
69 putContactValues(values);
71 Uri uri = mResolver.insert(People.CONTENT_URI, values);
72 assertStoredValues(uri, values);
73 assertSelection(People.CONTENT_URI, values, "people", People._ID, ContentUris.parseId(uri));
77 ContentValues values = new ContentValues(); local
78 putContactValues(values);
80 Uri uri = mResolver.insert(People.CONTENT_URI, values);
82 assertStoredValues(uri, values);
83 assertSelection(People.CONTENT_URI, values, "people", People._ID, personId)
97 ContentValues values = new ContentValues(); local
114 ContentValues values = new ContentValues(); local
133 ContentValues values = new ContentValues(); local
140 ContentValues values = new ContentValues(); local
182 ContentValues values = new ContentValues(); local
231 ContentValues values = new ContentValues(); local
253 ContentValues values = new ContentValues(); local
303 ContentValues values = new ContentValues(); local
323 ContentValues values = new ContentValues(); local
356 ContentValues values = new ContentValues(); local
384 ContentValues values = new ContentValues(); local
427 ContentValues values = new ContentValues(); local
456 ContentValues values = new ContentValues(); local
526 ContentValues values = new ContentValues(); local
563 ContentValues values = new ContentValues(); local
591 ContentValues values = new ContentValues(); local
611 ContentValues values = new ContentValues(); local
631 ContentValues values = new ContentValues(); local
641 ContentValues values = new ContentValues(); local
657 ContentValues values = new ContentValues(); local
674 ContentValues values = new ContentValues(); local
693 ContentValues values = new ContentValues(); local
715 ContentValues values = new ContentValues(); local
762 ContentValues values = new ContentValues(); local
860 ContentValues values = new ContentValues(); local
947 ContentValues values = new ContentValues(); local
959 ContentValues values = new ContentValues(); local
    [all...]
  /frameworks/base/core/java/android/transition/
VisibilityPropagation.java 43 public void captureValues(TransitionValues values) {
44 View view = values.view;
45 Integer visibility = (Integer) values.values.get(Visibility.PROPNAME_VISIBILITY);
49 values.values.put(PROPNAME_VISIBILITY, visibility);
56 values.values.put(PROPNAME_VIEW_CENTER, loc);
65 * Returns {@link android.view.View#getVisibility()} for the View at the time the values
67 * @param values The TransitionValues captured at the start or end of the Transition
    [all...]
  /external/proguard/src/proguard/evaluation/
Stack.java 38 protected Value[] values; field in class:Stack
45 * space required by Category 2 values.
49 values = new Value[maxSize];
58 // Create the values array.
59 this(stack.values.length);
68 * operations, accounting for the double space required by Category 2 values.
81 // Is the values array large enough?
82 if (maxSize > values.length)
85 values = new Value[maxSize];
96 * Copies the values of the given Stack into this Stack
    [all...]
  /external/clang/test/Analysis/
region-store.c 27 int values[length]; local
28 values[i] = 4;
29 return values[0]; // no-warning
43 void testConstraintOnRegionOffset(int *values, int length, int i){
44 if (values[1] == 4) {
45 values[i] = 5;
46 clang_analyzer_eval(values[1] == 4);// expected-warning {{UNKNOWN}}
50 int initArray(int *values);
51 void testConstraintOnRegionOffsetStack(int *values, int length, int i) {
52 if (values[0] == 4)
    [all...]
  /frameworks/base/core/java/android/hardware/
SensorEvent.java 22 * course the sensor's {@link SensorEvent#values data}.
37 * screen. In this system, coordinates behind the screen have negative Z values.
59 * The length and contents of the {@link #values values} array depends on
65 * Sensor.TYPE_ACCELEROMETER}:</h4> All values are in SI units (m/s^2)
68 * <li> values[0]: Acceleration minus Gx on the x-axis </li>
69 * <li> values[1]: Acceleration minus Gy on the y-axis </li>
70 * <li> values[2]: Acceleration minus Gz on the z-axis </li>
117 * gravity[0] = alpha * gravity[0] + (1 - alpha) * event.values[0];
118 * gravity[1] = alpha * gravity[1] + (1 - alpha) * event.values[1]
582 public final float[] values; field in class:SensorEvent
    [all...]
TriggerEvent.java 38 * The length and contents of the {@link #values values} array depends on
46 public final float[] values; field in class:TriggerEvent
60 values = new float[size];
  /external/v8/test/webkit/
math-transforms.js 30 var values = {
49 for (var name in values) {
52 shouldBe("values." + name + " * 1", "+values." + name);
53 shouldBe("values." + name + " * 1", stringify(values[numForStr]));
55 shouldBe("1 * values." + name, "+values." + name);
56 shouldBe("1 * values." + name, stringify(values[numForStr]))
    [all...]
  /external/fio/t/
ieee754.c 4 static double values[] = { -17.23, 17.23, 123.4567, 98765.4321, 0.0 }; variable
14 i = fio_double_to_uint64(values[j]);
16 printf("%f -> %f\n", values[j], f);
18 } while (values[j] != 0.0);
  /external/llvm/tools/llvm-c-test/
metadata.c 20 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; local
23 LLVMAddNamedMetadataOperand(m, "name", LLVMMDNode(values, 1));
32 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; local
38 LLVMMDNode(values, 1));
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
GenericConverter.java 25 public static <T> String convertArrayList(ArrayList<T> values) {
26 return convert(values);
30 public static String convertLinkedList(LinkedList<?> values) {
31 return convert(values);
34 private static <T> String convert(List<T> values) {
35 if (values == null) {
39 for (T val : values) {
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
datalogger_outputs.h 23 void inv_get_sensor_type_gyro_float(float *values, int8_t *accuracy,
25 void inv_get_sensor_type_accel_float(float *values, int8_t *accuracy,
28 float *values, int8_t *accuracy, inv_time_t *timestamp);
29 void inv_get_sensor_type_quat_float(float *values, int *accuracy,
31 void inv_get_sensor_type_gravity_float(float *values, int *accuracy,
33 void inv_get_sensor_type_rotation_vector_float(float *values, int *accuracy,
37 void inv_get_sensor_type_gyro_raw_short(short *values,
39 void inv_get_sensor_type_gyro_raw_body_float(float *values,
41 void inv_get_sensor_type_accel_raw_short(short *values,
43 void inv_get_sensor_type_compass_raw_short(short *values,
    [all...]
  /libcore/luni/src/test/java/libcore/io/
MemoryTest.java 26 int[] values = { 3, 7, 31, 127, 8191, 131071, 524287, 2147483647 }; local
27 int[] swappedValues = new int[values.length];
28 for (int i = 0; i < values.length; ++i) {
29 swappedValues[i] = Integer.reverseBytes(values[i]);
34 byte[] array = (byte[]) runtime.newNonMovableArray(byte.class, scale * values.length + 1);
42 Memory.pokeIntArray(ptr, values, 0, values.length, false);
43 assertIntsEqual(values, ptr, false);
47 Memory.pokeIntArray(ptr, values, 0, values.length, true)
67 long[] values = { 0x1020304050607080L, 0xffeeddccbbaa9988L }; local
108 short[] values = { 0x0001, 0x0020, 0x0300, 0x4000 }; local
    [all...]
  /packages/providers/DownloadProvider/tests/public_api_access/src/com/android/providers/downloads/public_api_access_tests/
PublicApiAccessTest.java 70 ContentValues values = buildValidValues(); local
71 values.put(Downloads.Impl.COLUMN_TITLE, "foo");
72 values.put(Downloads.Impl.COLUMN_DESCRIPTION, "foo");
73 values.put(Downloads.Impl.COLUMN_MIME_TYPE, "foo");
74 values.put(Downloads.Impl.COLUMN_NOTIFICATION_PACKAGE, "foo");
75 values.put(Downloads.Impl.COLUMN_ALLOWED_NETWORK_TYPES, 0);
76 values.put(Downloads.Impl.COLUMN_ALLOW_ROAMING, true);
77 values.put(Downloads.Impl.RequestHeaders.INSERT_KEY_PREFIX + "0", "X-Some-Header: value");
78 mContentResolver.insert(Downloads.Impl.CONTENT_URI, values);
82 ContentValues values = new ContentValues() local
92 ContentValues values = buildValidValues(); local
98 ContentValues values = buildValidValues(); local
106 ContentValues values = buildValidValues(); local
120 ContentValues values = buildValidValues(); local
127 ContentValues values = buildValidValues(); local
    [all...]
  /external/easymock/src/org/easymock/
Capture.java 35 private final List<T> values = new ArrayList<T>(2); field in class:Capture
58 values.clear();
65 return !values.isEmpty();
77 if (values.isEmpty()) {
80 if (values.size() > 1) {
84 return values.get(values.size() - 1);
88 * Return all captured values. It returns the actual list so you can modify
91 * @return The currently captured values
94 return values;
    [all...]
  /external/chromium-trace/catapult/experimental/heatmap/
smoothness.js 1 var smoothnessData = {"Android Nexus9 Perf": [{"start_time": 1445526839.002939, "end_time": 1445539366.950079, "user_story_runs": [{"user_story": "ESPN", "start_time": 1445539144.367945, "values": [16.610249999910593, 33.314500000327826, 16.667333000339568, 16.692082999274135, 16.66391700040549, 16.680499999783933, 16.62683300022036, 17.848833999596536, 15.498333000577986, 16.689832999370992, 16.653084000572562, 16.655915999785066, 16.663417000323534, 16.669999999925494, 16.64691699948162, 16.667833000421524, 16.6834169998765, 16.645415999926627, 17.788166999816895, 15.543667000718415, 16.662583000026643, 16.680832999758422, 16.651999999769032, 16.66108400002122, 16.66566599998623, 16.66674999985844, 16.66666700039059, 16.66249999962747, 16.68841699976474, 16.641416000202298, 16.664334000088274, 16.667249999940395, 16.678749999962747, 16.702750000171363, 16.773665999993682, 16.5244169998914, 16.651583000086248, 16.66216699965298, 16.673917000181973, 16.66866600047797, 16.66116699948907, 16.648583000525832, 16.69258299935609, 16.64850000012666, 16.651084000244737, 16.684000000357628, 16.694499999284744, 16.615750000812113, 16.675332999788225, 16.656832999549806, 16.68033399991691, 16.65383299998939, 16.660667000338435, 16.666333000175655, 17.92799999937415, 15.401167000643909, 16.667665999382734, 17.96841700002551, 15.375417000614107, 16.651832999661565, 17.863667000085115, 15.481250000186265, 16.649833000265062, 16.665666999295354, 16.66124999988824, 16.659750000573695], "end_time": 1445539149.062093}, {"user_story": "Pinterest", "start_time": 1445539144.367945, "values": [49.97649999987334, 16.664916000328958, 16.66733399964869, 16.662000000476837, 19.367165999487042, 13.978250000625849, 16.699667000211775, 16.637166999280453, 33.32475000061095, 16.647499999962747, 16.65599999949336, 16.68933300022036, 16.66766699962318, 16.668833000585437, 19.48058299999684, 13.831416999921203, 16.67358299996704, 16.681334000080824, 16.649249999783933, 16.720750000327826, 16.626832999289036, 16.64133300073445, 16.671583999879658, 16.661082999780774, 16.6603330001235, 16.672833999618888, 16.640250000171363, 16.688916000537574, 16.64949999935925, 16.66775000002235, 16.676167000085115, 16.673917000181973, 16.666166000068188, 16.709999999962747, 16.65341699961573, 16.628583000041544, 16.801417000591755, 16.51824999973178, 16.673082999885082, 16.67166700027883, 16.647832999937236, 17.697250000201166, 16.854499999433756, 15.44633400067687, 16.64833299908787, 17.748583000153303, 16.625, 15.638083999976516, 17.766250000335276, 16.63558300025761, 15.601166999898851, 16.677749999798834, 16.680916000157595, 16.634750000201166, 16.665583999827504, 16.656166000291705, 16.65433399938047, 17.677083000540733, 15.65474999975413, 16.677749999798834, 17.651750000193715, 15.6806669998914, 16.663916000165045, 16.685417000204325, 16.636082999408245, 16.676250000484288, 16.670833999291062, 16.663750000298023, 16.657749000005424, 16.677500000223517, 16.674833999946713, 16.689582999795675, 16.6419170005247, 16.65874999947846, 16.643749999813735, 16.673750000074506, 16.651916000060737, 16.66641699988395, 16.66041700076312, 16.688332999125123, 16.642583000473678, 16.688000000081956, 16.67574999947101, 16.632334000431, 17.692332999780774, 16.667333000339568, 15.651750000193715, 16.665749999694526, 16.675583999603987, 16.69066600035876, 16.68874999973923, 16.59108400065452, 16.661165999248624, 16.681917000561953, 16.676582999527454, 16.657250000163913, 16.660583999939263, 16.668916000053287, 16.654000000096858, 17.586667000316083, 15.748999999836087, 16.687667000107467, 17.61699999962002, 15.86391600035131, 16.472583999857306, 16.670749999582767, 17.684833000414073, 15.638749999925494, 16.71100000012666, 16.678666999563575, 16.62283300049603, 16.68374999985099, 16.693583000451326, 16.725249999202788, 16.58200000040233, 16.670667000114918, 16.666999999433756, 16.679500000551343, 33.506916999816895, 16.63741600047797, 16.650249999947846, 16.662250000052154, 16.50841699913144, 16.683000000193715, 17.7853330001235, 15.5271669998765, 16.675499999895692, 16.65908300038427, 16.673499999567866, 16.648917000740767, 16.659166999161243, 16.68350000027567, 16.639082999899983, 16.67475000023842, 16.68366700038314, 16.655582999810576, 16.65258300025016, 16.677083999849856, 16.657250000163913, 16.669749999418855, 16.656082999892533, 17.95016700029373, 15.424832999706268, 16.641499999910593, 16.894167000427842, 16.40775000024587, 16.705165999941528, 16.6324999993667, 16.68350000027567, 16.96458400040865, 18.635082999244332, 15.024000000208616, 16.059000000357628, 16.740415999665856, 16.807250000536442, 16.626583999954164, 16.6080829994753, 16.56533300038427, 17.868749999441206, 16.43350000027567, 15.628250000067055, 16.78716699965298, 16.80716700013727, 16.456666000187397, 16.626916999928653, 16.668250000104308, 16.668666999787092, 16.675083000212908, 16.634166999720037, 16.678250000812113, 18.38991599995643, 15.123916999436915, 16.49108299985528, 16.639834000729024, 16.870915999636054, 16.458666999824345, 16.913332999683917, 16.63791700080037, 16.444332999177277, 16.88383400067687, 16.624582999385893, 16.698750000447035, 16.734333000145853, 16.569749999791384, 16.51416699960828, 16.63575000036508, 16.83333299960941, 16.52875000052154, 16.78858399949968, 16.705333000048995, 16.488750000484288, 16.644666999578476, 17.989666000008583, 15.566333999857306, 16.520666000433266, 16.743916999548674, 16.547167000360787, 16.717166000045836, 16.812834000214934, 16.515916000120342, 16.575999999418855, 16.881916999816895, 16.449750000610948, 16.934999999590218, 16.481500000692904, 16.665416999720037, 16.668332999572158, 16.662500000558794, 16.85866699926555, 16.472083000466228, 16.66524999961257, 16.666000000201166, 16.676667000167072, 16.653916000388563, 16.66399999987334, 16.67975000012666, 16.651749999262393, 16.665334000252187, 16.664416000247, 16.73516699951142, 16.59675000049174, 16.58041699975729, 16.696999999694526, 16.865333000198007, 16.435250000096858, 16.90658299997449, 16.556917000561953, 16.52724999934435, 16.827750000171363, 16.498999999836087, 16.67333300039172, 16.807916999794543, 16.6630830001086, 17.962584000080824, 15.234749999828637, 16.800998999737203, 16.54850000049919, 16.65308399964124, 16.64350000023842, 16.689582999795675, 16.643916999921203, 16.770500000566244, 16.58108299970627, 16.648416999727488, 16.82975000049919, 16.485165999270976, 16.664667000062764, 16.702667000703514, 17.662583000026643, 15.648000000044703, 16.667582999914885, 16.65308399964124, 16.663499999791384, 16.660833000205457, 16.66958300024271, 16.65958399977535, 16.711833000183105, 16.621499999426305, 16.675500000827014, 16.654582999646664, 16.6779169999063, 16.652666999958456, 16.701249999925494, 16.65749999973923, 16.646750000305474, 16.658499999903142, 16.66333300061524, 16.663332999683917, 16.706833999603987, 16.6535000000149, 16.65000000037253, 16.671249999664724, 16.676500000059605, 16.63433300051838, 16.663332999683917, 16.664416999556124, 16.66391700040549, 16.667500000447035, 16.683999999426305, 16.644000000320375, 16.781832999549806, 16.56641700025648, 16.693583000451326, 16.63008299935609, 16.65958399977535, 17.559500000439584, 15.782165999524295, 16.672750000841916, 16.64141699951142, 16.66158299986273, 16.921250000596046], "end_time": 1445539149.062093}, {"user_story": "LinkedIn", "start_time": 1445539144.367945, "values": [16.651583000086248, 16.624750000424683, 16.579916999675333, 16.66958300024271, 16.658583000302315, 17.601833999156952, 15.963083000853658, 16.432999999262393, 16.66425000037998, 16.892167000100017, 16.43908299971372, 16.735500000417233, 16.592749999836087, 16.667582999914885, 16.664166999980807, 16.668250000104308, 16.661000000312924, 16.884083000011742, 16.656999999657273, 16.456249999813735, 16.66425000037998, 16.66458399966359, 16.66558299958706, 16.884667000733316, 16.660166000016034, 16.453166999854147, 16.887500000186265, 16.67174999974668, 16.43483299948275, 16.66483400017023, 16.88441599998623, 16.444750000722706, 16.886999999172986, 16.44941700063646, 16.743083000183105, 16.81341699976474, 16.518000000156462, 16.658249999396503, 16.798750000074506, 16.55383300036192, 16.566583999432623, 16.88433300051838, 16.445416999980807, 16.664749999530613, 16.66575000062585, 16.667915999889374, 16.662833999842405, 16.665165999904275, 16.811999999918044, 16.518749999813735, 16.66550000011921, 16.666167000308633, 16.664499999955297, 16.9103330001235, 16.421083999797702, 16.663832999765873, 16.66458300035447, 16.591834000311792, 16.739832999184728, 16.664417000487447, 16.666166000068188, 16.66491699963808, 16.66391700040549, 16.666499000042677, 16.666916999965906, 16.66399999987334, 16.66491699963808, 16.663916000165045, 16.665083999745548, 16.666166000068188, 16.666834000498056, 16.666415999643505, 16.661917000077665, 16.665416999720037, 16.66550000011921, 16.812083000317216, 16.518416999839246, 16.912999999709427, 16.417500000447035, 16.664165999740362, 16.665083999745548, 16.670666000805795, 16.661333999596536, 16.80658300034702, 16.663832999765873, 16.52466700039804, 16.666332999244332, 16.66666700039059, 16.663417000323534, 16.80641599930823, 16.527584000490606, 16.741499999538064, 16.58449999988079, 16.86783300060779, 16.389999999664724], "end_time": 1445539149.062093}, {"user_story": "http://www.ebay.com", "start_time": 1445539144.367945, "values": [16.683583000674844, 17.851082999259233, 15.449834000319242, 16.66566599998623, 16.66516700014472, 16.663166999816895, 16.665165999904275, 16.66783400066197, 16.882665999233723, 16.446167000569403, 16.66516700014472, 16.664832999929786, 16.73950000014156, 16.590332999825478, 16.666583999991417, 16.66683300025761, 16.66341699939221, 16.92174999974668, 16.32366600073874, 16.750500000081956, 16.663834000006318, 16.669499999843538, 16.663249999284744, 16.663750000298023, 16.66399999987334, 17.00258299987763, 16.328917000442743, 16.665165999904275, 16.664083999581635, 16.666083000600338, 16.665000000037253, 16.665749999694526, 16.961749999783933, 16.367750000208616, 16.664917000569403, 16.664915999397635, 16.665416999720037, 16.663833000697196, 16.958999999798834, 16.646750000305474], "end_time": 1445539149.062093}, {"user_story": "Docs (1 open document tab)", "start_time": 1445539144.367945, "values": [50.07024999987334, 16.665333000011742, 16.678333000279963, 16.569249999709427, 33.338000000454485, 16.692999999970198, 16.632249999791384, 16.661499999463558, 16.666000000201166, 16.68308399990201, 16.65658299997449, 16.80108300037682, 16.53516700025648, 16.651166999712586, 16.674250000156462, 16.671000000089407, 16.686999999918044, 16.636665999889374, 16.667084000073373, 16.656082999892533, 16.668750000186265, 16.657666999846697, 16.664416000247, 18.354999999515712, 15.144167000427842, 16.497999999672174, 16.680417000316083, 16.649666000157595, 16.68199999909848, 16.687667000107467, 16.629666999913752, 16.677500000223517, 16.669499999843538, 16.68250000011176, 16.641499999910593, 17.798833000473678, 15.524999999441206, 16.720417000353336, 16.667582999914885, 16.61349999997765, 16.662583000026643, 16.69149999972433, 16.728667000308633, 16.569083000533283, 16.67016700003296, 16.670999999158084, 16.651667000725865, 16.66908299922943, 16.672167000360787, 16.662000000476837, 16.674999999813735, 16.75941599998623, 16.569500000216067, 16.65583399962634, 16.693332999944687, 16.650582999922335, 16.652750000357628, 16.90091700013727, 16.438582999631763, 16.668417000211775, 16.668166999705136, 16.690000000409782, 16.628916000016034, 16.668416999280453, 17.68808300048113, 15.652834000065923, 16.673750000074506, 16.63558299932629, 16.691750000230968, 16.651917000301182, 16.660915999673307, 16.651666999794543, 16.687000000849366, 16.65324999950826, 16.698332999832928, 16.782083000056446, 16.513167000375688, 16.666333000175655, 16.670999999158084, 18.371750000864267, 14.972249999642372, 16.663417000323534, 16.682499999180436, 19.167833000421524, 14.170083999633789, 16.63300000037998, 16.673499999567866, 16.63858300074935, 16.663832999765873, 16.822084000334144, 16.528415999375284, 17.1834169998765, 16.14699999988079, 16.693500000052154, 16.637833000160754, 16.650084000080824, 16.67575000040233, 16.665165999904275, 16.659667000174522, 16.656832999549806, 16.66916699986905, 16.67475000023842, 16.765583000145853, 16.613834000192583, 16.607249999418855, 16.67324999999255, 16.65591600071639, 16.68166699912399, 16.667667000554502, 16.637582999654114, 16.73149999976158, 16.62116700038314, 16.63091600034386, 16.688249999657273, 16.66241700015962, 16.678082999773324, 16.65091700013727, 16.68374999985099, 16.641832999885082, 16.667334000580013, 16.66908299922943, 16.659583000466228, 16.694334000349045, 16.86208299919963, 16.442833000794053, 16.682666999287903, 16.734000000171363, 16.57799999974668, 33.732833000831306, 16.374499999918044, 16.578499999828637, 16.644917000085115, 16.65366700012237, 16.726082999259233, 16.625, 17.236167000606656, 16.1875, 16.645583000034094, 16.669999999925494, 16.66116699948907, 16.662666000425816, 16.670583999715745, 16.712333000265062, 16.61291699949652, 16.66675000078976, 16.664499999955297, 16.664832999929786, 16.665667000226676, 16.66533299908042, 16.664000000804663, 16.683916999958456, 16.64949999935925, 16.66399999987334, 16.66749900020659, 18.165583999827504, 15.183416000567377, 19.629083999432623, 13.681000000797212, 16.662665999494493, 16.672749999910593, 16.681166999973357, 16.644917000085115, 18.375, 14.953583000227809, 16.666082999669015, 16.7384170005098, 18.006082999520004, 17.015500000678003, 14.824499999172986, 16.660750000737607, 16.665166999213398, 16.882417000830173, 16.531999999657273, 16.661999999545515, 16.664499999955297, 16.66741600073874, 16.922749999910593, 16.68449999950826, 16.484083999879658, 16.683416000567377, 17.208417000249028, 16.127082999795675, 16.6222500000149, 16.50241700001061, 16.750416999682784, 16.577499999664724, 16.753666000440717, 16.66458399966359, 16.664499999955297, 16.66591600049287, 16.666167000308633, 16.66916699986905, 16.660582999698818, 16.87658299971372, 16.36958400066942, 16.749832999892533, 16.684999999590218, 16.554917000234127, 16.676582999527454, 16.658750000409782, 16.712000000290573, 16.82741699926555, 18.26116600073874, 14.946333999745548, 16.664083000272512, 16.677166999317706, 16.792915999889374, 16.573334000073373, 16.618999999947846, 16.66483300086111, 16.66741699911654, 16.66300000064075, 16.665165999904275, 16.927749999798834, 16.40208400040865, 16.666249999776483, 16.56649999972433, 16.88033299986273, 16.682833000086248, 16.873833999969065, 16.22550000064075, 16.673915999941528, 16.840667000040412, 16.48824999947101, 16.90116700064391, 16.42958299908787, 16.766750000417233, 16.652999999932945, 16.680583000183105, 16.5869169998914, 16.66775000002235, 16.6603330001235, 16.731833999976516, 16.791415999643505, 16.879333999939263, 16.32400000002235, 16.666250000707805, 16.671498999930918, 16.783916999585927, 16.54141699988395, 16.907666000537574, 16.468583999201655, 16.61908300034702, 16.679500000551343, 16.66033299919218, 16.571000000461936, 16.78308399952948, 16.594833000563085, 16.684249999932945, 16.61983300000429, 16.645833999849856, 16.658499999903142, 16.695166000165045, 16.63925000000745, 16.688167000189424, 16.85649999976158, 16.469750000163913, 16.662082999944687, 16.663499999791384, 16.687916999682784, 16.630667000077665, 16.71633299998939, 16.60558299999684, 16.669000000692904, 16.674749999307096, 16.81741700042039, 16.49074999988079, 16.67883300036192, 16.67674999963492, 16.6834169998765, 16.681667000055313, 16.63741600047797, 16.647083999589086, 16.705000000074506, 16.646583000198007, 16.66275000013411, 21.884416999295354, 11.45083300024271, 16.66775000002235, 22.489083000458777, 10.832333999685943, 16.695333000272512, 17.695082999765873, 15.589583999477327, 16.677083000540733, 17.711416999809444, 15.621082999743521, 16.665083000436425, 16.703416999429464, 16.613083000294864, 16.667667000554502, 16.72158299945295, 16.663834000006318, 16.60583300050348, 16.825749999843538, 16.515083000063896, 16.66333399992436, 16.716249999590218, 16.64241600036621, 16.646750000305474, 18.15808399952948, 15.306416000239551, 16.51974999997765, 16.75733399949968, 16.608165999874473, 16.648250000551343, 16.800583999603987, 16.508582999929786, 16.66241700015962, 16.701666000299156, 16.6521669998765, 16.644999999552965, 16.70416700001806, 16.624583000317216, 16.66833300050348, 16.715833999216557, 16.61325000040233, 16.66674999985844, 16.730999999679625, 17.982250000350177, 15.301250000484288, 16.794165999628603, 16.533250000327826, 16.64583299960941, 16.822084000334144, 16.512582999654114, 16.663332999683917, 16.75400000065565, 16.59208399988711, 16.648665999993682, 16.69799999985844, 16.636583999730647, 16.666583000682294, 16.69491699989885, 16.631749999709427, 16.663832999765873, 16.711667000316083, 16.620833000168204, 16.662999999709427, 16.731583000160754, 16.617666999809444, 16.661000000312924, 16.787583000026643, 16.52866700012237, 16.667082999832928, 16.688249999657273, 16.661000000312924, 16.640583999454975, 16.729083000682294], "end_time": 1445539149.062093}]}, null, {"start_time": 1445512184.252907, "end_time": 1445524257.25076, "user_story_runs": [{"user_story": "ESPN", "start_time": 1445523866.979433, "values": [33.410749999806285, 16.665000000037253, 16.665666999295354, 16.665917000733316, 16.592333000153303, 16.65466699935496, 16.679666000418365, 16.687334000132978, 16.632665999233723, 16.656334000639617, 16.67858299985528, 16.653332999907434, 16.675834000110626, 16.670083000324667, 16.67391699925065, 16.795583000406623, 16.53066600020975, 16.66249999962747, 17.77808399964124, 15.534250000491738, 16.66933299973607, 16.679000000469387, 16.657666999846697, 16.68374999985099, 16.660582999698818, 16.646167000755668, 16.685332999564707, 16.662666999734938, 16.64333300013095, 16.68775000050664, 16.656832999549806, 16.704834000207484, 16.623583000153303, 16.66249999962747, 16.71999999973923, 17.888416999951005, 15.39266600087285, 16.652416999451816, 16.668666999787092, 16.64350000023842, 16.680750000290573, 16.666333000175655, 16.654999999329448, 16.671333000063896, 16.654500000178814, 16.66758400015533, 16.691165999509394, 16.637334000319242, 16.67850000038743, 16.649582999758422, 17.655249999836087, 16.705500000156462, 15.650750000029802, 16.659582999534905, 16.65708400029689, 16.67766600009054, 19.866333999671042, 13.462416000664234, 16.653583999723196, 16.689415999688208, 16.659084000624716, 16.658582999370992, 16.95475000049919, 17.199833000078797, 15.815249999985099], "end_time": 1445523873.907705}, {"user_story": "Pinterest", "start_time": 1445523866.979433, "values": [33.26649999991059, 16.676084000617266, 16.664499999955297, 16.6902499999851, 16.661166000179946, 16.654999999329448, 16.72583399992436, 16.600666000507772, 16.6535000000149, 16.876666999422014, 16.467667000368237, 16.67891599982977, 16.639750000089407, 16.839833999983966, 16.661000000312924, 16.821665999479592, 16.438834000378847, 16.55508300010115, 16.765583000145853, 18.155749999918044, 15.080583999864757, 16.665333000011742, 18.03716699965298, 15.325500000268221, 16.728915999643505, 16.570000000298023, 16.657584000378847, 16.669165999628603, 16.688500000163913, 16.65983400028199, 16.65449999924749, 16.663166000507772, 16.686749999411404, 16.732334000058472, 16.597416000440717, 16.69458399992436, 16.629665999673307, 16.660416999831796, 16.810750000178814, 16.52966700028628, 16.639750000089407, 16.685250000096858, 16.707499999552965, 16.907583000138402, 16.36316700000316, 16.744165999814868, 16.77350000012666, 16.51391700003296, 16.628082999959588, 16.910334000363946, 16.416582999750972, 16.69283299986273, 16.666583999991417, 16.669166000559926, 16.794083999469876, 16.51950000040233, 17.649415999650955, 15.669750000350177, 17.63608399964869, 15.692416000179946, 16.684833999723196, 16.663250000216067, 16.71074999962002, 16.739666000008583, 16.56775000039488, 17.740083999931812, 15.659998999908566, 16.73783400002867, 16.518749999813735, 16.64366600010544, 16.700667000375688, 16.79941700026393, 16.74599999934435, 16.432083000428975, 16.652582999318838, 16.6535000000149, 16.664334000088274, 16.655416000634432, 16.670833999291062, 16.67666600085795, 16.747416999191046, 16.57550000026822, 16.932667000219226, 16.654082999564707, 16.404333000071347, 16.927167000249028, 16.681499999947846, 16.541249999776483, 16.681667000055313, 16.512000000104308, 16.653083000332117, 16.729082999750972, 16.621917000040412, 16.633750000037253, 16.686750000342727, 16.922332999296486, 16.386417000554502, 16.669916999526322, 16.663499999791384, 16.70200000051409, 16.90749999973923, 16.39991599973291, 16.746667000465095, 16.567083000205457, 16.675834000110626, 16.81941599957645, 16.66700000036508, 16.671583999879658, 16.599166000261903, 16.665499999187887, 16.666000000201166, 16.663834000006318, 16.66558300051838, 16.666332999244332, 16.665334000252187, 16.664499999955297, 16.60866599995643, 16.651500000618398, 16.668333999812603, 16.65266599971801, 16.677167000249028, 16.736250000074506, 16.58224999997765, 16.66550000011921, 16.707332999445498, 16.639750000089407, 16.646750000305474, 16.666500000283122, 16.690666999667883, 16.656417000107467, 16.66550000011921, 16.654582999646664, 16.688500000163913, 16.635749999433756, 16.667500000447035, 16.66391700040549, 16.697499999776483, 16.66550000011921, 16.64641600009054, 16.679333999753, 16.656166000291705, 16.647749999538064, 16.66425000037998, 16.663249999284744, 16.679584000259638, 16.715916000306606, 16.59624999947846, 16.701249999925494, 16.791417000815272, 16.989666999317706, 16.176833000034094, 16.913499999791384, 33.37383300065994, 66.70825000014156, 49.66158299986273, 16.83783399965614, 16.504332999698818, 16.7370000006631, 16.769082999788225, 16.627666999585927, 16.598250000737607, 16.663082999177277, 16.667334000580013, 16.583750000223517, 17.086165999993682, 16.41116699948907, 16.503250000067055, 16.664917000569403, 16.97291599959135, 16.660916999913752, 16.364000000059605, 16.66641699988395, 16.85950000025332, 16.68416600022465, 16.65341699961573, 16.538832999765873, 16.665250000543892, 16.66208399925381, 16.59041600022465, 16.663834000006318, 16.66091600060463, 16.749083999544382, 16.575166000053287, 16.755499999970198, 16.66516700014472, 16.754750000312924, 16.575916999951005, 17.430915999226272, 15.898834000341594, 16.66433299984783, 16.663166999816895, 16.66866600047797, 16.663750000298023, 16.66341699939221, 16.666916999965906, 16.664916000328958, 16.66425000037998, 16.665499999187887, 16.665834000334144, 17.480166000314057, 15.85233400017023, 16.66466599982232, 16.663083999417722, 16.979000000283122, 16.35175000037998, 16.66674999985844, 16.666249999776483, 16.851332999765873, 16.498583000153303, 16.643667000345886, 16.664667000062764, 16.66775000002235, 16.665333000011742, 16.664832999929786, 16.71966699976474, 16.609416999854147, 16.788665999658406, 16.658167000859976, 16.643832999281585, 16.547749999910593, 16.64166700001806, 16.632333000190556, 16.859083999879658, 16.47058300022036, 16.65533300023526, 16.68433399964124, 16.661333000287414, 16.652999999932945, 16.677582999691367, 16.668750000186265, 16.650417000055313, 16.69649999961257, 16.6386660002172, 16.6800000006333, 16.649833999574184, 16.68099999986589, 16.684500000439584, 16.649332999251783, 16.659750000573695, 16.683000000193715, 16.631416999734938, 16.661749999970198, 16.658583000302315, 16.670667000114918, 16.676082999445498, 17.895500000566244, 15.441082999110222, 18.344500000588596, 15.966667000204325, 15.685499999672174, 16.894333000294864, 16.434166999533772, 16.651750000193715, 16.674332999624312, 16.66508400067687, 16.671915999613702, 16.68158399965614, 16.636250000447035, 16.661082999780774, 16.868666999973357, 16.453499999828637, 16.666166000068188, 16.90333400014788, 16.424000000581145, 16.667249999940395, 16.88399999961257, 16.724582999944687, 16.41016700025648, 18.231416000053287, 15.32024999987334, 16.452166999690235, 16.688916999846697, 16.621416000649333, 16.67266699951142, 16.65716699976474, 16.97058300022036, 16.38541700039059, 16.642249999567866, 16.66591600049287, 16.659416999667883, 16.697417000308633, 16.65791600011289, 16.65099999960512, 16.65741700027138, 16.81841699965298, 16.50283300038427, 16.854917000047863], "end_time": 1445523873.907705}, {"user_story": "LinkedIn", "start_time": 1445523866.979433, "values": [66.67533400002867, 16.684582999907434, 16.639832999557257, 16.845917000435293, 16.479999999515712, 16.69275000039488, 16.63575000036508, 16.886249999515712, 16.457500000484288, 16.65625, 16.763665999285877, 16.667084000073373, 16.664166000671685, 16.664083999581635, 16.783416000194848, 16.636583999730647, 16.576333000324667, 16.66366699989885, 16.96391599997878, 17.711167000234127, 15.322082999162376, 16.88050000090152, 16.450333999469876, 16.669999999925494, 16.956915999762714, 16.658167000859976, 16.37599999923259, 16.66300000064075, 16.95416700001806, 16.377332999370992, 16.834083000198007, 16.666500000283122, 16.49683399964124, 16.97041600011289, 16.358500000089407, 16.665416999720037, 16.828917000442743, 16.501000000163913, 16.667415999807417, 16.662917000241578, 16.665999999269843, 16.66399999987334, 16.978667000308633, 16.354082999750972, 16.666417000815272, 16.663082999177277, 16.666500000283122, 16.663250000216067, 17.58066700026393, 15.751166000030935, 16.663834000006318, 16.666165999136865, 17.863000000827014, 15.467833999544382, 17.84224999975413, 15.489416000433266, 16.663916999474168, 17.657083000056446, 15.672083999961615, 16.665250000543892, 17.59416599944234, 15.736250000074506, 16.66700000036508, 16.666500000283122, 17.601749999448657, 15.725833999924362, 16.665250000543892, 17.79524999950081, 15.536416000686586, 17.727666999213398, 15.60416700039059, 16.66283299960196, 16.667167000472546, 17.62816600035876, 15.701583999209106, 17.58633300010115, 15.743250000290573, 16.663832999765873, 16.66899999976158, 16.66258400026709, 16.66466599982232, 16.974249999970198, 16.357166999951005, 16.66516700014472, 17.535749999806285, 17.120166000910103, 15.3403339991346, 16.665083000436425, 16.815750000067055, 16.514666999690235, 16.919416000135243, 16.532584000378847, 16.5428329994902, 16.815582999959588, 16.515000000596046, 16.55991700012237], "end_time": 1445523873.907705}, {"user_story": "http://www.ebay.com", "start_time": 1445523866.979433, "values": [33.32125000003725, 16.674999999813735, 16.808000000193715, 16.533250000327826, 16.851749999448657, 16.490833000279963, 16.88025000039488, 16.58666699938476, 33.14625000022352, 16.665165999904275, 17.05408400017768, 16.387915999628603, 16.564249999821186, 17.034167000092566, 16.34250000026077, 16.631416999734938, 16.66150000039488, 17.193332999944687, 16.13958299998194, 16.65441699977964, 16.665916999801993, 16.651583000086248, 16.698750000447035, 16.66275000013411, 16.64949999935925, 16.655750000849366, 16.687082999385893, 16.687834000214934, 16.6277499999851, 16.657250000163913, 16.890916000120342, 16.618666999973357, 16.49624999985099, 16.674999999813735, 16.655749999918044, 16.673082999885082, 16.648000000044703, 16.773333000019193, 16.655083999969065, 16.64241600036621, 16.60549999959767, 16.755834000185132, 16.56416600011289, 16.66000000014901, 16.65683399979025], "end_time": 1445523873.907705}, {"user_story": "Docs (1 open document tab)", "start_time": 1445523866.979433, "values": [33.350333999842405, 16.66816599946469, 16.725917000323534, 49.926500000059605, 16.6674999995157 (…)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
MessageModification.java 29 * provide initial or new values for the message. Then save or send the message.
36 * @param values the ContentValues that will be used to create or update the
40 public static void putSubject(ContentValues values, String subject) {
41 values.put(MessageColumns.SUBJECT, subject);
46 * @param values the ContentValues that will be used to create or update the
50 public static void putToAddresses(ContentValues values, String[] toAddresses) {
51 values.put(MessageColumns.TO, TextUtils.join(UIProvider.EMAIL_SEPARATOR, toAddresses));
56 * @param values the ContentValues that will be used to create or update the
60 public static void putCcAddresses(ContentValues values, String[] ccAddresses) {
61 values.put(MessageColumns.CC, TextUtils.join(UIProvider.EMAIL_SEPARATOR, ccAddresses))
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_c_v_t.py 11 values = array.array("h")
12 values.fromstring(data)
14 values.byteswap()
15 self.values = values
18 values = self.values[:]
20 values.byteswap()
21 return values.tostring()
24 for i in range(len(self.values))
    [all...]
  /cts/tests/app/src/android/app/cts/
ActivityManagerRunningTaskInfoTest.java 53 ActivityManager.RunningTaskInfo values = ActivityManager.RunningTaskInfo.CREATOR local
55 assertEquals(1, values.id);
56 assertNull(values.baseActivity);
57 assertNull(values.topActivity);
58 assertNull(values.thumbnail);
59 assertEquals(1, values.numActivities);
60 assertEquals(2, values.numRunning);
67 values = ActivityManager.RunningTaskInfo.CREATOR
69 assertNotNull(values.thumbnail);
70 assertEquals(320, values.thumbnail.getHeight())
81 ActivityManager.RunningTaskInfo values = new ActivityManager.RunningTaskInfo(); local
    [all...]

Completed in 1066 milliseconds

1 2 3 4 5 6 7 8 91011>>