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

1 2 3 4

  /system/chre/util/include/chre/util/
heap.h 38 template<typename ContainerType, typename CompareFunction>
39 void push_heap(ContainerType& container, const CompareFunction& compare);
49 template<typename ContainerType, typename CompareFunction>
50 void pop_heap(ContainerType& container, const CompareFunction& compare);
62 template<typename ContainerType, typename CompareFunction>
63 void remove_heap(ContainerType& container, size_t index,
heap_impl.h 30 template<typename ContainerType, typename CompareFunction>
31 void siftUp(ContainerType& container, size_t index,
46 template<typename ContainerType, typename CompareFunction>
47 void siftDown(ContainerType& container, size_t index,
77 template<typename ContainerType, typename CompareFunction>
78 void push_heap(ContainerType& container, const CompareFunction& compare) {
85 template<typename ContainerType, typename CompareFunction>
86 void pop_heap(ContainerType& container, const CompareFunction& compare) {
94 template<typename ContainerType, typename CompareFunction>
95 void remove_heap(ContainerType& container, size_t index
    [all...]
  /packages/apps/Launcher3/src_ui_overrides/com/android/launcher3/uioverrides/
OverviewState.java 21 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
29 super(id, ContainerType.WORKSPACE, OVERVIEW_TRANSITION_MS, FLAG_DISABLE_RESTORE);
AllAppsSwipeController.java 14 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
62 ContainerType.HOTSEAT : ContainerType.WORKSPACE;
AllAppsState.java 26 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
45 super(id, ContainerType.ALLAPPS, ALL_APPS_TRANSITION_MS, STATE_FLAGS);
  /external/libchrome/base/
observer_list.h 88 template <class ContainerType>
92 explicit Iter(ContainerType* list);
98 typename ObserverListBase<ObserverType>::template Iter<ContainerType>;
177 template <class ContainerType>
184 template <class ContainerType>
185 ObserverListBase<ObserverType>::Iter<ContainerType>::Iter()
189 template <class ContainerType>
190 ObserverListBase<ObserverType>::Iter<ContainerType>::Iter(ContainerType* list)
201 template <class ContainerType>
    [all...]
  /packages/apps/Launcher3/protos/
launcher_dump.proto 36 optional ContainerType container_type = 5;
59 enum ContainerType {
launcher_log.proto 36 // Used mainly for ContainerType.FOLDER, ItemType.*
43 optional ContainerType container_type = 6;
77 enum ContainerType {
  /external/libchrome/base/containers/
stack_container.h 136 // WATCH OUT: the ContainerType MUST use the proper StackAllocator for this
142 typedef TContainerType ContainerType;
143 typedef typename ContainerType::value_type ContainedType;
159 ContainerType& container() { return container_; }
160 const ContainerType& container() const { return container_; }
165 ContainerType* operator->() { return &container_; }
166 const ContainerType* operator->() const { return &container_; }
179 ContainerType container_;
  /packages/apps/Launcher3/quickstep/src/com/android/launcher3/uioverrides/
AllAppsState.java 25 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
42 super(id, ContainerType.ALLAPPS, ALL_APPS_TRANSITION_MS, STATE_FLAGS);
OverviewState.java 30 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
46 super(id, ContainerType.TASKSWITCHER, transitionDuration, stateFlags);
OverviewToAllAppsTouchController.java 78 return LauncherLogProto.ContainerType.WORKSPACE;
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
DumpTargetWrapper.java 25 import com.android.launcher3.model.nano.LauncherDumpProto.ContainerType;
44 public DumpTargetWrapper(int containerType, int id) {
46 node = newContainerTarget(containerType, id);
97 dt.containerType = type;
110 String str = LoggerUtils.getFieldName(t.containerType, ContainerType.class);
111 if (t.containerType == ContainerType.WORKSPACE) {
113 } else if (t.containerType == ContainerType.FOLDER)
    [all...]
LoggerUtils.java 29 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
97 str = getFieldName(t.containerType, ContainerType.class);
98 if (t.containerType == ContainerType.WORKSPACE ||
99 t.containerType == ContainerType.HOTSEAT) {
101 } else if (t.containerType == ContainerType.FOLDER) {
208 public static Target newContainerTarget(int containerType) {
    [all...]
  /external/tensorflow/tensorflow/core/example/
feature_util.h 254 template <typename ContainerType>
255 void AppendFeatureValues(const ContainerType& container, Feature* feature) {
256 using IteratorType = typename ContainerType::const_iterator;
270 template <typename ContainerType, typename ProtoType>
271 void AppendFeatureValues(const ContainerType& container, const string& key,
273 using IteratorType = typename ContainerType::const_iterator;
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/
LongSwipeHelper.java 37 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
173 ContainerType.NAVBAR, ContainerType.APP,
174 toAllApps ? ContainerType.ALLAPPS : ContainerType.TASKSWITCHER,
  /packages/apps/Launcher3/src/com/android/launcher3/widget/
BaseWidgetSheet.java 36 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
135 targetParent.containerType = ContainerType.WIDGETS;
141 Target target = newContainerTarget(ContainerType.WIDGETS);
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/logging/
UserEventDispatcherExtension.java 47 dstContainerType == LauncherLogProto.ContainerType.TASKSWITCHER);
59 target.containerType = LauncherLogProto.ContainerType.TIP;
  /packages/apps/Launcher3/src/com/android/launcher3/states/
SpringLoadedState.java 28 import com.android.launcher3.userevent.nano.LauncherLogProto.ContainerType;
40 super(id, ContainerType.OVERVIEW, SPRING_LOADED_TRANSITION_MS, STATE_FLAGS);
  /external/libcxx/test/libcxx/debug/containers/
db_associative_container_tests.pass.cpp 31 template <class Container, ContainerType CT>
db_unord_container_tests.pass.cpp 30 template <class Container, ContainerType CT>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/debug/containers/
db_associative_container_tests.pass.cpp 31 template <class Container, ContainerType CT>
db_unord_container_tests.pass.cpp 30 template <class Container, ContainerType CT>
  /external/google-breakpad/src/testing/gtest/test/
gtest-param-test_test.cc 363 typedef ::std::vector<int> ContainerType;
364 ContainerType values;
376 typedef ::std::vector<int> ContainerType;
377 ContainerType values;
390 typedef ::std::vector<int> ContainerType;
391 ContainerType values;
402 typedef ::std::vector<int> ContainerType;
403 ContainerType values;
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 363 typedef ::std::vector<int> ContainerType;
364 ContainerType values;
376 typedef ::std::vector<int> ContainerType;
377 ContainerType values;
390 typedef ::std::vector<int> ContainerType;
391 ContainerType values;
402 typedef ::std::vector<int> ContainerType;
403 ContainerType values;

Completed in 532 milliseconds

1 2 3 4