Home
last modified time | relevance | path

Searched refs:collection (Results 1 - 25 of 128) sorted by relevance

123456

/third_party/protobuf/src/google/protobuf/stubs/
H A Dmap_util.h74 FindOrDie(const Collection& collection, in FindOrDie() argument
76 typename Collection::const_iterator it = collection.find(key); in FindOrDie()
77 GOOGLE_CHECK(it != collection.end()) << "Map key not found: " << key; in FindOrDie()
84 FindOrDie(Collection& collection, // NOLINT in FindOrDie() argument
86 typename Collection::iterator it = collection.find(key); in FindOrDie()
87 GOOGLE_CHECK(it != collection.end()) << "Map key not found: " << key; in FindOrDie()
94 FindOrDieNoPrint(const Collection& collection, in FindOrDieNoPrint() argument
96 typename Collection::const_iterator it = collection.find(key); in FindOrDieNoPrint()
97 GOOGLE_CHECK(it != collection.end()) << "Map key not found"; in FindOrDieNoPrint()
104 FindOrDieNoPrint(Collection& collection, // NOLIN argument
123 FindWithDefault(const Collection& collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& value) FindWithDefault() argument
137 FindOrNull(const Collection& collection, const typename Collection::value_type::first_type& key) FindOrNull() argument
149 FindOrNull(Collection& collection, const typename Collection::value_type::first_type& key) FindOrNull() argument
166 FindPtrOrNull(const Collection& collection, const typename Collection::value_type::first_type& key) FindPtrOrNull() argument
181 FindPtrOrNull(Collection& collection, const typename Collection::value_type::first_type& key) FindPtrOrNull() argument
194 FindLinkedPtrOrNull(const Collection& collection, const typename Collection::value_type::first_type& key) FindLinkedPtrOrNull() argument
208 FindLinkedPtrOrDie(const Collection& collection, const typename Collection::value_type::first_type& key) FindLinkedPtrOrDie() argument
220 FindCopy(const Collection& collection, const Key& key, Value* const value) FindCopy() argument
239 ContainsKey(const Collection& collection, const Key& key) ContainsKey() argument
246 ContainsKeyValuePair(const Collection& collection, const Key& key, const Value& value) ContainsKeyValuePair() argument
267 InsertOrUpdate(Collection* const collection, const typename Collection::value_type& vt) InsertOrUpdate() argument
280 InsertOrUpdate(Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& value) InsertOrUpdate() argument
290 InsertOrUpdateMany(Collection* const collection, InputIterator first, InputIterator last) InsertOrUpdateMany() argument
302 InsertAndDeleteExisting( Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& value) InsertAndDeleteExisting() argument
321 InsertIfNotPresent(Collection* const collection, const typename Collection::value_type& vt) InsertIfNotPresent() argument
328 InsertIfNotPresent( Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& value) InsertIfNotPresent() argument
338 InsertOrDie(Collection* const collection, const typename Collection::value_type& value) InsertOrDie() argument
346 InsertOrDieNoPrint(Collection* const collection, const typename Collection::value_type& value) InsertOrDieNoPrint() argument
354 InsertOrDie(Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& data) InsertOrDie() argument
363 InsertOrDieNoPrint( Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& data) InsertOrDieNoPrint() argument
377 InsertKeyOrDie( Collection* const collection, const typename Collection::value_type::first_type& key) InsertKeyOrDie() argument
396 LookupOrInsert(Collection* const collection, const typename Collection::value_type& vt) LookupOrInsert() argument
404 LookupOrInsert(Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& value) LookupOrInsert() argument
443 LookupOrInsertNew(Collection* const collection, const typename Collection::value_type::first_type& key) LookupOrInsertNew() argument
461 LookupOrInsertNew(Collection* const collection, const typename Collection::value_type::first_type& key, const Arg& arg) LookupOrInsertNew() argument
497 LookupOrInsertNewLinkedPtr( Collection* const collection, const typename Collection::value_type::first_type& key) LookupOrInsertNewLinkedPtr() argument
516 LookupOrInsertNewLinkedPtr( Collection* const collection, const typename Collection::value_type::first_type& key, const Arg& arg) LookupOrInsertNewLinkedPtr() argument
535 LookupOrInsertNewSharedPtr( Collection* const collection, const typename Collection::value_type::first_type& key) LookupOrInsertNewSharedPtr() argument
555 LookupOrInsertNewSharedPtr( Collection* const collection, const typename Collection::value_type::first_type& key, const Arg& arg) LookupOrInsertNewSharedPtr() argument
581 UpdateReturnCopy(Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& value, typename Collection::value_type::second_type* previous) UpdateReturnCopy() argument
600 UpdateReturnCopy(Collection* const collection, const typename Collection::value_type& vt, typename Collection::value_type::second_type* previous) UpdateReturnCopy() argument
623 InsertOrReturnExisting( Collection* const collection, const typename Collection::value_type& vt) InsertOrReturnExisting() argument
635 InsertOrReturnExisting( Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& data) InsertOrReturnExisting() argument
661 EraseKeyReturnValuePtr( Collection* const collection, const typename Collection::value_type::first_type& key) EraseKeyReturnValuePtr() argument
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dconsole_printer.py22 def colWidth(collection, columnNum):
23 """Compute the required width of a column in a collection of row-tuples."""
25 return MIN_PADDING + max((len(row[columnNum]) for row in collection))
28 def alternateTabulate(collection, headers=None):
31 if not isinstance(collection, list):
32 collection = list(collection)
34 # Empty collection means no table
35 if not collection:
39 fullTable = collection
[all...]
H A Dutil.py25 def findFirstWithPredicate(collection, pred):
30 for elt in collection:
37 """Traverse a collection of elements with 'name' nodes or attributes, looking for and returning one with the right name.
45 """Traverse a collection of elements with 'type' nodes or attributes, looking for and returning one with the right typename.
52 def findNamedObject(collection, name):
53 """Traverse a collection of elements with 'name' attributes, looking for and returning one with the right name.
57 return findFirstWithPredicate(collection, lambda elt: elt.name == name)
/third_party/mesa3d/include/vulkan/
H A Dvulkan_fuchsia.h142 VkBufferCollectionFUCHSIA collection; member
149 VkBufferCollectionFUCHSIA collection; member
174 VkBufferCollectionFUCHSIA collection; member
221 typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionImageConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkImageConstraintsInfoFUCHSIA* pImageConstraintsInfo);
222 typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkBufferConstraintsInfoFUCHSIA* pBufferConstraintsInfo);
223 typedef void (VKAPI_PTR *PFN_vkDestroyBufferCollectionFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkAllocationCallbacks* pAllocator);
224 typedef VkResult (VKAPI_PTR *PFN_vkGetBufferCollectionPropertiesFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, VkBufferCollectionPropertiesFUCHSIA* pProperties);
235 VkBufferCollectionFUCHSIA collection,
240 VkBufferCollectionFUCHSIA collection,
245 VkBufferCollectionFUCHSIA collection,
[all...]
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H A Dvulkan_fuchsia.h142 VkBufferCollectionFUCHSIA collection; member
149 VkBufferCollectionFUCHSIA collection; member
174 VkBufferCollectionFUCHSIA collection; member
221 typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionImageConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkImageConstraintsInfoFUCHSIA* pImageConstraintsInfo);
222 typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkBufferConstraintsInfoFUCHSIA* pBufferConstraintsInfo);
223 typedef void (VKAPI_PTR *PFN_vkDestroyBufferCollectionFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkAllocationCallbacks* pAllocator);
224 typedef VkResult (VKAPI_PTR *PFN_vkGetBufferCollectionPropertiesFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, VkBufferCollectionPropertiesFUCHSIA* pProperties);
235 VkBufferCollectionFUCHSIA collection,
240 VkBufferCollectionFUCHSIA collection,
245 VkBufferCollectionFUCHSIA collection,
[all...]
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/
H A Dvulkan_fuchsia.h142 VkBufferCollectionFUCHSIA collection; member
149 VkBufferCollectionFUCHSIA collection; member
174 VkBufferCollectionFUCHSIA collection; member
221 typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionImageConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkImageConstraintsInfoFUCHSIA* pImageConstraintsInfo);
222 typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkBufferConstraintsInfoFUCHSIA* pBufferConstraintsInfo);
223 typedef void (VKAPI_PTR *PFN_vkDestroyBufferCollectionFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkAllocationCallbacks* pAllocator);
224 typedef VkResult (VKAPI_PTR *PFN_vkGetBufferCollectionPropertiesFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, VkBufferCollectionPropertiesFUCHSIA* pProperties);
235 VkBufferCollectionFUCHSIA collection,
240 VkBufferCollectionFUCHSIA collection,
245 VkBufferCollectionFUCHSIA collection,
[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_fuchsia.h146 VkBufferCollectionFUCHSIA collection; member
153 VkBufferCollectionFUCHSIA collection; member
178 VkBufferCollectionFUCHSIA collection; member
225 typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionImageConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkImageConstraintsInfoFUCHSIA* pImageConstraintsInfo);
226 typedef VkResult (VKAPI_PTR *PFN_vkSetBufferCollectionBufferConstraintsFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkBufferConstraintsInfoFUCHSIA* pBufferConstraintsInfo);
227 typedef void (VKAPI_PTR *PFN_vkDestroyBufferCollectionFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, const VkAllocationCallbacks* pAllocator);
228 typedef VkResult (VKAPI_PTR *PFN_vkGetBufferCollectionPropertiesFUCHSIA)(VkDevice device, VkBufferCollectionFUCHSIA collection, VkBufferCollectionPropertiesFUCHSIA* pProperties);
239 VkBufferCollectionFUCHSIA collection,
244 VkBufferCollectionFUCHSIA collection,
249 VkBufferCollectionFUCHSIA collection,
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DFieldType.java96 private final Collection collection; field in FieldType
100 FieldType(int id, Collection collection, JavaType javaType) { in FieldType() argument
102 this.collection = collection; in FieldType()
105 switch (collection) { in FieldType()
119 if (collection == Collection.SCALAR) { in FieldType()
148 return Collection.PACKED_VECTOR.equals(collection); in isPacked()
161 return collection == Collection.SCALAR; in isScalar()
166 return collection.isList(); in isList()
171 return collection in isMap()
[all...]
H A DIntArrayList.java237 public boolean addAll(Collection<? extends Integer> collection) { in addAll() argument
240 checkNotNull(collection); in addAll()
243 if (!(collection instanceof IntArrayList)) { in addAll()
244 return super.addAll(collection); in addAll()
247 IntArrayList list = (IntArrayList) collection; in addAll()
H A DLongArrayList.java237 public boolean addAll(Collection<? extends Long> collection) { in addAll() argument
240 checkNotNull(collection); in addAll()
243 if (!(collection instanceof LongArrayList)) { in addAll()
244 return super.addAll(collection); in addAll()
247 LongArrayList list = (LongArrayList) collection; in addAll()
H A DFloatArrayList.java237 public boolean addAll(Collection<? extends Float> collection) { in addAll() argument
240 checkNotNull(collection); in addAll()
243 if (!(collection instanceof FloatArrayList)) { in addAll()
244 return super.addAll(collection); in addAll()
247 FloatArrayList list = (FloatArrayList) collection; in addAll()
H A DBooleanArrayList.java238 public boolean addAll(Collection<? extends Boolean> collection) { in addAll() argument
241 checkNotNull(collection); in addAll()
244 if (!(collection instanceof BooleanArrayList)) { in addAll()
245 return super.addAll(collection); in addAll()
248 BooleanArrayList list = (BooleanArrayList) collection; in addAll()
H A DDoubleArrayList.java238 public boolean addAll(Collection<? extends Double> collection) { in addAll() argument
241 checkNotNull(collection); in addAll()
244 if (!(collection instanceof DoubleArrayList)) { in addAll()
245 return super.addAll(collection); in addAll()
248 DoubleArrayList list = (DoubleArrayList) collection; in addAll()
/third_party/rust/crates/aho-corasick/src/
H A Dtests.rs38 /// A collection of test groups.
43 // but each collection should have some tests that no other collection has.
87 /// A collection of tests for the Aho-Corasick algorithm that should always be
148 /// A collection of *anchored* tests for the Aho-Corasick algorithm that should
621 // Since there are a few different combinations for each collection of tests,
624 // tests one-by-one over the given collection. The `with` parameter allows one
630 (overlapping, $name:ident, $collection:expr, $kind:ident, $with:expr) => {
633 run_search_tests($collection, |test| {
644 (stream, $name:ident, $collection
[all...]
/third_party/vulkan-headers/registry/spec_tools/
H A Dutil.py25 def findFirstWithPredicate(collection, pred):
30 for elt in collection:
37 """Traverse a collection of elements with 'name' nodes or attributes, looking for and returning one with the right name.
45 """Traverse a collection of elements with 'type' nodes or attributes, looking for and returning one with the right typename.
52 def findNamedObject(collection, name):
53 """Traverse a collection of elements with 'name' attributes, looking for and returning one with the right name.
57 return findFirstWithPredicate(collection, lambda elt: elt.name == name)
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/
H A DMapFieldTest.cs194 ICollection<KeyValuePair<string, string>> collection = map; in Add_Pair()
195 collection.Add(NewKeyValuePair("x", "y")); in Add_Pair()
197 Assert.Throws<ArgumentException>(() => collection.Add(NewKeyValuePair("x", "z"))); in Add_Pair()
204 ICollection<KeyValuePair<string, string>> collection = map; in Contains_Pair()
205 Assert.IsTrue(collection.Contains(NewKeyValuePair("x", "y"))); in Contains_Pair()
206 Assert.IsFalse(collection.Contains(NewKeyValuePair("x", "z"))); in Contains_Pair()
207 Assert.IsFalse(collection.Contains(NewKeyValuePair("z", "y"))); in Contains_Pair()
228 ICollection<KeyValuePair<string, string>> collection = map; in Remove_Pair()
230 Assert.IsFalse(collection.Remove(NewKeyValuePair("wrong key", "bar"))); in Remove_Pair()
232 Assert.IsFalse(collection in Remove_Pair()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdottedSymbolResolution1.js14 function each(collection: string, callback: (indexInArray: any, valueOfElement: any) => any): any;
15 function each(collection: JQuery, callback: (indexInArray: number, valueOfElement: Base) => any): any;
16 function each(collection: any, callback: (indexInArray: any, valueOfElement: any) => any): any {
35 function each(collection, callback) {
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/
H A DMapFieldTest.cs195 ICollection<KeyValuePair<string, string>> collection = map; in Add_Pair()
196 collection.Add(NewKeyValuePair("x", "y")); in Add_Pair()
198 Assert.Throws<ArgumentException>(() => collection.Add(NewKeyValuePair("x", "z"))); in Add_Pair()
205 ICollection<KeyValuePair<string, string>> collection = map; in Contains_Pair()
206 Assert.IsTrue(collection.Contains(NewKeyValuePair("x", "y"))); in Contains_Pair()
207 Assert.IsFalse(collection.Contains(NewKeyValuePair("x", "z"))); in Contains_Pair()
208 Assert.IsFalse(collection.Contains(NewKeyValuePair("z", "y"))); in Contains_Pair()
229 ICollection<KeyValuePair<string, string>> collection = map; in Remove_Pair()
231 Assert.IsFalse(collection.Remove(NewKeyValuePair("wrong key", "bar"))); in Remove_Pair()
233 Assert.IsFalse(collection in Remove_Pair()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
H A DvktRayTracingMemGuaranteeTests.cpp177 BinaryCollection& collection = m_context.getBinaryCollection(); in RayTracingBuildTestInstance() local
181 if (collection.contains("rgen")) m_shaders |= VK_SHADER_STAGE_RAYGEN_BIT_KHR; in RayTracingBuildTestInstance()
182 if (collection.contains("ahit")) m_shaders |= VK_SHADER_STAGE_ANY_HIT_BIT_KHR; in RayTracingBuildTestInstance()
183 if (collection.contains("chit")) m_shaders |= VK_SHADER_STAGE_CLOSEST_HIT_BIT_KHR; in RayTracingBuildTestInstance()
184 if (collection.contains("miss")) m_shaders |= VK_SHADER_STAGE_MISS_BIT_KHR; in RayTracingBuildTestInstance()
185 if (collection.contains("sect")) m_shaders |= VK_SHADER_STAGE_INTERSECTION_BIT_KHR; in RayTracingBuildTestInstance()
186 if (collection.contains("call")) m_shaders |= VK_SHADER_STAGE_CALLABLE_BIT_KHR; in RayTracingBuildTestInstance()
188 if (collection.contains("cal0")) m_extraCallShaders++; in RayTracingBuildTestInstance()
190 for (BinaryCollection::Iterator it = collection.begin(); it != collection in RayTracingBuildTestInstance()
503 vk::BinaryCollection& collection = m_context.getBinaryCollection(); makePipeline() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/
H A DvktRayTracingMemGuaranteeTests.cpp177 BinaryCollection& collection = m_context.getBinaryCollection(); in RayTracingBuildTestInstance() local
181 if (collection.contains("rgen")) m_shaders |= VK_SHADER_STAGE_RAYGEN_BIT_KHR; in RayTracingBuildTestInstance()
182 if (collection.contains("ahit")) m_shaders |= VK_SHADER_STAGE_ANY_HIT_BIT_KHR; in RayTracingBuildTestInstance()
183 if (collection.contains("chit")) m_shaders |= VK_SHADER_STAGE_CLOSEST_HIT_BIT_KHR; in RayTracingBuildTestInstance()
184 if (collection.contains("miss")) m_shaders |= VK_SHADER_STAGE_MISS_BIT_KHR; in RayTracingBuildTestInstance()
185 if (collection.contains("sect")) m_shaders |= VK_SHADER_STAGE_INTERSECTION_BIT_KHR; in RayTracingBuildTestInstance()
186 if (collection.contains("call")) m_shaders |= VK_SHADER_STAGE_CALLABLE_BIT_KHR; in RayTracingBuildTestInstance()
188 if (collection.contains("cal0")) m_extraCallShaders++; in RayTracingBuildTestInstance()
190 for (BinaryCollection::Iterator it = collection.begin(); it != collection in RayTracingBuildTestInstance()
503 vk::BinaryCollection& collection = m_context.getBinaryCollection(); makePipeline() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/
H A DvktBindingDescriptorUpdateASTests.cpp1176 vk::BinaryCollection& collection = m_context.getBinaryCollection(); in initPipeline() local
1180 if (collection.contains("vert")) shaders |= VK_SHADER_STAGE_VERTEX_BIT; in initPipeline()
1181 if (collection.contains("geom")) shaders |= VK_SHADER_STAGE_GEOMETRY_BIT; in initPipeline()
1182 if (collection.contains("tesc")) shaders |= VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT; in initPipeline()
1183 if (collection.contains("tese")) shaders |= VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT; in initPipeline()
1184 if (collection.contains("frag")) shaders |= VK_SHADER_STAGE_FRAGMENT_BIT; in initPipeline()
1186 for (BinaryCollection::Iterator it = collection.begin(); it != collection.end(); ++it) in initPipeline()
1190 TCU_THROW(InternalError, "Unused shaders detected in the collection"); in initPipeline()
1192 if (0 != (shaders & VK_SHADER_STAGE_VERTEX_BIT)) m_vertShaderModule = createShaderModule(vkd, device, collection in initPipeline()
1302 vk::BinaryCollection& collection = m_context.getBinaryCollection(); initPipeline() local
1639 vk::BinaryCollection& collection = m_context.getBinaryCollection(); initPipeline() local
2038 vk::BinaryCollection& collection = m_context.getBinaryCollection(); initPipeline() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/
H A DvktBindingDescriptorUpdateASTests.cpp1176 vk::BinaryCollection& collection = m_context.getBinaryCollection(); in initPipeline() local
1180 if (collection.contains("vert")) shaders |= VK_SHADER_STAGE_VERTEX_BIT; in initPipeline()
1181 if (collection.contains("geom")) shaders |= VK_SHADER_STAGE_GEOMETRY_BIT; in initPipeline()
1182 if (collection.contains("tesc")) shaders |= VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT; in initPipeline()
1183 if (collection.contains("tese")) shaders |= VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT; in initPipeline()
1184 if (collection.contains("frag")) shaders |= VK_SHADER_STAGE_FRAGMENT_BIT; in initPipeline()
1186 for (BinaryCollection::Iterator it = collection.begin(); it != collection.end(); ++it) in initPipeline()
1190 TCU_THROW(InternalError, "Unused shaders detected in the collection"); in initPipeline()
1192 if (0 != (shaders & VK_SHADER_STAGE_VERTEX_BIT)) m_vertShaderModule = createShaderModule(vkd, device, collection in initPipeline()
1302 vk::BinaryCollection& collection = m_context.getBinaryCollection(); initPipeline() local
1639 vk::BinaryCollection& collection = m_context.getBinaryCollection(); initPipeline() local
2038 vk::BinaryCollection& collection = m_context.getBinaryCollection(); initPipeline() local
[all...]
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-collections-gen.h36 // Adds an entry to a collection. For Maps, properly handles extracting the
39 TNode<Object> collection, TNode<Object> add_function,
45 // Adds constructor entries to a collection. Choosing a fast path when
49 TNode<HeapObject> collection,
57 TNode<Object> collection,
61 // Adds constructor entries to a collection using the iterator protocol.
65 TNode<Object> collection,
68 // Constructs a collection instance. Choosing a fast path when possible.
73 // Fast path for constructing a collection instance if the constructor
77 // Fallback for constructing a collection instanc
[all...]
/third_party/PyYAML/tests/lib/
H A Dtest_appliance.py10 for collection in collections:
11 if not isinstance(collection, dict):
12 collection = vars(collection)
13 for key in sorted(collection):
14 value = collection[key]
/third_party/node/deps/v8/src/utils/
H A Dostreams.h159 // Print any collection which can be iterated via std::begin and std::end.
163 auto PrintCollection(const T& collection) -> PrintIteratorRange<
164 typename std::common_type<decltype(std::begin(collection)),
165 decltype(std::end(collection))>::type> {
166 return {std::begin(collection), std::end(collection)};

Completed in 22 milliseconds

123456