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

1 2 3 4 5 6

  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p8-0x.cpp 3 template<int ...Values> struct X1;
5 template<int ...Values>
6 struct X1<0, Values+1 ...>; // expected-error{{non-type template argument depends on a template parameter of the partial specialization}}
  /external/chromium/testing/gtest/test/
gtest-param-test2_test.cc 41 using ::testing::Values;
47 ParamGenerator<int> extern_gen = Values(33);
55 Values(33, 66));
63 Values(42*3, 42*4, 42*5));
gtest-param-test_test.cc 62 using ::testing::Values;
137 // We cannot use EXPECT_EQ() here as the values may be tuples,
181 // generates an expected sequence of values. The general test pattern
364 ContainerType values; local
365 values.push_back(3);
366 values.push_back(5);
367 values.push_back(8);
368 const ParamGenerator<int> gen = ValuesIn(values);
377 ContainerType values; local
378 values.push_back(3)
391 ContainerType values; local
403 ContainerType values; local
    [all...]
gtest_filter_unittest_.cc 130 INSTANTIATE_TEST_CASE_P(SeqP, ParamTest, testing::Values(1, 2));
131 INSTANTIATE_TEST_CASE_P(SeqQ, ParamTest, testing::Values(5, 6));
  /external/gtest/test/
gtest-param-test2_test.cc 41 using ::testing::Values;
47 ParamGenerator<int> extern_gen = Values(33);
55 Values(33, 66));
63 Values(42*3, 42*4, 42*5));
gtest-param-test_test.cc 60 using ::testing::Values;
122 // generates an expected sequence of values. The general test pattern
305 ContainerType values; local
306 values.push_back(3);
307 values.push_back(5);
308 values.push_back(8);
309 const ParamGenerator<int> gen = ValuesIn(values);
318 ContainerType values; local
319 values.push_back(3);
320 values.push_back(5)
332 ContainerType values; local
344 ContainerType values; local
    [all...]
gtest_filter_unittest_.cc 139 INSTANTIATE_TEST_CASE_P(SeqP, ParamTest, testing::Values(1, 2));
140 INSTANTIATE_TEST_CASE_P(SeqQ, ParamTest, testing::Values(5, 6));
  /external/protobuf/gtest/test/
gtest-param-test2_test.cc 41 using ::testing::Values;
47 ParamGenerator<int> extern_gen = Values(33);
55 Values(33, 66));
63 Values(42*3, 42*4, 42*5));
gtest-param-test_test.cc 60 using ::testing::Values;
122 // generates an expected sequence of values. The general test pattern
305 ContainerType values; local
306 values.push_back(3);
307 values.push_back(5);
308 values.push_back(8);
309 const ParamGenerator<int> gen = ValuesIn(values);
318 ContainerType values; local
319 values.push_back(3);
320 values.push_back(5)
332 ContainerType values; local
344 ContainerType values; local
    [all...]
  /libcore/luni/src/main/java/java/lang/
InheritableThreadLocal.java 54 Values values(Thread current) { method in class:InheritableThreadLocal
59 Values initializeValues(Thread current) {
60 return current.inheritableValues = new Values();
ThreadLocal.java 28 * {@code null} values.
54 Values values = values(currentThread); local
55 if (values != null) {
56 Object[] table = values.table;
57 int index = hash & values.mask;
62 values = initializeValues(currentThread);
65 return (T) values.getAfterMiss(this);
87 Values values = values(currentThread) local
104 Values values = values(currentThread); local
120 Values values(Thread current) { method in class:ThreadLocal
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p11-0x.cpp 17 template<int V = 0, int ...Values> struct X2nt;
18 template<int V = 0, int ...Values> using A2nt = X2nt<V, Values...>;
34 template<int ...Values, // expected-error{{template parameter pack must be the last template parameter}}
37 template<int ...Values, // expected-error{{template parameter pack must be the last template parameter}}
54 template<int... Values> struct X1nt;
55 template<int ...Values, int V> struct X1nt<V, Values...> { };
64 template<int ...Values, int V>
65 void f1nt(X1nt<V, Values...>)
    [all...]
  /external/clang/test/CXX/expr/expr.unary/expr.sizeof/
p5-0x.cpp 8 template<int ...Values> struct count_ints {
9 static const unsigned value = sizeof...(Values);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-tuple.cpp 53 template<typename... Values> class tuple;
122 template<typename... Values>
123 tuple<typename make_tuple_result<Values>::type...>
124 make_tuple(const Values&... values) {
125 return tuple<typename make_tuple_result<Values>::type...>(values...);
128 template<typename... Values>
129 tuple<Values&...> tie(Values&... values)
    [all...]
example-bind.cpp 53 template<typename... Values> class tuple;
102 template<typename... Values>
103 tuple<typename make_tuple_result<Values>::type...>
104 make_tuple(const Values&... values) {
105 return tuple<typename make_tuple_result<Values>::type...>(values...);
108 template<typename... Values>
109 tuple<Values&...> tie(Values&... values)
    [all...]
parameter-matching.cpp 23 template<int ...Values> struct X1nt; // expected-note{{previous non-type template parameter pack declared here}}
24 template<int Values> struct X1nt; // expected-error{{non-type template parameter conflicts with previous non-type template parameter pack}}
metafunctions.cpp 70 template<int ...Values>
72 typedef int_tuple<Values*2 ...> type;
78 template<int ...Values>
80 typedef int_tuple<(Values*Values)...> type;
88 template<int ...Values>
89 struct square_tuple<int_tuple<Values...>> {
90 typedef int_tuple<(Values*Values)...> type;
96 template<int ...Values> struct sum
    [all...]
  /external/clang/include/clang/Driver/
Arg.h 26 /// derive the argument values efficiently. In addition, Arg
50 /// Does this argument own its values.
53 /// The argument values, as C strings.
54 SmallVector<const char *, 2> Values;
85 unsigned getNumValues() const { return Values.size(); }
87 return Values[N];
91 return Values;
96 if (Values[i] == Value)
106 /// options only render their values when rendered as a input
115 /// its values, for debugging and diagnostics
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-variadic-templates.cpp 9 template<int ...Values> struct int_tuple { };
59 template<int ...Values> int_tuple<Values...> f6() {}
  /external/clang/lib/Rewrite/
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];
138 Values[0] = IR.Split;
171 NewFullDelta += Values[i].Delta;
199 Values[i].Delta += Delta
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 19 template<Types ...Values> struct Inner;
  /external/clang/lib/Driver/
Arg.cpp 28 Values.push_back(Value0);
35 Values.push_back(Value0);
36 Values.push_back(Value1);
41 for (unsigned i = 0, e = Values.size(); i != e; ++i)
42 delete[] Values[i];
54 llvm::errs() << " Values: [";
55 for (unsigned i = 0, e = Values.size(); i != e; ++i) {
57 llvm::errs() << "'" << Values[i] << "'";
  /external/webkit/Source/WebCore/svg/
SVGFEColorMatrixElement.h 50 DECLARE_ANIMATED_NUMBER_LIST(Values, values)
  /external/chromium/testing/gtest/samples/
sample7_unittest.cc 46 using ::testing::Values;
109 // or bind them to a list of values which will be used as test parameters.
118 Values(&CreateOnTheFlyPrimeTable, &CreatePreCalculatedPrimeTable<1000>));
  /external/gtest/samples/
sample7_unittest.cc 46 using ::testing::Values;
111 // or bind them to a list of values which will be used as test parameters.
120 Values(&CreateOnTheFlyPrimeTable, &CreatePreCalculatedPrimeTable<1000>));

Completed in 527 milliseconds

1 2 3 4 5 6