Home
last modified time | relevance | path

Searched defs:container (Results 1 – 25 of 287) sorted by relevance

12345678910>>...12

/external/libchrome/base/
Dstl_util.h33 void IterateAndEraseIf(Container& container, Predicate pred) { in IterateAndEraseIf()
133 STLCount(const Container& container, const T& val) { in STLCount()
240 void Erase(std::basic_string<CharT, Traits, Allocator>& container, in Erase()
247 void EraseIf(std::basic_string<CharT, Traits, Allocator>& container, in EraseIf()
254 void Erase(std::deque<T, Allocator>& container, const Value& value) { in Erase()
260 void EraseIf(std::deque<T, Allocator>& container, Predicate pred) { in EraseIf()
266 void Erase(std::vector<T, Allocator>& container, const Value& value) { in Erase()
272 void EraseIf(std::vector<T, Allocator>& container, Predicate pred) { in EraseIf()
278 void Erase(std::forward_list<T, Allocator>& container, const Value& value) { in Erase()
286 void EraseIf(std::forward_list<T, Allocator>& container, Predicate pred) { in EraseIf()
[all …]
/external/sfntly/cpp/src/sfntly/port/
Djava_iterator.h43 explicit PODIterator(Container* container) : container_(container) {} in PODIterator()
59 Container* container() { return container_; } in container() function
70 explicit RefIterator(Container* container) : container_(container) {} in RefIterator()
86 Container* container() { return container_; } in container() function
/external/clang/test/SemaCXX/
DPR11358.cpp6 struct container { struct
7 class iterator {};
8 iterator begin() { return iterator(); } in begin()
39 struct container { struct
40 class iterator {};
/external/libbrillo/brillo/streams/
Dmemory_stream.cc17 std::unique_ptr<data_container::DataContainerInterface> container, in MemoryStream()
24 std::unique_ptr<data_container::ReadOnlyBuffer> container{ in OpenRef() local
32 std::unique_ptr<data_container::ReadOnlyVectorCopy<uint8_t>> container{ in OpenCopyOf() local
39 std::unique_ptr<data_container::ReadOnlyStringRef> container{ in OpenRef() local
45 std::unique_ptr<data_container::ReadOnlyStringCopy> container{ in OpenCopyOf() local
59 std::unique_ptr<data_container::ByteBuffer> container{ in Create() local
65 std::unique_ptr<data_container::StringPtr> container{ in CreateRef() local
72 std::unique_ptr<data_container::StringPtr> container{ in CreateRefForAppend() local
78 std::unique_ptr<data_container::DataContainerInterface> container, in CreateEx()
/external/clang/include/clang/AST/
DAttrIterator.h116 specific_attr_begin(const Container& container) { in specific_attr_begin()
121 specific_attr_end(const Container& container) { in specific_attr_end()
126 inline bool hasSpecificAttr(const Container& container) { in hasSpecificAttr()
131 inline SpecificAttr *getSpecificAttr(const Container& container) { in getSpecificAttr()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
DHelper.java43 static String containerName(Node container) { in containerName()
51 static String getPackageName(Node container) { in getPackageName()
63 static String getClassName(String base, Node container) { in getClassName()
/external/autotest/site_utils/lxc/
Dlxc_functional_test.py230 def test_share(container): argument
265 def test_autoserv(container): argument
289 def test_package_install(container): argument
300 def test_ssh(container, remote): argument
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DAnyTest.java47 TestAny container = TestAny.newBuilder() in testAnyGeneratedApi() local
83 TestAny container = TestAny.newBuilder() in testCustomTypeUrls() local
128 TestAny container = TestAny.newBuilder() in testCachedUnpackResult() local
/external/tensorflow/tensorflow/core/framework/
Dresource_mgr.cc35 ResourceHandle MakeResourceHandle(OpKernelContext* ctx, const string& container, in MakeResourceHandle()
58 const string& container, const string& name, in MakeResourceHandleToOutput()
121 const string* container; in DebugString() member
128 const string& container = p.first; in DebugString() local
149 Status ResourceMgr::DoCreate(const string& container, TypeIndex type, in DoCreate()
164 Status ResourceMgr::DoLookup(const string& container, TypeIndex type, in DoLookup()
183 Status ResourceMgr::DoDelete(const string& container, uint64 type_hash_code, in DoDelete()
206 Status ResourceMgr::DoDelete(const string& container, TypeIndex type, in DoDelete()
216 Status ResourceMgr::Cleanup(const string& container) { in Cleanup()
Dresource_handle.h43 const string& container() const { return container_; } in container() function
44 void set_container(const string& container) { container_ = container; } in set_container()
Dresource_mgr.h241 ResourceHandle MakeResourceHandle(OpKernelContext* ctx, const string& container, in MakeResourceHandle()
329 const string& container() const { return container_; } in container() function
432 Status ResourceMgr::Create(const string& container, const string& name, in Create()
441 Status ResourceMgr::Lookup(const string& container, const string& name, in Lookup()
/external/googletest/googletest/test/
Dgtest-typed-test_test.h52 TypeParam container; in TYPED_TEST_P() local
56 TypeParam container; in TYPED_TEST_P() local
/external/grpc-grpc/test/cpp/qps/
Dstats.h30 double sum(const T& container, F functor) { in sum()
39 double average(const T& container, F functor) { in average()
/external/google-breakpad/src/testing/gtest/test/
Dgtest-typed-test_test.h53 TypeParam container; in TYPED_TEST_P() local
57 TypeParam container; in TYPED_TEST_P() local
/external/autotest/site_utils/
Dlxc_cleanup.py39 def is_container_orphaned(container): argument
90 def cleanup(container, options): argument
/external/ltp/utils/ffsb-6.0-rc2/
Dparser.h119 typedef struct container { struct
122 struct container *child; argument
123 struct container *next; argument
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
DCompactConstructorExampleTest.java60 Container container = (Container) obj; in test4() local
71 Container container = (Container) obj; in test5() local
82 Container container = (Container) obj; in test6() local
93 Container container = (Container) obj; in test7() local
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DICUResourceBundleImpl.java22 protected ICUResourceBundleImpl(ICUResourceBundleImpl container, String key, int resource) { in ICUResourceBundleImpl() method in ICUResourceBundleImpl
76 ResourceBinary(ICUResourceBundleImpl container, String key, int resource) { in ResourceBinary()
93 ResourceInt(ICUResourceBundleImpl container, String key, int resource) { in ResourceInt()
110 ResourceString(ICUResourceBundleImpl container, String key, int resource) { in ResourceString()
129 ResourceIntVector(ICUResourceBundleImpl container, String key, int resource) { in ResourceIntVector()
167 ResourceContainer(ICUResourceBundleImpl container, String key, int resource) { in ResourceContainer()
208 ResourceArray(ICUResourceBundleImpl container, String key, int resource) { in ResourceArray()
297 ResourceTable(ICUResourceBundleImpl container, String key, int resource) { in ResourceTable()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DICUResourceBundleImpl.java23 protected ICUResourceBundleImpl(ICUResourceBundleImpl container, String key, int resource) { in ICUResourceBundleImpl() method in ICUResourceBundleImpl
77 ResourceBinary(ICUResourceBundleImpl container, String key, int resource) { in ResourceBinary()
94 ResourceInt(ICUResourceBundleImpl container, String key, int resource) { in ResourceInt()
111 ResourceString(ICUResourceBundleImpl container, String key, int resource) { in ResourceString()
130 ResourceIntVector(ICUResourceBundleImpl container, String key, int resource) { in ResourceIntVector()
168 ResourceContainer(ICUResourceBundleImpl container, String key, int resource) { in ResourceContainer()
209 ResourceArray(ICUResourceBundleImpl container, String key, int resource) { in ResourceArray()
298 ResourceTable(ICUResourceBundleImpl container, String key, int resource) { in ResourceTable()
/external/webrtc/webrtc/system_wrappers/include/
Dstl_util.h144 void STLDeleteElements(T* container) { in STLDeleteElements()
155 void STLDeleteValues(T* container) { in STLDeleteValues()
180 STLElementDeleter<T>(T* container) : container_(container) {} in container_() argument
192 STLValueDeleter<T>(T* container) : container_(container) {} in container_() argument
/external/mockito/src/test/java/org/mockitousage/verification/
DVerificationStartedListenerTest.java59 final List<Object> container = new ArrayList<Object>(); in verification_started_event_contains_correct_mock() local
78 final List<Object> container = new ArrayList<Object>(); in listeners_are_executed_in_sequence() local
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
DJavassistTypeParameter.java35 private ResolvedTypeParametrizable container; field in JavassistTypeParameter
37 …stTypeParameter(SignatureAttribute.TypeParameter wrapped, ResolvedTypeParametrizable container, Ty… in JavassistTypeParameter()
/external/cldr/tools/java/org/unicode/cldr/util/
DVisitor.java135 abstract protected void doBefore(Object container, Object item); in doBefore()
137 abstract protected void doBetween(Object container, Object lastItem, Object nextItem); in doBetween()
139 abstract protected void doAfter(Object container, Object item); in doAfter()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
DLexicalDifferenceCalculator.java90 Node container = nodeList.getParentNodeForChildren(); in calculateListRemovalDifference() local
98 Node container = nodeList.getParentNodeForChildren(); in calculateListAdditionDifference() local
106 Node container = nodeList.getParentNodeForChildren(); in calculateListReplacementDifference() local
289 Node container = nodeList.getParentNodeForChildren(); in calculatedSyntaxModelAfterListRemoval() local
297 Node container = nodeList.getParentNodeForChildren(); in calculatedSyntaxModelAfterListAddition() local
303 …CalculatedSyntaxModel calculatedSyntaxModelAfterListAddition(Node container, ObservableProperty ob… in calculatedSyntaxModelAfterListAddition()
314 …CalculatedSyntaxModel calculatedSyntaxModelAfterListRemoval(Node container, ObservableProperty obs… in calculatedSyntaxModelAfterListRemoval()
327 Node container = nodeList.getParentNodeForChildren(); in calculatedSyntaxModelAfterListReplacement() local
/external/mockito/src/test/java/org/mockitousage/debugging/
DInvocationListenerCallbackTest.java51 List<InvocationListener> container = new ArrayList<InvocationListener>(); in should_call_listeners_in_order() local
67 List<InvocationListener> container = new ArrayList<InvocationListener>(); in should_allow_same_listener() local

12345678910>>...12