HomeSort by relevance Sort by last modified time
    Searched refs:Values (Results 51 - 75 of 129) sorted by null

1 23 4 5 6

  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 8 template<int ...Values = 0> // expected-error{{template parameter pack cannot have a default argument}}
  /external/llvm/include/llvm/TableGen/
Record.h 11 // types, values, and high-level data structures.
79 /// typeIsConvertibleTo - Return true if all values of 'this' type can be
116 // all values of type 'RHS' can be converted to the 'this' type.
306 // ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
308 /// ListRecTy - 'list&lt;Ty&gt;' - Represent a list of values, all of which must
499 /// isComplete - This virtual method should be overridden by values that may
811 std::vector<Init*> Values;
817 : TypedInit(ListRecTy::get(EltTy)), Values(Range.begin(), Range.end()) {}
827 unsigned getSize() const { return Values.size(); }
829 assert(i < Values.size() && "List element index out of range!")
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 72 // PrintOptionValues - Print option values.
73 // With -print-options print the difference between option values and defaults.
74 // With -print-all-options print all option values.
382 // Non-class option values.
443 // values - For custom data types, allow specifying a group of values together
444 // as the values that go into the mapping that the option handler uses. Note
445 // that the values list must always have a 0 at the end of the list to indicate
453 SmallVector<std::pair<const char *, std::pair<int, const char *> >,4> Values;
459 Values.push_back(std::make_pair(EnumName, std::make_pair(Val, Desc)))
480 ValuesClass<DataType> END_WITH_NULL values(const char *Arg, DataType Val, function in namespace:llvm::cl
    [all...]
  /external/clang/test/SemaCXX/
array-bounds.cpp 163 switch (myVal) { // expected-warning {{enumeration values 'enumB_X' and 'enumB_Z' not handled in switch}}
169 // Test that if all the values of an enum covered, that the 'default' branch
171 enum Values { A, B, C, D };
172 void test_all_enums_covered(enum Values v) {
  /external/webkit/Source/WebKit2/WebProcess/win/
WebProcessWin.cpp 179 HashMap<uint64_t, RefPtr<WebPage> >::const_iterator::Values end = m_pageMap.end();
180 for (HashMap<uint64_t, RefPtr<WebPage> >::const_iterator::Values it = m_pageMap.begin(); it != end; ++it)
  /external/clang/lib/Driver/
ArgList.cpp 152 SmallVector<const char *, 16> Values;
153 AddAllArgValues(Values, Id);
154 return std::vector<std::string>(Values.begin(), Values.end());
  /external/guava/src/com/google/common/collect/
RegularImmutableMap.java 35 private final transient Object[] table; // alternating keys and values
113 // deserialization should call entrySet(), keySet(), or values() on the
169 private transient ImmutableCollection<V> values; field in class:RegularImmutableMap
171 @Override public ImmutableCollection<V> values() { method in class:RegularImmutableMap
172 ImmutableCollection<V> v = values;
173 return (v == null) ? (values = new Values<V>(this)) : v;
177 private static class Values<V> extends ImmutableCollection<V> {
180 Values(RegularImmutableMap<?, V> map) {
ImmutableMultimap.java 32 * An immutable {@link Multimap}. Does not permit null keys or values.
108 * value orderings, allows duplicate values, and performs better than
155 * Stores a collection of values with the same key in the built multimap.
157 * @throws NullPointerException if {@code key}, {@code values}, or any
158 * element in {@code values} is null. The builder is left in an invalid
161 public Builder<K, V> putAll(K key, Iterable<? extends V> values) {
163 for (V value : values) {
170 * Stores an array of values with the same key in the built multimap.
175 public Builder<K, V> putAll(K key, V... values) {
176 return putAll(key, Arrays.asList(values));
330 Collection<V> values = map.get(key); local
474 private transient ImmutableCollection<V> values; typedefs
481 public ImmutableCollection<V> values() { method
    [all...]
  /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);
392 /// DIEBlock - A block of values. Primarily used for location expressions.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 25 import com.android.ide.eclipse.adt.internal.wizards.newxmlfile.NewXmlFileWizard.Values;
48 private Values mValues;
62 * @param values value object holding current wizard state
64 public ChooseConfigurationPage(NewXmlFileWizard.Values values) {
66 mValues = values;
NewXmlFileWizard.java 74 private Values mValues;
81 mValues = new Values();
99 protected NewXmlFileCreationPage createMainPage(NewXmlFileWizard.Values values) {
100 return new NewXmlFileCreationPage(MAIN_PAGE_NAME, values);
357 * Specific New XML File wizard tied to the {@link ResourceFolderType#VALUES} type
367 setWindowTitle("New Android Values XML File");
368 super.mMainPage.setTitle("New Android Values XML File");
369 super.mMainPage.setDescription("Creates a new Android Values XML file.");
370 super.mMainPage.setInitialFolderType(ResourceFolderType.VALUES);
    [all...]
  /external/llvm/include/llvm/
Instructions.h 719 unsigned Values, const Twine &NameStr,
722 unsigned Values, const Twine &NameStr,
730 unsigned Values = 1 + unsigned(IdxList.size());
731 return new(Values)
732 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertBefore);
737 unsigned Values = 1 + unsigned(IdxList.size());
738 return new(Values)
739 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertAtEnd);
847 unsigned Values,
855 OperandTraits<GetElementPtrInst>::op_end(this) - Values,
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 11 // engine, which structurally compares global values within a module.
120 /// The current mapping from old local values to new local values.
121 DenseMap<Value*, Value*> Values;
184 Values[L] = R;
372 // Ask the engine about global values.
428 // Fall out if the values have different kind.
440 return Values[L] == R || TentativeValues.count(std::make_pair(L, R));
443 return Values[L] == R;
468 Values[&*LI] = &*RI
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 123 /// isStored - This global is stored to by multiple values or something else
    [all...]
  /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 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/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/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 132 RenamePassData() : BB(NULL), Pred(NULL), Values() {}
134 const ValVector &V) : BB(B), Pred(P), Values(V) {}
137 ValVector Values;
142 Values.swap(RHS.Values);
326 // Remember the basic blocks which define new values for the alloca
538 // Set the incoming values for the basic block to be null values for all of
542 RenamePassData::ValVector Values(Allocas.size());
544 Values[i] = UndefValue::get(Allocas[i]->getAllocatedType())
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnection.cpp 127 for (HashMap<uint64_t, PluginProxy*>::const_iterator::Values it = m_plugins.begin().values(), end = m_plugins.end().values(); it != end; ++it) {
  /external/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 270 // Can find enum values.
475 testing::Values(&SimpleDescriptorDatabaseTestCase::New));
477 testing::Values(&EncodedDescriptorDatabaseTestCase::New));
479 testing::Values(&DescriptorPoolDatabaseTestCase::New));
  /libcore/luni/src/main/java/java/lang/
Thread.java 150 * Normal thread local values.
152 ThreadLocal.Values localValues;
155 * Inheritable thread local values.
157 ThreadLocal.Values inheritableValues;
434 inheritableValues = new ThreadLocal.Values(currentThread.inheritableValues);
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.h 267 /// Values - keep track of the mapping from parent values to values in the new
268 /// intervals. Given a pair (RegIdx, ParentVNI->id), Values contains:
271 /// 2. (Null, false) - the value is mapped to multiple values in
279 ValueMap Values;
302 /// This is used for values whose live range doesn't match RegAssign exactly.
314 /// removeBackCopies - Remove the copy instructions that defines the values
327 /// transferValues - Transfer values to the new ranges.
331 /// extendPHIKillRanges - Extend the ranges of all values killed by origina
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 44 // Floating point values have an explicit -0.0 value.
226 /// so. The return values are:
483 /// specified type. This should only be used for simple constant values like
692 SmallVector<Constant*, 8> Values;
695 Values.push_back(Val);
697 return get(T, Values);
859 /// operands replaced with the specified values. The specified array must
    [all...]
Verifier.cpp 544 " does not apply to return values!", V);
646 "Functions cannot return aggregate values!", &F);
679 // Check that the argument values match the function type for this function...
737 SmallVector<std::pair<BasicBlock*, Value*>, 8> Values;
749 // Get and sort all incoming values in the PHI node...
750 Values.clear();
751 Values.reserve(PN->getNumIncomingValues());
753 Values.push_back(std::make_pair(PN->getIncomingBlock(i),
755 std::sort(Values.begin(), Values.end())
    [all...]

Completed in 580 milliseconds

1 23 4 5 6