/external/llvm/unittests/ADT/ |
TinyPtrVectorTest.cpp | 56 void appendValues(VectorT &V, ArrayRef<PtrT> Values) { 57 for (size_t i = 0, e = Values.size(); i != e; ++i) 58 V.push_back(Values[i]); 68 void expectValues(const VectorT &V, ArrayRef<PtrT> Values) { 69 EXPECT_EQ(Values.empty(), V.empty()); 70 EXPECT_EQ(Values.size(), V.size()); 71 for (size_t i = 0, e = Values.size(); i != e; ++i) { 72 EXPECT_EQ(Values[i], V[i]); 73 EXPECT_EQ(Values[i], *std::next(V.begin(), i)); 75 EXPECT_EQ(V.end(), std::next(V.begin(), Values.size())) [all...] |
/bootable/recovery/tests/component/ |
verifier_test.cpp | 189 ::testing::Values( 197 ::testing::Values( 205 ::testing::Values( 213 ::testing::Values( 220 ::testing::Values(
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
p5.cpp | 131 template<int ...Values> 135 Values; // expected-error{{expression contains unexpanded parameter pack 'Values'}} 141 (Values); // expected-error{{expression contains unexpanded parameter pack 'Values'}} 143 -Values; // expected-error{{expression contains unexpanded parameter pack 'Values'}} 148 __builtin_offsetof(OffsetMe, array[Values]); // expected-error{{expression contains unexpanded parameter pack 'Values'}} 245 void test_unexpanded_exprs(Types ...values) { [all...] |
/external/llvm/include/llvm/Support/ |
CommandLine.h | 75 // PrintOptionValues - Print option values. 76 // With -print-options print the difference between option values and defaults. 77 // With -print-all-options print all option values. 89 /// Literal options are used by some parsers to register special option values. 494 // Non-class option values. 562 // values - For custom data types, allow specifying a group of values together 563 // as the values that go into the mapping that the option handler uses. Note 564 // that the values list must always have a 0 at the end of the list to indicate 571 SmallVector<std::pair<const char *, std::pair<int, const char *>>, 4> Values; 598 values(const char *Arg, DataType Val, const char *Desc, ...) { function in namespace:llvm [all...] |
/external/swiftshader/third_party/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/libvpx/libvpx/test/ |
fdct8x8_test.cc | 480 // Random values less than the threshold, either positive or negative 636 ::testing::Values( 642 ::testing::Values(make_tuple(&vpx_fdct8x8_c, 650 ::testing::Values( 666 ::testing::Values( 675 ::testing::Values(make_tuple(&vpx_fdct8x8_neon, 681 ::testing::Values( 691 ::testing::Values(make_tuple(&vpx_fdct8x8_sse2, 696 ::testing::Values( 706 ::testing::Values(make_tuple(&vpx_fdct8x8_sse2, &vpx_idct8x8_64_add_c, 0 [all...] |
lpf_test.cc | 399 ::testing::Values(make_tuple(&vpx_highbd_lpf_horizontal_4_sse2, 450 ::testing::Values( 467 ::testing::Values(make_tuple(&vpx_lpf_horizontal_16_avx2, 477 ::testing::Values(make_tuple(&vpx_highbd_lpf_horizontal_4_dual_sse2, 504 ::testing::Values(make_tuple(&vpx_lpf_horizontal_4_dual_sse2, 519 ::testing::Values(make_tuple(&vpx_highbd_lpf_horizontal_4_neon, 569 ::testing::Values(make_tuple(&vpx_highbd_lpf_horizontal_4_dual_neon, 596 ::testing::Values( 609 ::testing::Values(make_tuple(&vpx_lpf_horizontal_8_dual_neon, 623 ::testing::Values( [all...] |
codec_factory.h | 163 ::testing::Values(static_cast<const libvpx_test::CodecFactory *>( \ 259 ::testing::Values(static_cast<const libvpx_test::CodecFactory *>( \
|
/external/swiftshader/third_party/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<Ty>' - 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...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
optparse.py | 30 'Values',
189 format string controlling how short options with values are
779 def process(self, opt, value, values, parser):
789 self.action, self.dest, opt, value, values, parser)
791 def take_action(self, action, dest, opt, value, values, parser):
793 setattr(values, dest, value)
795 setattr(values, dest, self.const)
797 setattr(values, dest, True)
799 setattr(values, dest, False)
801 values.ensure_value(dest, []).append(value) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
optparse.py | 30 'Values',
189 format string controlling how short options with values are
778 def process(self, opt, value, values, parser):
788 self.action, self.dest, opt, value, values, parser)
790 def take_action(self, action, dest, opt, value, values, parser):
792 setattr(values, dest, value)
794 setattr(values, dest, self.const)
796 setattr(values, dest, True)
798 setattr(values, dest, False)
800 values.ensure_value(dest, []).append(value) [all...] |
/external/clang/test/CXX/temp/temp.param/ |
p15-cxx0x.cpp | 172 template<T... Values> struct apply { }; 174 template <class... T, T... Values> struct static_array; // expected-error {{must be the last}}
|
/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/llvm/lib/CodeGen/AsmPrinter/ |
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; 207 for (HashDataContents *C : Data.Values) {
|
/external/python/cpython2/Lib/ |
optparse.py | 30 'Values', 189 format string controlling how short options with values are 779 def process(self, opt, value, values, parser): 789 self.action, self.dest, opt, value, values, parser) 791 def take_action(self, action, dest, opt, value, values, parser): 793 setattr(values, dest, value) 795 setattr(values, dest, self.const) 797 setattr(values, dest, True) 799 setattr(values, dest, False) 801 values.ensure_value(dest, []).append(value [all...] |
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
ResourcesTest.java | 26 import com.xtremelabs.robolectric.annotation.Values; 84 @Values( locale="fr" )
|
/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. 56 ValueList Values; 86 /// When a function is incorporated, this is the size of the Values list 143 /// getFunctionConstantRange - Return the range of values that corresponds to 150 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. 56 ValueList Values; 86 /// When a function is incorporated, this is the size of the Values list 143 /// getFunctionConstantRange - Return the range of values that corresponds to 150 const ValueList &getValues() const { return Values; }
|
/frameworks/compile/slang/BitWriter_3_2/ |
ValueEnumerator.h | 1 //===-- Bitcode/Writer/ValueEnumerator.h - Number values --------*- C++ -*-===// 10 // This class gives values and types Unique ID's. 59 ValueList Values; 89 /// When a function is incorporated, this is the size of the Values list 146 /// getFunctionConstantRange - Return the range of values that corresponds to 153 const ValueList &getValues() const { return Values; }
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
optparse.py | 30 'Values', 189 format string controlling how short options with values are 778 def process(self, opt, value, values, parser): 788 self.action, self.dest, opt, value, values, parser) 790 def take_action(self, action, dest, opt, value, values, parser): 792 setattr(values, dest, value) 794 setattr(values, dest, self.const) 796 setattr(values, dest, True) 798 setattr(values, dest, False) 800 values.ensure_value(dest, []).append(value [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
optparse.py | 30 'Values', 189 format string controlling how short options with values are 778 def process(self, opt, value, values, parser): 788 self.action, self.dest, opt, value, values, parser) 790 def take_action(self, action, dest, opt, value, values, parser): 792 setattr(values, dest, value) 794 setattr(values, dest, self.const) 796 setattr(values, dest, True) 798 setattr(values, dest, False) 800 values.ensure_value(dest, []).append(value [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
lower.go | 19 for _, v := range b.Values {
|
regalloc.go | 13 // The greedy allocator moves values into registers just before they 41 // Phi values are special, as always. We define two kinds of phis, those 66 // Use an affinity graph to mark two values which should use the 121 // distance is a measure of how far into the future values are used. 220 // live values at the end of each block. live[b.ID] is a list of value IDs 231 values []valState 240 // registers that contain values which can't be kicked out 306 s.values[v.ID].regs &^= regMask(1) << r 341 s.values[v.ID].regs |= regMask(1) << r 363 // TODO: Prefer registers with already spilled Values [all...] |
schedule_test.go | 39 for _, v := range b.Values {
|
shortcircuit_test.go | 44 for _, v := range b.Values {
|