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

1 2 3 4 5 6 7 8 91011>>

  /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/clang/test/CodeGenCXX/
variadic-templates.cpp 15 int values[sizeof...(T)+1] = { T::value... }; local
  /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/bluetooth/glib/gobject/
gvaluearray.h 38 * @n_values: number of values contained in the array
39 * @values: array of values
46 GValue *values; member in struct:_GValueArray
  /external/libffi/testsuite/libffi.call/
float2.c 21 void *values[MAX_ARGS]; local
26 values[0] = &f;
41 ffi_call(&cif, FFI_FN(ldblit), &ld, values);
return_dbl.c 18 void *values[MAX_ARGS]; local
22 values[0] = &dbl;
30 ffi_call(&cif, FFI_FN(return_dbl), &rdbl, values);
return_fl.c 18 void *values[MAX_ARGS]; local
22 values[0] = &fl;
30 ffi_call(&cif, FFI_FN(return_fl), &rfl, values);
return_ldl.c 18 void *values[MAX_ARGS]; local
22 values[0] = &ldl;
30 ffi_call(&cif, FFI_FN(return_ldl), &rldl, values);
return_ll.c 18 void *values[MAX_ARGS]; local
23 values[0] = &ll;
31 ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
37 ffi_call(&cif, FFI_FN(return_ll), &rlonglong, values);
return_sc.c 18 void *values[MAX_ARGS]; local
23 values[0] = &sc;
32 ffi_call(&cif, FFI_FN(return_sc), &rint, values);
return_uc.c 19 void *values[MAX_ARGS]; local
25 values[0] = &uc;
34 ffi_call(&cif, FFI_FN(return_uc), &rint, values);
strlen.c 19 void *values[MAX_ARGS]; local
24 values[0] = (void*) &s;
31 ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
35 ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
39 ffi_call(&cif, FFI_FN(my_strlen), &rint, values);
strlen_win32.c 20 void *values[MAX_ARGS]; local
24 values[0] = (void*) &s;
31 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
35 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
39 ffi_call(&cif, FFI_FN(my_stdcall_strlen), &rint, values);
  /external/oprofile/libop/tests/
mangle_tests.c 20 struct mangle_values values; member in struct:test_input
52 char * result = op_mangle_filename(&test->values);
  /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...]
  /libcore/luni/src/main/java/java/lang/
InheritableThreadLocal.java 54 Values values(Thread current) { method in class:InheritableThreadLocal
59 Values initializeValues(Thread current) {
60 return current.inheritableValues = new Values();
  /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/
CallerInfoIntegrationTest.java 40 ContentValues values = new ContentValues(); local
41 values.put(RawContacts.CUSTOM_RINGTONE, "ring");
42 values.put(RawContacts.SEND_TO_VOICEMAIL, 1);
44 Uri rawContactUri = mResolver.insert(RawContacts.CONTENT_URI, values);
  /build/tools/
check_radio_versions.py 42 values = build_info.get(key, None) variable
43 if not values:
45 values = values.split("|") variable
71 if versions[digest] not in values:
  /dalvik/vm/arch/generic/
Call.cpp 73 void* values[kMaxArgs]; local
79 values[0] = &pEnv;
83 values[1] = &clazz;
86 values[1] = (void*) argv++;
93 * "types" array. Store the start address of the argument in "values".
98 values[dstArg++] = (void*) argv++;
111 ffi_call(&cif, FFI_FN(func), pReturn, values);
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509Attribute.java 12 * Class for carrying the values in an X.509 Attribute.
47 * @param value vector of values to go in the attribute's value set.
64 ASN1Encodable[] values = new ASN1Encodable[s.size()]; local
68 values[i] = (ASN1Encodable)s.getObjectAt(i);
71 return values;
  /external/chromium/chrome/browser/safe_browsing/
bloom_filter_unittest.cc 37 typedef std::set<SBPrefix> Values;
38 Values values; local
41 values.insert(value);
52 for (Values::const_iterator i = values.begin(); i != values.end(); ++i)
56 // we inserted, but of different values, and calculating what percentage are
62 if (values.count(value))
  /external/guava/guava/src/com/google/common/collect/
BiMap.java 28 * its values as well as that of its keys. This constraint enables bimaps to
30 * as this bimap but with reversed keys and values.
88 * <p>Because a bimap has unique values, this method returns a {@link Set},
93 Set<V> values(); method in interface:BiMap
97 * values to its associated key. The two bimaps are backed by the same data;
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
StringValue.java 17 package com.google.clearsilver.jsilver.values;

Completed in 526 milliseconds

1 2 3 4 5 6 7 8 91011>>