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

1 2 3 4 5 6 7 8 91011>>

  /external/linux-tools-perf/util/
values.c 4 #include "values.h"
6 void perf_read_values_init(struct perf_read_values *values)
8 values->threads_max = 16;
9 values->pid = malloc(values->threads_max * sizeof(*values->pid));
10 values->tid = malloc(values->threads_max * sizeof(*values->tid));
11 values->value = malloc(values->threads_max * sizeof(*values->value))
    [all...]
values.h 17 void perf_read_values_init(struct perf_read_values *values);
18 void perf_read_values_destroy(struct perf_read_values *values);
20 void perf_read_values_add_value(struct perf_read_values *values,
24 void perf_read_values_display(FILE *fp, struct perf_read_values *values,
  /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();
  /external/proguard/src/proguard/evaluation/
Stack.java 36 protected Value[] values; field in class:Stack
43 * space required by Category 2 values.
47 values = new Value[maxSize];
56 // Create the values array.
57 this(stack.values.length);
66 * operations, accounting for the double space required by Category 2 values.
79 // Is the values array large enough?
80 if (maxSize > values.length)
83 values = new Value[maxSize];
94 * Copies the values of the given Stack into this Stack
    [all...]
  /frameworks/base/core/java/android/hardware/
SensorEvent.java 23 * course the sensor's {@link SensorEvent#values data}.
39 * screen. In this system, coordinates behind the screen have negative Z values.
61 * The length and contents of the {@link #values values} array depends on
67 * Sensor.TYPE_ACCELEROMETER}:</h4> All values are in SI units (m/s^2)
71 * values[0]: Acceleration minus Gx on the x-axis
74 * values[1]: Acceleration minus Gy on the y-axis
77 * values[2]: Acceleration minus Gz on the z-axis
125 * gravity[0] = alpha * gravity[0] + (1 - alpha) * event.values[0];
126 * gravity[1] = alpha * gravity[1] + (1 - alpha) * event.values[1]
434 public final float[] values; field in class:SensorEvent
    [all...]
SensorListener.java 21 * sensor values have changed.
30 * <p>Called when sensor values have changed.
31 * The length and contents of the values array vary
45 * device's screen orientation changes. To access the unswapped values,
46 * use indices 3, 4 and 5 in values[].
50 * All values are angles in degrees.
52 * <p>values[0]: Azimuth, rotation around the Z axis (0<=azimuth<360).
55 * <p>values[1]: Pitch, rotation around X axis (-180<=pitch<=180), with positive
56 * values when the z-axis moves toward the y-axis.
58 * <p>values[2]: Roll, rotation around Y axis (-90<=roll<=90), with positive values
    [all...]
  /external/oprofile/libop/
op_mangle.c 38 char * op_mangle_filename(struct mangle_values const * values)
42 int anon = values->flags & MANGLE_ANON;
43 int cg_anon = values->flags & MANGLE_CG_ANON;
48 char const * image_name = values->dep_name;
49 char const * anon_name = values->anon_name;
50 char const * dep_name = values->image_name;
51 char const * cg_image_name = values->cg_image_name;
54 + strlen(values->event_name) + 1 + strlen(image_name) + 1;
56 if (values->flags & MANGLE_CALLGRAPH)
70 append_image(mangled, values->flags, 0, image_name, anon_name)
    [all...]
  /external/proguard/src/proguard/evaluation/value/
InstructionOffsetValue.java 36 private int[] values; field in class:InstructionOffsetValue
46 this.values = new int[] { value };
50 public InstructionOffsetValue(int[] values)
52 this.values = values;
58 return values == null ? 0 : values.length;
64 return values[index];
74 if (values != null)
76 for (int index = 0; index < values.length; index++
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
ArrayEncodedSubValue.java 43 public final EncodedValue[] values; field in class:ArrayEncodedSubValue
52 values = new EncodedValue[in.readUnsignedLeb128()];
54 for (int i=0; i<values.length; i++) {
55 values[i] = EncodedValue.readEncodedValue(dexFile, in);
60 * Constructs a new <code>ArrayEncodedSubValue</code> with the given values
61 * @param values The array values
63 public ArrayEncodedSubValue(EncodedValue[] values) {
64 this.values = 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...]
  /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
862 ContentValues values = new ContentValues(); local
950 ContentValues values = new ContentValues(); local
962 ContentValues values = new ContentValues(); local
    [all...]
  /cts/tests/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...]
ActivityManager_RunningServiceInfoTest.java 59 ActivityManager.RunningServiceInfo values = local
61 assertEquals(mService, values.service);
62 assertEquals(1, values.pid);
63 assertEquals(PROCESS, values.process);
64 assertTrue(values.foreground);
65 assertEquals(1l, values.activeSince);
66 assertTrue(values.started);
67 assertEquals(2, values.clientCount);
68 assertEquals(1, values.crashCount);
69 assertEquals(1l, values.lastActivityTime)
78 ActivityManager.RunningServiceInfo values = local
    [all...]
  /external/oprofile/daemon/
opd_mangling.c 72 struct mangle_values values; local
75 values.flags = 0;
78 values.image_name = sf->kernel->name;
79 values.flags |= MANGLE_KERNEL;
81 values.flags |= MANGLE_ANON;
82 values.image_name = mangle_anon(sf->anon);
83 values.anon_name = sf->anon->name;
85 values.image_name = find_cookie(sf->cookie);
88 values.dep_name = get_dep_name(sf);
89 if (!values.dep_name
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
RDN.java 15 private ASN1Set values; field in class:RDN
17 private RDN(ASN1Set values)
19 this.values = values;
49 this.values = new DERSet(new DERSequence(v));
54 this.values = new DERSet(attrTAndV);
64 this.values = new DERSet(aAndVs);
69 return this.values.size() > 1;
79 return this.values.size();
84 if (this.values.size() == 0
    [all...]
  /external/webkit/PerformanceTests/Parser/resources/
runner.js 18 function computeAverage(values) {
20 for (var i = 0; i < values.length; i++)
21 sum += values[i];
22 return sum / values.length;
25 function computeMax(values) {
26 var max = values.length ? values[0] : 0;
27 for (var i = 1; i < values.length; i++) {
28 if (max < values[i])
29 max = values[i]
    [all...]
  /external/webkit/Source/WebCore/svg/properties/
SVGPathSegListPropertyTearOff.h 46 SVGPathSegList& values = m_animatedProperty->values(); local
48 unsigned size = values.size();
50 ListItemType& item = values.at(i);
54 values.remove(i);
70 SVGPathSegList& values = m_animatedProperty->values(); local
71 return Base::numberOfItemsValues(values);
83 SVGPathSegList& values = m_animatedProperty->values(); local
98 SVGPathSegList& values = m_animatedProperty->values(); local
111 SVGPathSegList& values = m_animatedProperty->values(); local
126 SVGPathSegList& values = m_animatedProperty->values(); local
142 SVGPathSegList& values = m_animatedProperty->values(); local
    [all...]
SVGListProperty.h 56 void clearValues(PropertyType& values, ExceptionCode& ec)
61 values.clear();
72 animatedList->values().clear();
77 unsigned numberOfItemsValues(PropertyType& values) const
79 return values.size();
85 return animatedList->values().size();
89 ListItemType initializeValues(PropertyType& values, const ListItemType& newItem, ExceptionCode& ec)
98 values.clear();
99 values.append(newItem);
117 PropertyType& values = animatedList->values() local
160 PropertyType& values = animatedList->values(); local
214 PropertyType& values = animatedList->values(); local
277 PropertyType& values = animatedList->values(); local
344 PropertyType& values = animatedList->values(); local
392 PropertyType& values = animatedList->values(); local
    [all...]
  /external/clang/test/FixIt/
no-macro-fixit.c 8 va_list values; local
12 while (value = va_arg(values, int)) { // expected-warning {{using the result of an assignment as a condition without parentheses}} \
  /external/webkit/LayoutTests/http/tests/resources/
post-and-verify.cgi 15 $values{$key} = $value;
18 open FILE, $values{'path'} || die("Could not open file\n");
19 seek FILE, $values{'start'}, 0;
20 read FILE, $expectedData, $values{'length'};
  /frameworks/base/test-runner/src/junit/runner/
Sorter.java 15 public void swap(Vector values, int left, int right);
18 public static void sortStrings(Vector values , int left, int right, Swapper swapper) {
21 String mid= (String)values.elementAt((left + right) / 2);
23 while (((String)(values.elementAt(left))).compareTo(mid) < 0)
25 while (mid.compareTo((String)(values.elementAt(right))) < 0)
28 swapper.swap(values, left, right);
35 sortStrings(values, oleft, right, swapper);
37 sortStrings(values, left, oright, swapper);
  /hardware/invensense/libsensors_iio/software/core/mllite/
hal_outputs.h 16 int inv_get_sensor_type_orientation(float *values, int8_t *accuracy,
18 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy,
20 int inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy,
22 int inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy,
24 int inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy,
26 int inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy,
29 int inv_get_sensor_type_linear_acceleration(float *values,
32 int inv_get_sensor_type_gravity(float *values, int8_t *accuracy,

Completed in 686 milliseconds

1 2 3 4 5 6 7 8 91011>>