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

1 2 3

  /external/chromium_org/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/chromium_org/third_party/mesa/src/src/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/mesa3d/src/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/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 60 llvm::Constant *Values[] = {Zero,
63 llvm::Constant *Init = llvm::ConstantStruct::get(IdentTy, Values);
  /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.
55 /// \brief Does this argument own its values?
58 /// \brief The argument values, as C strings.
59 SmallVector<const char *, 2> Values;
93 unsigned getNumValues() const { return Values.size(); }
95 return Values[N];
99 return Values;
104 if (Values[i] == Value)
115 /// The distinction is that some options only render their values
122 /// its values, for debugging and diagnostics
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.cpp 105 const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
108 // Size the DIE attribute values.
109 for (unsigned i = 0, N = Values.size(); i < N; ++i)
111 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
DIE.cpp 129 const SmallVectorImpl<DIEValue *> &Values = getValues();
134 for (size_t i = 0; i < Values.size(); ++i)
136 return Values[i];
174 Values[i]->print(O);
441 for (unsigned i = 0, N = Values.size(); i < N; ++i)
442 Size += Values[i]->SizeOf(AP, AbbrevData[i].getForm());
462 for (unsigned i = 0, N = Values.size(); i < N; ++i)
463 Values[i]->EmitValue(Asm, AbbrevData[i].getForm());
496 for (unsigned i = 0, N = Values.size(); i < N; ++i)
497 Size += Values[i]->SizeOf(AP, AbbrevData[i].getForm())
    [all...]
DIEHash.cpp 34 const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
39 for (size_t i = 0; i < Values.size(); ++i) {
41 DIEValue *V = Values[i];
126 const SmallVectorImpl<DIEValue *> &Values = Die.getValues();
131 Attrs.NAME.Val = Values[i]; \
135 for (size_t i = 0, e = Values.size(); i != e; ++i) {
275 // Hash all of the values in a block like set of values. This assumes that
277 void DIEHash::hashBlockData(const SmallVectorImpl<DIEValue *> &Values) {
278 for (SmallVectorImpl<DIEValue *>::const_iterator I = Values.begin()
    [all...]
DebugLocEntry.h 91 SmallVector<Value, 1> Values;
101 Values.push_back(std::move(Val));
109 if ((End == Next.Begin && Values == Next.Values)) {
118 const ArrayRef<Value> getValues() const { return Values; }
119 void addValue(Value Val) { Values.push_back(Val); }
DwarfAccelTable.h 51 // section contains all of the 32-bit hash values in contiguous memory, and
85 uint32_t hashes_count; // The total number of unique hash values
185 std::vector<HashDataContents *> Values;
208 for (HashDataContents *C : Data.Values) {
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashIterators.h 41 typedef HashTableConstValuesIterator<HashTableType, KeyType, MappedType> Values;
54 Values values() { return Values(*this); } function in struct:WTF::HashTableConstIteratorAdapter
64 typedef HashTableValuesIterator<HashTableType, KeyType, MappedType> Values;
82 Values values() { return Values(*this); } function in struct:WTF::HashTableIteratorAdapter
  /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/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/Option/
ArgList.cpp 215 SmallVector<const char *, 16> Values;
216 AddAllArgValues(Values, Id);
217 return std::vector<std::string>(Values.begin(), Values.end());
  /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/clang/unittests/ASTMatchers/Dynamic/
ParserTest.cpp 38 Values.push_back(Value);
68 std::vector<VariantValue> Values;
82 EXPECT_EQ(5U, Sema.Values.size());
83 EXPECT_EQ(0U, Sema.Values[0].getUnsigned());
84 EXPECT_EQ(123U, Sema.Values[1].getUnsigned());
85 EXPECT_EQ(31U, Sema.Values[2].getUnsigned());
95 EXPECT_EQ(3ULL, Sema.Values.size());
96 EXPECT_EQ("Foo", Sema.Values[0].getString());
97 EXPECT_EQ("", Sema.Values[1].getString());
128 EXPECT_EQ(1ULL, Sema.Values.size())
    [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.
52 ValueList Values;
81 /// When a function is incorporated, this is the size of the Values list
125 /// getFunctionConstantRange - Return the range of values that corresponds to
132 const ValueList &getValues() const { return Values; }
  /external/llvm/lib/CodeGen/
SplitKit.h 276 /// Values - keep track of the mapping from parent values to values in the new
277 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
280 /// 2. (Null, false) - the value is mapped to multiple values in
288 ValueMap Values;
311 /// This is used for values whose live range doesn't match RegAssign exactly.
323 /// removeBackCopies - Remove the copy instructions that defines the values
336 /// transferValues - Transfer values to the new ranges.
340 /// extendPHIKillRanges - Extend the ranges of all values killed by origina
    [all...]
  /external/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 240 static unsigned Values[] = {
243 Inst.addOperand(MCOperand::CreateImm(Values[Val]));

Completed in 1018 milliseconds

1 2 3