HomeSort by relevance Sort by last modified time
    Searched refs:Container (Results 251 - 275 of 527) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
LoopIterator.h 116 LoopBlocksDFS(Loop *Container) :
117 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
118 PostBlocks.reserve(Container->getNumBlocks());
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
LoopIterator.h 116 LoopBlocksDFS(Loop *Container) :
117 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
118 PostBlocks.reserve(Container->getNumBlocks());
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
LoopIterator.h 116 LoopBlocksDFS(Loop *Container) :
117 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
118 PostBlocks.reserve(Container->getNumBlocks());
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
LoopIterator.h 116 LoopBlocksDFS(Loop *Container) :
117 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
118 PostBlocks.reserve(Container->getNumBlocks());
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
LoopIterator.h 116 LoopBlocksDFS(Loop *Container) :
117 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) {
118 PostBlocks.reserve(Container->getNumBlocks());
  /external/protobuf/src/google/protobuf/
reflection.h 143 template<typename Container>
144 void MergeFrom(const Container& container) const {
145 typedef typename Container::const_iterator Iterator;
146 for (Iterator it = container.begin(); it != container.end(); ++it) {
150 template<typename Container>
151 void CopyFrom(const Container& container) const {
153 MergeFrom(container);
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
reflection.h 143 template<typename Container>
144 void MergeFrom(const Container& container) const {
145 typedef typename Container::const_iterator Iterator;
146 for (Iterator it = container.begin(); it != container.end(); ++it) {
150 template<typename Container>
151 void CopyFrom(const Container& container) const {
153 MergeFrom(container);
    [all...]
  /external/tensorflow/tensorflow/core/framework/
resource_mgr.cc 29 ResourceHandle MakeResourceHandle(OpKernelContext* ctx, const string& container,
35 if (!container.empty()) {
36 actual_container = container;
48 const string& container, const string& name,
54 MakeResourceHandle(context, container, name, type_index);
111 const string* container; member in struct:tensorflow::Line
118 const string& container = p.first; local
123 Line l{&container, port::Demangle(type), &resource,
132 "%-20s | %-40s | %-40s | %-s", line.container->c_str(),
139 Status ResourceMgr::DoCreate(const string& container, TypeIndex type
    [all...]
  /external/v8/src/wasm/
wasm-objects.cc 28 #define DEFINE_GETTER0(getter, Container, name, field, type) \
29 type* Container::name() { return type::cast(getter(field)); }
31 #define DEFINE_ACCESSORS0(getter, setter, Container, name, field, type) \
32 DEFINE_GETTER0(getter, Container, name, field, type) \
33 void Container::set_##name(type* value) { return setter(field, value); }
35 #define DEFINE_OPTIONAL_ACCESSORS0(getter, setter, Container, name, field, \
37 DEFINE_ACCESSORS0(getter, setter, Container, name, field, type) \
38 bool Container::has_##name() { \
42 #define DEFINE_OPTIONAL_GETTER0(getter, Container, name, field, type) \
43 DEFINE_GETTER0(getter, Container, name, field, type)
    [all...]
  /external/llvm/include/llvm/ADT/
STLExtras.h 210 // Returns an iterator_range over the given container which iterates in reverse.
211 // Note that the container must have rbegin()/rend() methods for this to work.
225 // Returns an iterator_range over the given container which iterates in reverse.
226 // Note that the container must have begin()/end() methods which return
352 /// For a container of pointers, deletes the pointers and then clears the
353 /// container.
354 template<typename Container>
355 void DeleteContainerPointers(Container &C) {
356 for (typename Container::iterator I = C.begin(), E = C.end(); I != E; ++I)
361 /// In a container of pairs (usually a map) whose second element is a pointer
    [all...]
  /art/dexlayout/
compact_dex_writer.h 113 class Container : public DexContainer {
128 explicit Container(bool dedupe_code_items);
  /external/libbrillo/brillo/strings/
string_utils.h 84 template <class Container>
85 std::string Join(const std::string& delimiter, const Container& strings) {
  /external/libcxx/test/std/containers/associative/map/map.modifiers/
insert_rv.pass.cpp 27 template <class Container, class Pair>
30 typedef Container M;
  /external/swiftshader/third_party/subzero/src/
IceUtils.h 126 /// Resize a vector (or other suitable container) to a particular size, and also
128 /// container grows. It uses a strategy of doubling capacity up to a certain
130 template <typename Container>
131 inline void reserveAndResize(Container &V, uint32_t Size,
  /external/tensorflow/tensorflow/compiler/xla/
array4d.h 69 // We need to set a default type for Container so that code like
72 template <typename Container = std::initializer_list<T>>
74 const Container& values)
util.h 290 template <typename Container>
291 int64 PositionInContainer(const Container& container, int64 value) {
292 return std::distance(container.begin(),
293 std::find(container.begin(), container.end(), value));
296 // Formats the container as a comma-separated string. StrAppend must support
297 // appending the elements of the container. Prefix is prepended and suffix is
299 template <typename Container>
300 string CommaSeparatedString(const Container& c, const char* prefix = ""
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/map.modifiers/
insert_rv.pass.cpp 27 template <class Container, class Pair>
30 typedef Container M;
  /external/autotest/site_utils/lxc/
container_factory.py 11 from autotest_lib.site_utils.lxc import container
20 """A factory class for creating LXC container objects."""
22 def __init__(self, base_container, container_class=container.Container,
27 @param base_container: The base container from which other containers
29 @param container_class: (optional) The Container class to instantiate.
30 By default, lxc.Container is instantiated.
33 @param force_cleanup: (optional) If True, if a container is created with
35 container, the existing container is destroyed
    [all...]
container_factory_unittest.py 24 # Check if a base container exists on this machine and download one if
55 """Tests basic container creation."""
56 container = self.test_factory.create_container()
59 container.refresh_status()
61 self.fail('Invalid container:\n%s' % error.format_error())
65 """Tests container creation with default IDs."""
66 container = self.test_factory.create_container()
67 self.assertIsNone(container.id)
71 """Tests container creation with given IDs. """
73 container = self.test_factory.create_container(id0
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
KeyguardUserSwitcher.java 48 private final Container mUserSwitcherContainer;
65 mUserSwitcherContainer = (Container) userSwitcher.inflate();
304 public static class Container extends FrameLayout {
308 public Container(Context context, AttributeSet attrs) {
  /external/google-benchmark/test/
benchmark_test.cc 100 template <typename Container,
101 typename ValueType = typename Container::value_type>
105 Container c;
  /external/libcxx/utils/google-benchmark/test/
benchmark_test.cc 100 template <typename Container,
101 typename ValueType = typename Container::value_type>
105 Container c;
  /external/webrtc/webrtc/system_wrappers/include/
stl_util.h 37 // For a range within a container of pointers, calls delete (non-array version)
55 // For a range within a container of pairs, calls delete (non-array version) on
59 // container may call the hash function on the iterator when it is advanced,
73 // For a range within a container of pairs, calls delete (non-array version) on
86 // For a range within a container of pairs, calls delete.
133 // STLDeleteElements() deletes all the elements in an STL container and clears
134 // the container. This function is suitable for use with a vector, set,
135 // hash_set, or any other STL container which defines sensible begin(), end(),
138 // If container is NULL, this function is a no-op.
141 // STLElementDeleter (defined below), which ensures that your container'
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-generated-matchers.h 315 template <typename Container>
316 operator Matcher<Container>() const {
317 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
329 return MakeMatcher(new ElementsAreMatcherImpl<Container>(&matcher, 1));
343 template <typename Container>
344 operator Matcher<Container>() const {
345 typedef GTEST_REMOVE_REFERENCE_AND_CONST_(Container) RawContainer;
354 return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 2));
370 template <typename Container>
371 operator Matcher<Container>() const
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp     [all...]

Completed in 2655 milliseconds

<<11121314151617181920>>