Home
last modified time | relevance | path

Searched refs:ValueArray (Results 1 – 13 of 13) sorted by relevance

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dreadability-magic-numbers.cpp62 int ValueArray[] = {3, 5, 0, 0, 0}; variable
76 if (ValueArray[0] < ValueArray[1]) in getAnswer()
77 return ValueArray[1]; in getAnswer()
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
Dgtest-param-util-generated.h.pump76 class ValueArray$i {
78 $if i==1 [[explicit ]]ValueArray$i($for j, [[T$j v$j]]) : $for j, [[v$(j)_(v$j)]] {}
86 ValueArray$i(const ValueArray$i& other) : $for j, [[v$(j)_(other.v$(j)_)]] {}
90 void operator=(const ValueArray$i& other);
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/
Dgtest-param-test.h334 internal::ValueArray<T...> Values(T... v) { in Values()
335 return internal::ValueArray<T...>(std::move(v)...); in Values()
/external/mesa3d/src/gtest/include/gtest/
Dgtest-param-test.h335 internal::ValueArray<T...> Values(T... v) { in Values()
336 return internal::ValueArray<T...>(std::move(v)...); in Values()
/external/googletest/googletest/include/gtest/
Dgtest-param-test.h332 internal::ValueArray<T...> Values(T... v) { in Values()
333 return internal::ValueArray<T...>(std::move(v)...); in Values()
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/
Dgtest-param-test.h335 internal::ValueArray<T...> Values(T... v) { in Values()
336 return internal::ValueArray<T...>(std::move(v)...); in Values()
/external/tensorflow/tensorflow/core/kernels/
Dlookup_table_op.cc198 ValueArray* value_vec = in Find()
231 ValueArray value_vec; in DoInsert()
279 ValueArray value = it->second; in ExportValues()
313 typedef gtl::InlinedVector<V, 4> ValueArray; typedef in tensorflow::lookup::MutableHashTableOfTensors
314 std::unordered_map<K, ValueArray> table_ TF_GUARDED_BY(mu_);
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/
Dgtest-param-util.h729 class ValueArray {
731 ValueArray(Ts... v) : v_{std::move(v)...} {} in ValueArray() function
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-param-util.h732 class ValueArray {
734 ValueArray(Ts... v) : v_{std::move(v)...} {} in ValueArray() function
/external/googletest/googletest/include/gtest/internal/
Dgtest-param-util.h792 class ValueArray {
794 explicit ValueArray(Ts... v) : v_(FlatTupleConstructTag{}, std::move(v)...) {} in ValueArray() function
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/
Dgtest-param-util.h771 class ValueArray {
773 ValueArray(Ts... v) : v_{ std::move(v)... } {} in ValueArray() function
/external/pdfium/fxjs/
Dcjs_field.cpp2098 v8::Local<v8::Array> ValueArray = pRuntime->NewArray(); in get_value() local
2109 pRuntime->PutArrayElement(ValueArray, i, ElementValue); in get_value()
2111 ret = ValueArray; in get_value()
2147 v8::Local<v8::Array> ValueArray = pRuntime->ToArray(vp); in set_value() local
2148 for (size_t i = 0; i < pRuntime->GetArrayLength(ValueArray); i++) { in set_value()
2150 pRuntime->ToWideString(pRuntime->GetArrayElement(ValueArray, i))); in set_value()
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
Dgtest-param-test.h.pump345 internal::ValueArray$i<$for j, [[T$j]]> Values($for j, [[T$j v$j]]) {
346 return internal::ValueArray$i<$for j, [[T$j]]>($for j, [[v$j]]);