HomeSort by relevance Sort by last modified time
    Searched refs:values (Results 1 - 25 of 5591) 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/linux-tools-perf/perf-3.12.0/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...]
  /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();
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CSSMetadata.js 180 "table-layout": { values: [
183 "visibility": { values: [
186 "background-repeat": { values: [
189 "content": { values: [
192 "list-style-image": { values: [
195 "clear": { values: [
198 "overflow-x": { values: [
201 "stroke-linejoin": { values: [
204 "baseline-shift": { values: [
207 "border-bottom-width": { values:
    [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]
485 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/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/chromium_org/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/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/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);
  /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...]
  /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
949 ContentValues values = new ContentValues(); local
961 ContentValues values = new ContentValues(); local
    [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...]
  /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...]
  /frameworks/base/core/java/android/content/
Entity.java 34 public Entity(ContentValues values) {
35 mValues = values;
47 public void addSubValue(Uri uri, ContentValues values) {
48 mSubValues.add(new Entity.NamedContentValues(uri, values));
53 public final ContentValues values; field in class:Entity.NamedContentValues
55 public NamedContentValues(Uri uri, ContentValues values) {
57 this.values = values;
66 sb.append("\n -> ").append(namedValue.values);
  /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...]
  /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...]

Completed in 1611 milliseconds

1 2 3 4 5 6 7 8 91011>>