HomeSort by relevance Sort by last modified time
    Searched refs:tuple (Results 351 - 375 of 2452) sorted by null

<<11121314151617181920>>

  /external/boringssl/src/util/bot/go/
bootstrap.py 85 assert isinstance(path, (list, tuple))
95 assert isinstance(path, (list, tuple))
102 assert isinstance(path, (list, tuple))
  /external/google-fruit/include/fruit/impl/component_storage/
component_storage_entry.h 262 static ComponentStorageEntry create(Component (*fun)(Args...), std::tuple<Args...> args_tuple);
269 std::tuple<Args...> args_tuple);
273 std::tuple<Args...> args_tuple);
  /external/googletest/googletest/include/gtest/internal/
gtest-param-util.h 44 #include <tuple>
749 : public ParamGeneratorInterface<::std::tuple<T...>> {
751 typedef ::std::tuple<T...> ParamType;
753 CartesianProductGenerator(const std::tuple<ParamGenerator<T>...>& g)
772 const std::tuple<ParamGenerator<T>...>& generators, bool is_end)
852 std::tuple<typename ParamGenerator<T>::iterator...> begin_;
853 std::tuple<typename ParamGenerator<T>::iterator...> end_;
854 std::tuple<typename ParamGenerator<T>::iterator...> current_;
860 std::tuple<ParamGenerator<T>...> generators_;
868 operator ParamGenerator<::std::tuple<T...>>() const
    [all...]
  /external/icu/icu4c/source/test/intltest/
numberformattesttuple.h 19 #define NFTT_GET_FIELD(tuple, fieldName, defaultValue) ((tuple).fieldName##Flag ? (tuple).fieldName : (defaultValue))
  /external/libcxx/benchmarks/
algorithms.partition_point.bench.cpp 5 #include <tuple>
61 using AllTestTypes = std::tuple<TestInt32, TestInt64, TestUint32, TestMediumString>;
90 using AllAlgs = std::tuple<LowerBoundAlg, UpperBoundAlg, EqualRangeAlg>;
  /external/libvpx/libvpx/test/
dct_partial_test.cc 15 #include <tuple>
32 using std::tuple;
37 typedef tuple<PartialFdctFunc, int /* size */, vpx_bit_depth_t>
  /external/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetRPCAPI.h 153 std::tuple<TargetAddress, TargetAddress, uint32_t>(
161 typedef Function<EmitTrampolineBlockId, std::tuple<TargetAddress, uint32_t>()>
169 typedef Function<GetRemoteInfoId, std::tuple<std::string, uint32_t, uint32_t,
  /external/ply/ply/example/yply/
yparse.py 61 preclist.append(('left',) + tuple(p[3]))
63 preclist.append(('right',) + tuple(p[3]))
65 preclist.append(('nonassoc',) + tuple(p[3]))
  /external/python/cpython2/Lib/lib-tk/test/test_ttk/
support.py 55 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.')))
104 if isinstance(actual, tuple):
105 if isinstance(expected, tuple):
  /external/python/cpython2/Lib/lib-tk/
tkFileDialog.py 49 # make sure "filetypes" is a tuple
50 self.options["filetypes"] = tuple(self.options["filetypes"])
80 if isinstance(result, tuple):
82 result = tuple([getattr(r, "string", r) for r in result])
  /external/python/cpython3/Lib/tkinter/test/
support.py 55 tcl_version = tuple(map(int, _tkinter.TCL_VERSION.split('.')))
104 if isinstance(actual, tuple):
105 if isinstance(expected, tuple):
  /external/python/pyasn1/pyasn1/type/
namedval.py 26 \*args: variable number of two-element :py:class:`tuple`
62 if isinstance(namedValue, (tuple, list)):
166 return self.__class__(*tuple(self.items()) + tuple(namedValues.items()))
  /external/tensorflow/tensorflow/compiler/xla/tests/
iota_test.cc 35 public ::testing::WithParamInterface<std::tuple<PrimitiveType, int>> {};
64 std::tuple<PrimitiveType, int, int>> {};
91 std::tuple<PrimitiveType, int, int>> {};
  /external/tensorflow/tensorflow/contrib/boosted_trees/python/ops/
batch_ops_utils.py 117 # If the result is a tuple, move each entry in the tuple in one RPC.
118 if isinstance(results, tuple):
119 results = tuple(
121 # Once all the results are on the worker, create individual tuple for
124 op_results[batch[i]] = tuple(result[i] for result in results)
125 # If the result is a tuple, it didn't have any outputs, so use the
  /external/tensorflow/tensorflow/python/keras/engine/
input_layer.py 41 input_shape: Shape tuple (not including the batch axis), or `TensorShape`
90 input_shape = tuple(input_shape.as_list())
94 batch_input_shape = (batch_size,) + tuple(input_shape)
121 self._batch_input_shape = tuple(input_tensor.get_shape().as_list())
171 shape: A shape tuple (integers), not including the batch size.
  /external/tensorflow/tensorflow/python/module/
module.py 131 return tuple(self._flatten(predicate=_IS_VARIABLE))
146 return tuple(self._flatten(predicate=_IS_TRAINABLE_VARIABLE))
167 return tuple(self._flatten(predicate=_IS_MODULE))
191 ... return tuple(self._flatten(predicate=is_tensor, with_path=True))
  /frameworks/av/services/camera/libcameraservice/api2/
DepthCompositeStream.h 88 std::vector<std::tuple<size_t, size_t>>* depthSizes /*out*/);
90 const std::vector<std::tuple<size_t, size_t>>& supporedDepthSizes,
126 std::vector<std::tuple<size_t, size_t>> mSupportedDepthSizes;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/unicode/
gencodec.py 46 or a tuple of integers.
68 return tuple(l)
157 if isinstance(mapkey, tuple):
159 if isinstance(mapvalue, tuple):
210 if isinstance(mapkey, tuple):
212 if isinstance(mapvalue, tuple):
233 if isinstance(mapvalue, tuple):
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
import_statement.py 178 return tuple((dotted_as_name.name, dotted_as_name.alias)
183 return tuple(path for path, _ in self.values)
187 return tuple(alias for _, alias in self.values)
242 return tuple((import_as_name.name, import_as_name.alias)
248 return tuple('.'.join((module, name)) for name, _ in self.values)
252 return tuple(alias for _, alias in self.values)
  /external/libaom/libaom/test/
horz_superres_test.cc 27 using ::testing::tuple;
56 typedef tuple<int, int> SuperresDenominatorPair;
64 typedef tuple<int, int> SuperresQThresholdPair;
75 typedef tuple<const libaom_test::CodecFactory *, TestVideoParam, SUPERRES_MODE>
171 // <[needed for EncoderTest], test_video_param_, tuple(superres_denom_,
173 typedef tuple<const libaom_test::CodecFactory *, TestVideoParam,
283 // tuple(superres_qthresh_,superres_kf_qthresh_)>
284 typedef tuple<const libaom_test::CodecFactory *, TestVideoParam,
  /external/python/cpython2/Tools/unicode/
gencodec.py 46 or a tuple of integers.
68 return tuple(l)
157 if isinstance(mapkey, tuple):
159 if isinstance(mapvalue, tuple):
210 if isinstance(mapkey, tuple):
212 if isinstance(mapvalue, tuple):
233 if isinstance(mapvalue, tuple):
  /external/python/setuptools/pkg_resources/_vendor/packaging/
markers.py 129 MARKER_ITEM.setParseAction(lambda s, l, t: tuple(t[0]))
149 assert isinstance(marker, (list, tuple, string_types))
156 isinstance(marker[0], (list, tuple))):
165 elif isinstance(marker, tuple):
218 assert isinstance(marker, (list, tuple, string_types))
222 elif isinstance(marker, tuple):
  /external/python/setuptools/setuptools/_vendor/packaging/
markers.py 129 MARKER_ITEM.setParseAction(lambda s, l, t: tuple(t[0]))
149 assert isinstance(marker, (list, tuple, string_types))
156 isinstance(marker[0], (list, tuple))):
165 elif isinstance(marker, tuple):
218 assert isinstance(marker, (list, tuple, string_types))
222 elif isinstance(marker, tuple):
  /external/v8/tools/
gen-inlining-tests.py 383 if isinstance(result, tuple) and result[0] == 'throw':
387 if isinstance(result, tuple) and result[0] == "throw":
391 if isinstance(result, tuple) and result[0] == "throw":
395 if isinstance(result, tuple) and result[0] == "throw":
399 if isinstance(result, tuple) and result[0] == "throw":
404 if isinstance(result, tuple) and result[0] == "throw":
  /art/runtime/gc/collector/
immune_spaces.cc 19 #include <tuple>
43 using Interval = std::tuple</*start*/uintptr_t, /*end*/uintptr_t, /*is_heap*/bool>;

Completed in 2184 milliseconds

<<11121314151617181920>>