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

1 2 3

  /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/chromium/testing/gtest/include/gtest/
gtest-param-test.h 55 // class hierarchies), where the type of your parameter values.
58 // lifespan of the pointed values.
86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // begin+step+step, ...}. The values do not
89 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
90 // ValuesIn(container) - Yields values from a C-style array, an STL
94 // for the math savvy) of the values generated
101 // each with parameter values "meeny", "miny", and "moe".
105 Values("meeny", "miny", "moe"))
    [all...]
  /external/gtest/include/gtest/
gtest-param-test.h 55 // class hierarchies), where the type of your parameter values.
58 // lifespan of the pointed values.
86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // begin+step+step, ...}. The values do not
89 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
90 // ValuesIn(container) - Yields values from a C-style array, an STL
94 // for the math savvy) of the values generated
101 // each with parameter values "meeny", "miny", and "moe".
105 Values("meeny", "miny", "moe"))
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-param-test.h 55 // class hierarchies), where the type of your parameter values.
58 // lifespan of the pointed values.
86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // begin+step+step, ...}. The values do not
89 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
90 // ValuesIn(container) - Yields values from a C-style array, an STL
94 // for the math savvy) of the values generated
101 // each with parameter values "meeny", "miny", and "moe".
105 Values("meeny", "miny", "moe"))
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h 52 // the type of your parameter values. TestWithParam<T> is itself derived
54 // you are responsible for managing the lifespan of the pointed values.
82 // Range(begin, end [, step]) - Yields values {begin, begin+step,
83 // begin+step+step, ...}. The values do not
85 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
86 // ValuesIn(container) - Yields values from a C-style array, an STL
90 // for the math savvy) of the values generated
97 // each with parameter values "meeny", "miny", and "moe".
101 Values("meeny", "miny", "moe"))
    [all...]
  /external/clang/include/clang/Driver/
Arg.h 26 /// derive the argument values efficiently. In addition, Arg
50 /// Does this argument own its values.
53 /// The argument values, as C strings.
54 SmallVector<const char *, 2> Values;
85 unsigned getNumValues() const { return Values.size(); }
87 return Values[N];
91 return Values;
96 if (Values[i] == Value)
106 /// options only render their values when rendered as a input
115 /// its values, for debugging and diagnostics
    [all...]
  /external/guava/guava/src/com/google/common/collect/
SingletonImmutableMap.java 96 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;
104 private static class Values<V> extends ImmutableCollection<V> {
107 Values(V singleValue) {
RegularImmutableMap.java 246 private transient ImmutableCollection<V> values; field in class:RegularImmutableMap
248 @Override public ImmutableCollection<V> values() { method in class:RegularImmutableMap
249 ImmutableCollection<V> v = values;
250 return (v == null) ? (values = new Values<V>(this)) : v;
254 private static class Values<V> extends ImmutableCollection<V> {
257 Values(RegularImmutableMap<?, V> map) {
ImmutableMultimap.java 39 * An immutable {@link Multimap}. Does not permit null keys or values.
119 * value orderings, allows duplicate values, and performs better than
134 * duplicate values,
197 * Stores a collection of values with the same key in the built multimap.
199 * @throws NullPointerException if {@code key}, {@code values}, or any
200 * element in {@code values} is null. The builder is left in an invalid
203 public Builder<K, V> putAll(K key, Iterable<? extends V> values) {
205 for (V value : values) {
212 * Stores an array of values with the same key in the built multimap.
217 public Builder<K, V> putAll(K key, V... values) {
422 Collection<V> values = map.get(key); local
581 private transient ImmutableCollection<V> values; typedefs
589 public ImmutableCollection<V> values() { method
    [all...]
  /external/clang/lib/Driver/
ArgList.cpp 172 SmallVector<const char *, 16> Values;
173 AddAllArgValues(Values, Id);
174 return std::vector<std::string>(Values.begin(), Values.end());
  /external/jhead/
gpsinfo.c 191 double Values[3];
224 Values[a] = ConvertAnyFormat(ValuePtr+a*ComponentSize, Format);
227 sprintf(TempString, FmtString, Values[0], Values[1], Values[2]);
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 1 //===-- Bitcode/Writer/ValueEnumerator.h - Number values --------*- C++ -*-===//
10 // This class gives values and types Unique ID's.
50 ValueList Values;
71 /// When a function is incorporated, this is the size of the Values list
108 /// getFunctionConstantRange - Return the range of values that corresponds to
115 const ValueList &getValues() const { return Values; }
  /external/webkit/Source/JavaScriptCore/wtf/
HashIterators.h 41 typedef HashTableConstValuesIterator<HashTableType, KeyType, MappedType> Values;
53 Values values() { return Values(*this); } function in struct:WTF::HashTableConstIteratorAdapter
63 typedef HashTableValuesIterator<HashTableType, KeyType, MappedType> Values;
80 Values values() { return Values(*this); } function in struct:WTF::HashTableIteratorAdapter
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 1 //===-- Bitcode/Writer/ValueEnumerator.h - Number values --------*- C++ -*-===//
10 // This class gives values and types Unique ID's.
49 ValueList Values;
70 /// When a function is incorporated, this is the size of the Values list
104 /// getFunctionConstantRange - Return the range of values that corresponds to
111 const ValueList &getValues() const { return Values; }
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 1 //===-- Bitcode/Writer/ValueEnumerator.h - Number values --------*- C++ -*-===//
10 // This class gives values and types Unique ID's.
49 ValueList Values;
70 /// When a function is incorporated, this is the size of the Values list
104 /// getFunctionConstantRange - Return the range of values that corresponds to
111 const ValueList &getValues() const { return Values; }
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 48 /// An Hashtable-backed dictionary that enumerates Keys and Values in
420 public ICollection Values
  /external/clang/lib/Rewrite/
DeltaTree.cpp 22 /// than binary trees, because they store multiple keys/values in each node.
69 /// Values - This tracks the SourceDelta's currently in this node.
71 SourceDelta Values[2*WidthFactor-1];
73 /// NumValuesUsed - This tracks the number of values this node currently
81 /// FullDelta - This is the full delta of all the values in this node and
95 return Values[i];
99 return Values[i];
138 Values[0] = IR.Split;
171 NewFullDelta += Values[i].Delta;
199 Values[i].Delta += Delta
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.h 274 /// Values - keep track of the mapping from parent values to values in the new
275 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
278 /// 2. (Null, false) - the value is mapped to multiple values in
286 ValueMap Values;
309 /// This is used for values whose live range doesn't match RegAssign exactly.
321 /// removeBackCopies - Remove the copy instructions that defines the values
334 /// transferValues - Transfer values to the new ranges.
338 /// extendPHIKillRanges - Extend the ranges of all values killed by origina
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 74 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
75 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 28 * {@code null} values.
54 Values values = values(currentThread); local
55 if (values != null) {
56 Object[] table = values.table;
57 int index = hash & values.mask;
62 values = initializeValues(currentThread);
65 return (T) values.getAfterMiss(this);
87 Values values = values(currentThread) local
104 Values values = values(currentThread); local
120 Values values(Thread current) { method in class:ThreadLocal
    [all...]
  /external/clang/test/SemaCXX/
array-bounds.cpp 167 switch (myVal) { // expected-warning {{enumeration values 'enumB_X' and 'enumB_Z' not handled in switch}}
173 // Test that if all the values of an enum covered, that the 'default' branch
175 enum Values { A, B, C, D };
176 void test_all_enums_covered(enum Values v) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultimap.java 38 * An immutable {@link Multimap}. Does not permit null keys or values.
118 * value orderings, allows duplicate values, and performs better than
133 * duplicate values,
196 * Stores a collection of values with the same key in the built multimap.
198 * @throws NullPointerException if {@code key}, {@code values}, or any
199 * element in {@code values} is null. The builder is left in an invalid
202 public Builder<K, V> putAll(K key, Iterable<? extends V> values) {
204 for (V value : values) {
211 * Stores an array of values with the same key in the built multimap.
216 public Builder<K, V> putAll(K key, V... values) {
412 Collection<V> values = map.get(key); local
571 private transient ImmutableCollection<V> values; typedefs
579 public ImmutableCollection<V> values() { method
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 276 std::vector<char> Values;
296 : Operation(Op), Label(L), Values(Vals.begin(), Vals.end()) {
304 return StringRef(&Values[0], Values.size());
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 134 /// Attributes values.
136 SmallVector<DIEValue*, 32> Values;
153 const SmallVector<DIEValue*, 32> &getValues() const { return Values; }
163 Values.push_back(Value);
355 /// DIEBlock - A block of values. Primarily used for location expressions.
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 121 union Values {
124 Values(unsigned r) : RegNum(r) {}
125 Values(int64_t i) : ImmVal(i) {}

Completed in 1012 milliseconds

1 2 3