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 {
  /art/runtime/mirror/
array.h 100 typedef T 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/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; }
  /external/chromium_org/chrome/browser/search_engines/
template_url_parser.cc 118 enum ElementType {
153 typedef std::map<std::string, ElementType> ElementNameToElementTypeMap;
162 // Returns the current ElementType.
163 ElementType GetKnownType();
171 std::vector<ElementType> elements_;
328 kElementNameToElementTypeMap = new std::map<std::string, ElementType>;
467 TemplateURLParsingContext::ElementType
  /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,
511 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
522 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/chromium_org/media/webm/
webm_parser.cc 21 enum ElementType {
32 ElementType type_;
506 // Finds ElementType for a specific ID.
507 static ElementType FindIdType(int id,
609 static int ParseNonListElement(ElementType type, int id, int64 element_size,
794 ElementType id_type =
801 DVLOG(1) << "No ElementType info for ID 0x" << std::hex << id;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 1011 QualType ElementType;
1014 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg)
1016 ElementType(elementType), Index(Idx) {
1022 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
1030 return ElementType;
1034 return ElementType;
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp     [all...]
CGExprCXX.cpp     [all...]
CGObjC.cpp 102 QualType ElementType = Context.getObjCIdType().withConst();
104 = Context.getConstantArrayType(ElementType, APNumElements,
126 ElementType,
139 ElementType,
148 ElementType,
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 479 QualType ElementType;
485 ElementType = AType->getElementType();
491 ElementType = VType->getElementType();
496 ElementType = ILE->getType();
    [all...]
TreeTransform.h 651 QualType RebuildArrayType(QualType ElementType,
663 QualType RebuildConstantArrayType(QualType ElementType,
674 QualType RebuildIncompleteArrayType(QualType ElementType,
684 QualType RebuildVariableArrayType(QualType ElementType,
695 QualType RebuildDependentSizedArrayType(QualType ElementType,
706 QualType RebuildVectorType(QualType ElementType, unsigned NumElements,
714 QualType RebuildExtVectorType(QualType ElementType, unsigned NumElements,
722 QualType RebuildDependentSizedExtVectorType(QualType ElementType,
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/AST/
ASTContext.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 

Completed in 4315 milliseconds

1 2