/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/ |
SymbolSerializer.h | 50 SymbolSerializer(BumpPtrAllocator &Storage, CodeViewContainer Container); 54 CodeViewContainer Container) { 57 SymbolSerializer Serializer(Storage, Container);
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/CodeView/ |
SymbolSerializer.h | 50 CodeViewContainer Container) { 53 SymbolSerializer Serializer(Storage, Container); 60 SymbolSerializer(BumpPtrAllocator &Storage, CodeViewContainer Container);
|
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/CodeView/ |
SymbolSerializer.h | 50 CodeViewContainer Container) { 53 SymbolSerializer Serializer(Storage, Container); 60 SymbolSerializer(BumpPtrAllocator &Storage, CodeViewContainer Container);
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/ |
SymbolSerializer.h | 50 SymbolSerializer(BumpPtrAllocator &Storage, CodeViewContainer Container); 54 CodeViewContainer Container) { 57 SymbolSerializer Serializer(Storage, Container);
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/ |
SymbolSerializer.h | 50 SymbolSerializer(BumpPtrAllocator &Storage, CodeViewContainer Container); 54 CodeViewContainer Container) { 57 SymbolSerializer Serializer(Storage, Container);
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/CodeView/ |
SymbolSerializer.h | 50 SymbolSerializer(BumpPtrAllocator &Storage, CodeViewContainer Container); 54 CodeViewContainer Container) { 57 SymbolSerializer Serializer(Storage, Container);
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/ |
SymbolSerializer.h | 50 SymbolSerializer(BumpPtrAllocator &Storage, CodeViewContainer Container); 54 CodeViewContainer Container) { 57 SymbolSerializer Serializer(Storage, Container);
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/ |
ClassTest.java | 24 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Container; 65 @Container({@Repeated(1)}) 69 @Container({@Repeated(2), @Repeated(3)}) 104 Class<Container> container = Container.class; local 106 assertIsAnnotationPresent(SingleAnnotation.class, container, false); 107 assertIsAnnotationPresent(MultipleAnnotation.class, container, true); 108 assertIsAnnotationPresent(MultipleAnnotationExplicitSingle.class, container, true); 109 assertIsAnnotationPresent(MultipleAnnotationOddity.class, container, true) 135 Class<Container> container = Container.class; local 182 Class<Container> container = Container.class; local 238 Class<Container> container = Container.class; local [all...] |
PackageTest.java | 22 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Container; 45 Class<Container> container = Container.class; local 46 checkDeclaredAnnotation(NoAnnotation.class, container, null); 47 checkDeclaredAnnotation(SingleAnnotation.class, container, null); 48 checkDeclaredAnnotation(MultipleAnnotation.class, container, 49 "@Container({@Repeated(1), @Repeated(2)})"); 50 checkDeclaredAnnotation(MultipleAnnotationExplicitSingle.class, container, 51 "@Container({@Repeated(1)})") 81 Class<Container> container = Container.class; local 111 Class<Container> container = Container.class; local [all...] |
FieldTest.java | 25 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Container; 54 @Container({@Repeated(1)}) 58 @Container({@Repeated(2), @Repeated(3)}) 75 Class<? extends Annotation> container = Container.class; local 76 checkDeclaredAnnotation(c, "noAnnotation", container, null); 77 checkDeclaredAnnotation(c, "multipleAnnotationOddity", container, 78 "@Container({@Repeated(2), @Repeated(3)})"); 79 checkDeclaredAnnotation(c, "multipleAnnotationExplicitSingle", container, 80 "@Container({@Repeated(1)})") 111 Class<? extends Annotation> container = Container.class; local 143 Class<? extends Annotation> container = Container.class; local [all...] |
MethodTest.java | 25 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.Container; 54 @Container({@Repeated(1)}) 58 @Container({@Repeated(2), @Repeated(3)}) 75 Class<? extends Annotation> container = Container.class; local 76 checkDeclaredAnnotation(c, "noAnnotation", container, null); 77 checkDeclaredAnnotation(c, "multipleAnnotationOddity", container, 78 "@Container({@Repeated(2), @Repeated(3)})"); 79 checkDeclaredAnnotation(c, "multipleAnnotationExplicitSingle", container, 80 "@Container({@Repeated(1)})") 111 Class<? extends Annotation> container = Container.class; local 143 Class<? extends Annotation> container = Container.class; local [all...] |
/external/libcxx/test/std/containers/unord/unord.map/unord.map.elem/ |
index.pass.cpp | 119 using Container = TCT::unordered_map<>; 120 using Key = Container::key_type; 121 using MappedType = Container::mapped_type; 122 using ValueTp = Container::value_type; 126 Container c; 138 Container c; 150 Container c;
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/unord.map.elem/ |
index.pass.cpp | 119 using Container = TCT::unordered_map<>; 120 using Key = Container::key_type; 121 using MappedType = Container::mapped_type; 122 using ValueTp = Container::value_type; 126 Container c; 138 Container c; 150 Container c;
|
/art/libartbase/base/ |
transform_array_ref.h | 176 ArrayRef<ValueType> container, Function f) { 177 return TransformArrayRef<ValueType, Function>(container, f); 180 template <typename Container, typename Function> 181 TransformArrayRef<typename Container::value_type, Function> MakeTransformArrayRef( 182 Container& container, Function f) { 183 return TransformArrayRef<typename Container::value_type, Function>( 184 ArrayRef<typename Container::value_type>(container.data(), container.size()), f) [all...] |
iteration_range.h | 24 // Helper class that acts as a container for range-based loops, given an iteration 57 template <typename Container> 58 inline auto ReverseRange(Container&& c) {
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
LoopIterator.h | 57 LoopBlocksDFS(Loop *Container) : 58 L(Container), PostNumbers(NextPowerOf2(Container->getNumBlocks())) { 59 PostBlocks.reserve(Container->getNumBlocks());
|
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/ |
Theme.java | 6 import java.awt.Container; 58 if (cmp instanceof Container) { 59 Container c = (Container) cmp;
|
/external/autotest/site_utils/lxc/ |
__init__.py | 6 1. Download base container from given GS location, setup the base container. 7 2. Create a snapshot as test container from base container. 8 3. Mount a directory in drone to the test container. 9 4. Run a command in the container and return the output. 10 5. Cleanup, e.g., destroy the container. 15 from container import Container 16 from container import ContainerI [all...] |
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
p9-0x.cpp | 58 template<template<typename...> class Container> void f(Container<int>); // expected-note {{deduced type 'X<[...], (default) int>' of 1st parameter does not match adjusted type 'X<[...], double>' of argument [with Container = X]}}
|
/external/clang/test/Layout/ |
ms-vtordisp-local.cpp | 10 struct Container { 212 Container::f();
|
/external/libcxx/test/std/containers/associative/map/map.modifiers/ |
insert_iter_cv.pass.cpp | 22 template <class Container> 25 typedef Container M;
|
/external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/ |
insert_iter_cv.pass.cpp | 22 template <class Container> 25 typedef Container M;
|
/external/llvm/include/llvm/ADT/ |
iterator_range.h | 36 //TODO: Add SFINAE to test that the Container's iterators match the range's 38 template <typename Container> 39 iterator_range(Container &&c)
|
/external/python/cpython2/Lib/ctypes/test/ |
test_array_in_pointer.py | 16 class Container(Structure): 24 # create a container, which holds a pointer to the pvalues array. 25 c = Container()
|
/external/python/cpython3/Lib/ctypes/test/ |
test_array_in_pointer.py | 16 class Container(Structure): 24 # create a container, which holds a pointer to the pvalues array. 25 c = Container()
|