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

1 2 3 4

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/annotation/
Values.java 4 * Indicate that roboletric should look for values that is specific for the locale
10 public @interface 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/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/libvpx/libvpx/third_party/googletest/src/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/open-vcdiff/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/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 31 /// derive the argument values efficiently. In addition, Arg
59 /// \brief Does this argument own its values?
62 /// \brief The argument values, as C strings.
63 SmallVector<const char *, 2> Values;
97 unsigned getNumValues() const { return Values.size(); }
99 return Values[N];
103 return Values;
108 if (Values[i] == Value)
119 /// The distinction is that some options only render their values
126 /// 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) {
  /external/llvm/include/llvm/Option/
Arg.h 30 /// derive the argument values efficiently. In addition, Arg
58 /// \brief Does this argument own its values?
61 /// \brief The argument values, as C strings.
62 SmallVector<const char *, 2> Values;
96 unsigned getNumValues() const { return Values.size(); }
98 return Values[N];
102 return Values;
107 if (Values[i] == Value)
118 /// The distinction is that some options only render their values
125 /// its values, for debugging and diagnostics
    [all...]
  /external/clang/lib/Driver/
ArgList.cpp 232 SmallVector<const char *, 16> Values;
233 AddAllArgValues(Values, Id);
234 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/Option/
ArgList.cpp 217 SmallVector<const char *, 16> Values;
218 AddAllArgValues(Values, Id);
219 return std::vector<std::string>(Values.begin(), Values.end());
  /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
  /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/Core/
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];
136 Values[0] = IR.Split;
168 NewFullDelta += Values[i].Delta;
196 Values[i].Delta += Delta
    [all...]
  /external/eigen/bench/
sparse_setter.cpp 45 typedef std::vector<float> Values;
47 EIGEN_DONT_INLINE Scalar* setinnerrand_eigen(const Coordinates& coords, const Values& vals);
48 EIGEN_DONT_INLINE Scalar* setrand_eigen_dynamic(const Coordinates& coords, const Values& vals);
49 EIGEN_DONT_INLINE Scalar* setrand_eigen_compact(const Coordinates& coords, const Values& vals);
50 EIGEN_DONT_INLINE Scalar* setrand_eigen_sumeq(const Coordinates& coords, const Values& vals);
51 EIGEN_DONT_INLINE Scalar* setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals);
52 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_dense(const Coordinates& coords, const Values& vals);
53 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals);
54 EIGEN_DONT_INLINE Scalar* setrand_scipy(const Coordinates& coords, const Values& vals);
55 EIGEN_DONT_INLINE Scalar* setrand_ublas_mapped(const Coordinates& coords, const Values& vals)
69 Values values; local
    [all...]
  /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;
75 /// When a function is incorporated, this is the size of the Values list
119 /// getFunctionConstantRange - Return the range of values that corresponds to
126 const ValueList &getValues() const { return Values; }
  /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
  /external/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 221 static unsigned Values[] = {
224 Inst.addOperand(MCOperand::CreateImm(Values[Val]));
  /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.
54 ValueList Values;
79 /// When a function is incorporated, this is the size of the Values list
123 /// getFunctionConstantRange - Return the range of values that corresponds to
130 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.
54 ValueList Values;
79 /// When a function is incorporated, this is the size of the Values list
123 /// getFunctionConstantRange - Return the range of values that corresponds to
130 const ValueList &getValues() const { return Values; }

Completed in 942 milliseconds

1 2 3 4