/external/valgrind/memcheck/tests/amd64-solaris/ |
context_sse.stdout.exp | 0 Values in the signal handler: 3 Values after the return from the signal handler:
|
/external/valgrind/memcheck/tests/x86-solaris/ |
context_sse.stdout.exp | 0 Values in the signal handler: 3 Values after the return from the signal handler:
|
/external/autotest/server/cros/faft/config/ |
brain.py | 9 class Values(veyron.Values):
|
ninja.py | 10 class Values(rambi.Values):
|
sumo.py | 10 class Values(rambi.Values):
|
fizz.py | 8 class Values(object): 9 """FAFT config values for Fizz."""
|
link.py | 8 class Values(object): 9 """FAFT config values for Link."""
|
samus.py | 8 class Values(object): 9 """FAFT config values for Samus."""
|
/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/annotation-tools/asmx/test/conform/annotations/ |
Values.java | 18 classValue = Values.class, 32 classArrayValue = {Values.class, Values.class} 36 public class Values {
|
ValuesAnnotation.java | 9 * Annotation declaration with different values 23 Class classValue() default Values.class; 39 Class[] classArrayValue() default { Values.class, Values.class};
|
/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/llvm/lib/Transforms/ObjCARC/ |
ProvenanceAnalysisEvaluator.cpp | 48 static void insertIfNamed(SetVector<Value *> &Values, Value *V) { 51 Values.insert(V); 55 SetVector<Value *> Values; 58 insertIfNamed(Values, &Arg); 61 insertIfNamed(Values, &*I); 64 insertIfNamed(Values, Op); 71 for (Value *V1 : Values) { 73 for (Value *V2 : Values) {
|
/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; 91 unsigned getNumValues() const { return Values.size(); } 93 return Values[N]; 96 SmallVectorImpl<const char *> &getValues() { return Values; } 97 const SmallVectorImpl<const char *> &getValues() const { return Values; } 101 if (Values[i] == Value) 112 /// The distinction is that some options only render their values [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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; 91 unsigned getNumValues() const { return Values.size(); } 93 return Values[N]; 96 SmallVectorImpl<const char *> &getValues() { return Values; } 97 const SmallVectorImpl<const char *> &getValues() const { return Values; } 101 if (Values[i] == Value) 112 /// The distinction is that some options only render their values [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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; 91 unsigned getNumValues() const { return Values.size(); } 93 return Values[N]; 96 SmallVectorImpl<const char *> &getValues() { return Values; } 97 const SmallVectorImpl<const char *> &getValues() const { return Values; } 101 if (Values[i] == Value) 112 /// The distinction is that some options only render their values [all...] |
/external/llvm/lib/Option/ |
Arg.cpp | 29 Values.push_back(Value0); 36 Values.push_back(Value0); 37 Values.push_back(Value1); 42 for (unsigned i = 0, e = Values.size(); i != e; ++i) 43 delete[] Values[i]; 55 O << " Values: ["; 56 for (unsigned i = 0, e = Values.size(); i != e; ++i) { 58 O << "'" << Values[i] << "'"; 88 Output.append(Values.begin(), Values.end()) [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
example-tuple.cpp | 54 template<typename... Values> class tuple; 123 template<typename... Values> 124 tuple<typename make_tuple_result<Values>::type...> 125 make_tuple(const Values&... values) { 126 return tuple<typename make_tuple_result<Values>::type...>(values...); 129 template<typename... Values> 130 tuple<Values&...> tie(Values&... values) [all...] |
example-bind.cpp | 54 template<typename... Values> class tuple; 103 template<typename... Values> 104 tuple<typename make_tuple_result<Values>::type...> 105 make_tuple(const Values&... values) { 106 return tuple<typename make_tuple_result<Values>::type...>(values...); 109 template<typename... Values> 110 tuple<Values&...> tie(Values&... values) [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DebugLocEntry.h | 98 SmallVector<Value, 1> Values; 103 Values.push_back(std::move(Val)); 107 /// variable, merge them by appending Next's values to the current 108 /// list of values. 118 if ((End == Next.Begin && Values == Next.Values)) { 127 ArrayRef<Value> getValues() const { return Values; } 129 Values.append(Vals.begin(), Vals.end()); 131 assert(std::all_of(Values.begin(), Values.end(), [](DebugLocEntry::Value V) [all...] |
/external/boringssl/src/crypto/fipsmodule/bn/ |
check_bn_tests.go | 30 Values map[string]*big.Int 67 if _, dup := s.test.Values[key]; dup { 71 s.test.Values[key] = valueInt 77 Values: make(map[string]*big.Int), 132 if _, ok := t.Values[k]; !ok { 138 for k, _ := range t.Values { 156 if t.Values[key].Cmp(r) != 0 { 180 r := new(big.Int).Add(test.Values["A"], test.Values["B"]) 185 r := new(big.Int).Add(test.Values["A"], test.Values["A"] [all...] |
/external/swiftshader/third_party/subzero/crosstest/ |
test_strengthreduce_main.cpp | 32 static int32_t Values[] = {-100, -50, 0, 1, 8, 123, 0x33333333, 0x77777777}; 33 for (size_t i = 0; i < sizeof(Values) / sizeof(*Values); ++i) { 34 int32_t SVal = Values[i]; 36 uint32_t UVal = (uint32_t)Values[i];
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
zcse.go | 10 // function for values with zero arguments to allow the more expensive cse 11 // to begin with a reduced number of values. Values are just relinked, 18 for i := 0; i < len(b.Values); { 19 v := b.Values[i] 30 f.Entry.Values = append(f.Entry.Values, v) 31 last := len(b.Values) - 1 32 b.Values[i] = b.Values[last [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
zcse.go | 10 // function for values with zero arguments to allow the more expensive cse 11 // to begin with a reduced number of values. Values are just relinked, 18 for i := 0; i < len(b.Values); { 19 v := b.Values[i] 30 f.Entry.Values = append(f.Entry.Values, v) 31 last := len(b.Values) - 1 32 b.Values[i] = b.Values[last [all...] |
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/ |
feature_keys.py | 40 class Values(object): 41 """Key formats for accepting/returning values.""" 42 # Floating point, with one or more values corresponding to each time in TIMES. 43 VALUES = "values" 46 class TrainEvalFeatures(Times, Values): 56 class FilteringFeatures(Times, Values, State):
|