HomeSort by relevance Sort by last modified time
    Searched defs:ElementType (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
RuleConfiguration.java 19 import org.jacoco.core.analysis.ICoverageNode.ElementType;
41 * TODO: use ElementType directly once Maven 3 is required.
44 rule.setElement(ElementType.valueOf(element));
  /external/llvm/tools/llvm-pdbdump/
VariableDumper.cpp 134 std::unique_ptr<PDBSymbol> ElementType = ArrayType->getElementType();
135 while (auto NestedArray = dyn_cast<PDBSymbolTypeArray>(ElementType.get())) {
139 ElementType = NestedArray->getElementType();
142 ElementType->dump(*this);
FunctionDumper.cpp 199 auto ElementType = Symbol.getSession().getSymbolById(ElementTypeId);
200 if (!ElementType)
203 ElementType->dump(*this);
  /libcore/ojluni/src/main/java/java/lang/annotation/
ElementType.java 46 * {@code @Target(ElementType.FIELD)} may only be written as a modifier for a
54 * {@code @Target(ElementType.TYPE_USE)} may be written on the type of a field
62 * {@code @Target(ElementType.TYPE_USE)}, then {@code @NonNull}
73 public enum ElementType {
  /art/runtime/mirror/
array.h 116 typedef T ElementType;
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
ICoverageNode.java 23 public enum ElementType {
74 public abstract ElementType getElementType();
  /external/swiftshader/third_party/LLVM/utils/TableGen/
TGValueTypes.cpp 45 EVT ElementType;
49 : ElementType(elty), NumElements(num) {}
54 return ElementType;
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 19 import java.lang.annotation.ElementType;
51 EnumSet<ElementType> eTypes = EnumSet.noneOf(ElementType.class);
78 eTypes.add(ElementType.valueOf(p.toUpperCase(Locale.ROOT)));
111 eTypes.add(ElementType.TYPE);
114 EnumSet<ElementType> set = eTypes.clone();
116 set.remove(ElementType.TYPE);
117 set.remove(ElementType.PACKAGE);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 23 public class ElementType {
32 private ElementType theParent; // parent of this element type
36 Construct an ElementType:
50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) {
157 public ElementType parent() {return theParent;}
175 public boolean canContain(ElementType other) {
274 public void setParent(ElementType parent) { theParent = parent; }
  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 406 Type *ElementType = GEP->getResultElementType();
407 uint64_t ElementSize = DL->getTypeAllocSize(ElementType);
  /external/turbine/java/com/google/turbine/binder/bytecode/
BytecodeBoundClass.java 52 import java.lang.annotation.ElementType;
418 ImmutableSet<ElementType> target = null;
451 private static ImmutableSet<ElementType> bindTarget(AnnotationInfo annotation) {
452 ImmutableSet.Builder<ElementType> result = ImmutableSet.builder();
472 ImmutableSet.Builder<ElementType> target, EnumConstValue enumVal) {
473 if (enumVal.typeName().equals("Ljava/lang/annotation/ElementType;")) {
474 target.add(ElementType.valueOf(enumVal.constName()));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 47 ElementType,
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Type.cpp 624 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
625 Type *ElementType = const_cast<Type*>(elementType);
626 assert(isValidElementType(ElementType) && "Invalid type for array element!");
628 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
630 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
633 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
651 VectorType *VectorType::get(Type *elementType, unsigned NumElements) {
652 Type *ElementType = const_cast<Type*>(elementType);
    [all...]
  /external/vixl/src/
invalset-vixl.h 48 // - The templated class `ElementType` must provide comparison operators so that
69 // 'ElementType' and 'KeyType' are respectively the types of the elements and
75 class ElementType, \
84 ElementType, N_PREALLOCATED_ELEMENTS, KeyType, INVALID_KEY, RECLAIM_FROM, \
105 void insert(const ElementType& element);
109 size_t erase(const ElementType& element);
121 const ElementType GetMinElement();
126 static bool IsValid(const ElementType& element);
127 static KeyType GetKey(const ElementType& element);
128 static void SetKey(ElementType* element, KeyType key)
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 216 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
217 if (ElementType->isArrayType()) {
221 } else if (ElementType->isExtVectorType()) {
223 static_cast<const clang::ExtVectorType*>(ElementType);
240 if (TypeExportableHelper(ElementType, SPS, Context, VD,
399 const clang::Type *ElementType = GetExtVectorElementType(EVT);
401 if ((ElementType->getTypeClass() != clang::Type::Builtin) ||
402 (TypeExportableHelper(ElementType, SPS, Context, VD,
639 const clang::Type *ElementType = GetExtVectorElementType(EVT);
650 return ValidateTypeHelper(Context, C, ElementType, ND, Loc, SPS, true
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1007 QualType ElementType;
1010 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg)
1012 ElementType(elementType), Index(Idx) {
1018 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
1026 return ElementType;
1030 return ElementType;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1007 QualType ElementType;
1010 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg)
1012 ElementType(elementType), Index(Idx) {
1018 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
1026 return ElementType;
1030 return ElementType;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1069 QualType ElementType;
1072 ElementRegion(QualType elementType, NonLoc Idx, const SubRegion *sReg)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1069 QualType ElementType;
1072 ElementRegion(QualType elementType, NonLoc Idx, const SubRegion *sReg)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1069 QualType ElementType;
1072 ElementRegion(QualType elementType, NonLoc Idx, const SubRegion *sReg)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1069 QualType ElementType;
1072 ElementRegion(QualType elementType, NonLoc Idx, const SubRegion *sReg)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1069 QualType ElementType;
1072 ElementRegion(QualType elementType, NonLoc Idx, const SubRegion *sReg)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1069 QualType ElementType;
1072 ElementRegion(QualType elementType, NonLoc Idx, const SubRegion *sReg)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1007 QualType ElementType;
1010 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg)
1012 ElementType(elementType), Index(Idx) {
1018 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
1026 return ElementType;
1030 return ElementType;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1069 QualType ElementType;
1072 ElementRegion(QualType elementType, NonLoc Idx, const SubRegion *sReg)
    [all...]

Completed in 782 milliseconds

1 2 3 4 5 6