Searched defs:Values (Results 1 - 25 of 94) sorted by relevance

1234

/external/robolectric/src/main/java/com/xtremelabs/robolectric/annotation/
H A DValues.java10 public @interface Values { interface
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DDoubleKeyMap.cs41 public virtual ICollection<TValue> Values(TKey1 k1) { method in class:Antlr.Runtime.Debug.Misc.DoubleKeyMap
47 return data2.Values;
65 public virtual ICollection<TValue> Values() { method in class:Antlr.Runtime.Debug.Misc.DoubleKeyMap
67 foreach (IDictionary<TKey2, TValue> k2 in data.Values) {
68 foreach (TValue v in k2.Values) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DDoubleKeyMap`3.cs47 public virtual ICollection<TValue> Values(TKey1 k1) method in class:Antlr.Runtime.Debug.Misc.DoubleKeyMap
54 return data2.Values;
74 public virtual ICollection<TValue> Values() method in class:Antlr.Runtime.Debug.Misc.DoubleKeyMap
77 foreach (IDictionary<TKey2, TValue> k2 in data.Values)
79 foreach (TValue v in k2.Values)
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableMap.java100 return (v == null) ? (values = new Values<V>(singleValue)) : v;
104 private static class Values<V> extends ImmutableCollection<V> { class in class:SingletonImmutableMap
107 Values(V singleValue) { method in class:SingletonImmutableMap.Values
H A DRegularImmutableMap.java250 return (v == null) ? (values = new Values<V>(this)) : v;
254 private static class Values<V> extends ImmutableCollection<V> { class in class:RegularImmutableMap
257 Values(RegularImmutableMap<?, V> map) { method in class:RegularImmutableMap.Values
/external/llvm/include/llvm/Option/
H A DArg.h59 SmallVector<const char *, 2> Values; member in class:llvm::opt::Arg
93 unsigned getNumValues() const { return Values.size(); }
95 return Values[N];
99 return Values;
104 if (Values[i] == Value)
/external/llvm/unittests/ADT/
H A DTinyPtrVectorTest.cpp58 void appendValues(VectorT &V, ArrayRef<PtrT> Values) { argument
59 for (size_t i = 0, e = Values.size(); i != e; ++i)
60 V.push_back(Values[i]);
70 void expectValues(const VectorT &V, ArrayRef<PtrT> Values) { argument
71 EXPECT_EQ(Values.empty(), V.empty());
72 EXPECT_EQ(Values.size(), V.size());
73 for (size_t i = 0, e = Values.size(); i != e; ++i) {
74 EXPECT_EQ(Values[i], V[i]);
75 EXPECT_EQ(Values[i], *std::next(V.begin(), i));
77 EXPECT_EQ(V.end(), std::next(V.begin(), Values
[all...]
/external/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp60 llvm::Constant *Values[] = {Zero, local
63 llvm::Constant *Init = llvm::ConstantStruct::get(IdentTy, Values);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp129 const SmallVectorImpl<DIEValue *> &Values = getValues(); local
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[
[all...]
H A DDwarfFile.cpp105 const SmallVectorImpl<DIEValue *> &Values = Die.getValues(); local
109 for (unsigned i = 0, N = Values.size(); i < N; ++i)
111 Offset += Values[i]->SizeOf(Asm, AbbrevData[i].getForm());
H A DDIEHash.cpp34 const SmallVectorImpl<DIEValue *> &Values = Die.getValues(); local
39 for (size_t i = 0; i < Values.size(); ++i) {
41 DIEValue *V = Values[i];
126 const SmallVectorImpl<DIEValue *> &Values = Die.getValues(); local
131 Attrs.NAME.Val = Values[i]; \
135 for (size_t i = 0, e = Values.size(); i != e; ++i) {
277 void DIEHash::hashBlockData(const SmallVectorImpl<DIEValue *> &Values) { argument
278 for (SmallVectorImpl<DIEValue *>::const_iterator I = Values.begin(),
279 E = Values.end();
H A DDebugLocEntry.h91 SmallVector<Value, 1> Values; member in class:llvm::DebugLocEntry
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); }
H A DDwarfAccelTable.h185 std::vector<HashDataContents *> Values; member in struct:llvm::DwarfAccelTable::DataArray
208 for (HashDataContents *C : Data.Values) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs48 /// An Hashtable-backed dictionary that enumerates Keys and Values in
420 public ICollection Values property in class:Antlr.Runtime.Collections.HashList
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashIterators.h41 typedef HashTableConstValuesIterator<HashTableType, KeyType, MappedType> Values; typedef in struct:WTF::HashTableConstIteratorAdapter
54 Values values() { return Values(*this); }
64 typedef HashTableValuesIterator<HashTableType, KeyType, MappedType> Values; typedef in struct:WTF::HashTableIteratorAdapter
82 Values values() { return Values(*this); }
/external/clang/lib/Rewrite/Core/
H A DDeltaTree.cpp69 /// Values - This tracks the SourceDelta's currently in this node.
71 SourceDelta Values[2*WidthFactor-1]; member in class:__anon17962::DeltaTreeNode
95 return Values[i];
99 return Values[i];
136 Values[0] = IR.Split;
168 NewFullDelta += Values[i].Delta;
196 Values[i].Delta += Delta;
207 memmove(&Values[i+1], &Values[i], sizeof(Values[
[all...]
/external/clang/unittests/ASTMatchers/Dynamic/
H A DParserTest.cpp38 Values.push_back(Value);
68 std::vector<VariantValue> Values; member in class:clang::ast_matchers::dynamic::__anon19535::MockSema
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
[all...]
/external/eigen/bench/
H A Dsparse_setter.cpp45 typedef std::vector<float> Values; typedef
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
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMultimap.java581 return (result == null) ? (values = new Values<V>(this)) : result;
584 private static class Values<V> extends ImmutableCollection<V> { class in class:ImmutableMultimap
587 Values(ImmutableMultimap<?, V> multimap) { method in class:ImmutableMultimap.Values
/external/jhead/
H A Dgpsinfo.c191 double Values[3]; local
224 Values[a] = ConvertAnyFormat(ValuePtr+a*ComponentSize, Format);
227 sprintf(TempString, FmtString, Values[0], Values[1], Values[2]);
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h52 ValueList Values; member in class:llvm::ValueEnumerator
81 /// When a function is incorporated, this is the size of the Values list
132 const ValueList &getValues() const { return Values; }
/external/llvm/lib/CodeGen/
H A DSplitKit.h276 /// Values - keep track of the mapping from parent values to values in the new
277 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
288 ValueMap Values; member in class:llvm::SplitEditor
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h74 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation member in struct:llvm::ExecutionContext
75 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
/external/llvm/lib/IR/
H A DAttributeImpl.h80 static void Profile(FoldingSetNodeID &ID, StringRef Kind, StringRef Values) { argument
82 if (!Values.empty()) ID.AddString(Values);
/external/llvm/lib/Option/
H A DArgList.cpp215 SmallVector<const char *, 16> Values; local
216 AddAllArgValues(Values, Id);
217 return std::vector<std::string>(Values.begin(), Values.end());

Completed in 1435 milliseconds

1234