Searched defs:values (Results 101 - 125 of 463) sorted by relevance

1234567891011>>

/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp23.cpp12 void unsupported(Ts ...values) { argument
13 auto unsup = [values] {}; // expected-error{{unexpanded function parameter pack capture is unsupported}}
17 void implicit_capture(Ts ...values) { argument
18 auto implicit = [&] { print(values...); };
23 void do_print(Ts... values) { argument
24 auto bycopy = [values...]() { print(values...); };
26 auto byref = [&values...]() { print(values...); };
29 auto bycopy2 = [=]() { print(values
[all...]
/external/clang/utils/analyzer/
H A DCmpRuns.py36 def values(self): member in class:multidict
37 return self.data.values()
/external/emma/core/java12/com/vladium/util/
H A DIntSet.java98 public int [] values () method in class:IntSet
119 public void values (final int [] target, final int offset) method in class:IntSet
/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableMap.java66 @Override public ImmutableCollection<Object> values() { method in class:EmptyImmutableMap
H A DSingletonImmutableMap.java96 private transient ImmutableCollection<V> values; field in class:SingletonImmutableMap
98 @Override public ImmutableCollection<V> values() { method in class:SingletonImmutableMap
99 ImmutableCollection<V> v = values;
100 return (v == null) ? (values = new Values<V>(singleValue)) : v;
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSampleElements.java66 SampleElements<K> keys, SampleElements<V> values) {
68 Helpers.mapEntry(keys.e0, values.e0),
69 Helpers.mapEntry(keys.e1, values.e1),
70 Helpers.mapEntry(keys.e2, values.e2),
71 Helpers.mapEntry(keys.e3, values.e3),
72 Helpers.mapEntry(keys.e4, values.e4));
65 mapEntries( SampleElements<K> keys, SampleElements<V> values) argument
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedBiMapTest.java66 @Override public Set<V> values() { method in class:SynchronizedBiMapTest.TestBiMap
68 return delegate.values();
88 Set<Integer> values = map.values();
89 assertTrue(values instanceof SynchronizedSet);
90 assertSame(mutex, ((SynchronizedSet<?>) values).mutex);
/external/guava/guava-tests/test/com/google/common/primitives/
H A DByteArrayAsListTest.java44 private static List<Byte> asList(Byte[] values) { argument
45 byte[] temp = new byte[values.length];
46 for (int i = 0; i < values.length; i++) {
47 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DCharArrayAsListTest.java44 private static List<Character> asList(Character[] values) { argument
45 char[] temp = new char[values.length];
46 for (int i = 0; i < values.length; i++) {
47 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DDoubleArrayAsListTest.java44 private static List<Double> asList(Double[] values) { argument
45 double[] temp = new double[values.length];
46 for (int i = 0; i < values.length; i++) {
47 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DFloatArrayAsListTest.java44 private static List<Float> asList(Float[] values) { argument
45 float[] temp = new float[values.length];
46 for (int i = 0; i < values.length; i++) {
47 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DIntArrayAsListTest.java45 private static List<Integer> asList(Integer[] values) { argument
46 int[] temp = new int[values.length];
47 for (int i = 0; i < values.length; i++) {
48 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DLongArrayAsListTest.java44 private static List<Long> asList(Long[] values) { argument
45 long[] temp = new long[values.length];
46 for (int i = 0; i < values.length; i++) {
47 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
H A DShortArrayAsListTest.java44 private static List<Short> asList(Short[] values) { argument
45 short[] temp = new short[values.length];
46 for (short i = 0; i < values.length; i++) {
47 temp[i] = checkNotNull(values[i]); // checkNotNull for GWT (do not optimize).
/external/hamcrest/src/org/hamcrest/
H A DBaseDescription.java56 public <T> Description appendValueList(String start, String separator, String end, T... values) { argument
57 return appendValueList(start, separator, end, Arrays.asList(values));
60 public <T> Description appendValueList(String start, String separator, String end, Iterable<T> values) { argument
61 return appendValueList(start, separator, end, values.iterator());
64 private <T> Description appendValueList(String start, String separator, String end, Iterator<T> values) { argument
65 return appendList(start, separator, end, new SelfDescribingValueIterator<T>(values));
68 public Description appendList(String start, String separator, String end, Iterable<? extends SelfDescribing> values) { argument
69 return appendList(start, separator, end, values.iterator());
H A DCoreMatchers.java161 public static <T> org.hamcrest.Matcher<T> describedAs(java.lang.String description, org.hamcrest.Matcher<T> matcher, java.lang.Object... values) { argument
162 return org.hamcrest.core.DescribedAs.describedAs(description, matcher, values);
/external/icu4c/layout/
H A DValueRecords.h27 le_int16 values[ANY_NUMBER]; member in struct:ValueRecord
/external/icu4c/layoutex/layout/
H A DRunArrays.h542 * The <code>ValueRuns</code> class associates integer values with runs of text.
550 * Construct a <code>ValueRuns</code> object from pre-existing arrays of values
553 * @param values is the address of an array of integer. This array must remain valid until
563 inline ValueRuns(const le_int32 *values, const le_int32 *limits, le_int32 count);
669 inline ValueRuns::ValueRuns(const le_int32 *values, const le_int32 *limits, le_int32 count) argument
670 : RunArray(limits, count), fValues(values)
/external/iproute2/misc/
H A Dlnstat.h20 unsigned long values[2]; /* two buffers for values */ member in struct:lnstat_field
/external/libffi/testsuite/libffi.call/
H A Dmany.c40 void *values[13]; local
48 values[i] = &fa[i];
56 ffi_call(&cif, FFI_FN(many), &f, values);
H A Dmany_win32.c33 void *values[13]; local
41 values[ul] = &fa[ul];
56 ffi_call(&cif, FFI_FN(stdcall_many), &f, values);
H A Dpyobjc-tc.c40 void* values[6]; local
98 values[0] = &o;
99 values[1] = &m;
100 values[2] = &p;
101 values[3] = &r;
102 values[4] = &l;
103 values[5] = NULL;
108 ffi_call(&cif, FFI_FN(doit), &result, values);
/external/markdown/markdown/
H A Dodict.py58 return zip(self.keyOrder, self.values())
70 def values(self): member in class:OrderedDict
/external/nist-sip/java/gov/nist/core/
H A DMultiValueMapImpl.java82 public Collection values() { method in class:MultiValueMapImpl
91 Object[] values = list.toArray();
92 for (int ii = 0; ii < values.length; ii++) {
93 returnList.add(values[ii]);
/external/oprofile/libutil++/
H A Dunique_storage.h3 * Unique storage of values
20 * Store values such that only one copy of the value
38 values.push_back(V());
81 typename id_map::value_type val(value, id_value(values.size()));
85 values.push_back(value);
94 if (id.id < values.size())
95 return values[id.id];
103 /// the contained values
104 stored_values values; member in class:unique_storage

Completed in 242 milliseconds

1234567891011>>