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

1 2

  /libcore/luni/src/main/java/java/lang/annotation/
ElementType.java 27 public enum ElementType {
  /external/llvm/lib/Target/R600/
AMDGPUFrameLowering.cpp 84 const Type *ElementType;
88 ElementType = AllocaType->getArrayElementType();
91 ElementType = AllocaType;
95 if (ElementType->isVectorTy()) {
96 VectorElements = ElementType->getVectorNumElements();
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 31 import java.lang.annotation.ElementType;
64 EnumSet<ElementType> eTypes = EnumSet.noneOf(ElementType.class);
91 eTypes.add(ElementType.valueOf(p.toUpperCase()));
124 eTypes.add(ElementType.TYPE);
127 EnumSet<ElementType> set = eTypes.clone();
129 set.remove(ElementType.TYPE);
130 set.remove(ElementType.PACKAGE);
  /external/llvm/utils/TableGen/
TGValueTypes.cpp 60 EVT ElementType;
64 : Type(TK_ExtendedVectorType), ElementType(elty), NumElements(num) {}
72 return ElementType;
  /external/openfst/src/include/fst/script/
weight-class.h 140 enum ElementType { ZERO, ONE, OTHER };
141 ElementType element_type_;
145 explicit WeightClass(ElementType et) : element_type_(et), impl_(0) { }
  /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; }
  /frameworks/compile/slang/
slang_rs_metadata_spec_encoder.cpp 203 unsigned ElementType =
205 if (!checkReturnIndex(&ElementType))
209 // Push the ElementType after the type base
210 mEncodedRSTypeInfo.push_back(ElementType);
slang_rs_export_type.cpp 125 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT);
126 if (ElementType->isArrayType()) {
130 } else if (ElementType->isExtVectorType()) {
132 static_cast<const clang::ExtVectorType*>(ElementType);
149 if (TypeExportableHelper(ElementType, SPS, DiagEngine, VD,
293 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
295 if ((ElementType->getTypeClass() != clang::Type::Builtin) ||
296 (TypeExportableHelper(ElementType, SPS, DiagEngine, VD,
510 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
521 return ValidateTypeHelper(C, ElementType, ND, Loc, SPS, true, UnionDecl
    [all...]
slang_rs_reflection.cpp     [all...]
  /external/llvm/lib/IR/
Type.cpp 683 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
684 Type *ElementType = const_cast<Type*>(elementType);
685 assert(isValidElementType(ElementType) && "Invalid type for array element!");
687 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
689 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
692 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
710 VectorType *VectorType::get(Type *elementType, unsigned NumElements) {
711 Type *ElementType = const_cast<Type*>(elementType);
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_parser.cc 78 enum ElementType {
112 ElementType type;
126 // Returns the current ElementType.
127 ElementType GetKnownType() {
211 kElementNameToElementTypeMap = new std::map<std::string, ElementType>;
228 static std::map<std::string, ElementType>* kElementNameToElementTypeMap;
232 std::vector<ElementType> elements_;
259 std::map<std::string, ParsingContext::ElementType>*
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 993 QualType ElementType;
996 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg)
998 ElementType(elementType), Index(Idx) {
1004 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
1012 return ElementType;
1016 return ElementType;
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 900 QualType elementType;
901 llvm::tie(elementCount, elementType) = getVLASize(Ty);
903 llvm::Type *llvmTy = ConvertTypeForMem(elementType);
    [all...]
CGExprCXX.cpp     [all...]
CGObjC.cpp 101 QualType ElementType = Context.getObjCIdType().withConst();
103 = Context.getConstantArrayType(ElementType, APNumElements,
118 ElementType,
126 ElementType,
134 ElementType,
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 392 QualType ElementType;
398 ElementType = AType->getElementType();
404 ElementType = VType->getElementType();
409 ElementType = ILE->getType();
    [all...]
TreeTransform.h 636 QualType RebuildArrayType(QualType ElementType,
648 QualType RebuildConstantArrayType(QualType ElementType,
659 QualType RebuildIncompleteArrayType(QualType ElementType,
669 QualType RebuildVariableArrayType(QualType ElementType,
680 QualType RebuildDependentSizedArrayType(QualType ElementType,
691 QualType RebuildVectorType(QualType ElementType, unsigned NumElements,
699 QualType RebuildExtVectorType(QualType ElementType, unsigned NumElements,
707 QualType RebuildDependentSizedExtVectorType(QualType ElementType,
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp     [all...]
RewriteModernObjC.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 639 milliseconds

1 2