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

1 2

  /libcore/luni/src/main/java/java/lang/annotation/
ElementType.java 27 public enum ElementType {
  /external/dbus/bus/
config-parser-common.h 52 } ElementType;
54 ElementType bus_config_parser_element_name_to_type (const char *element_name);
55 const char* bus_config_parser_element_type_to_name (ElementType type);
  /external/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 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/openfst/src/include/fst/script/
weight-class.h 133 enum ElementType { ZERO, ONE, OTHER };
134 ElementType element_type_;
138 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 126 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT);
127 if (ElementType->isArrayType()) {
131 } else if (ElementType->isExtVectorType()) {
133 static_cast<const clang::ExtVectorType*>(ElementType);
150 if (TypeExportableHelper(ElementType, SPS, DiagEngine, VD,
294 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
296 if ((ElementType->getTypeClass() != clang::Type::Builtin) ||
297 (TypeExportableHelper(ElementType, SPS, DiagEngine, VD,
463 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
464 return ValidateVarDeclHelper(VD, ElementType, SPS, true, UnionDecl
    [all...]
slang_rs_reflection.cpp     [all...]
  /external/llvm/lib/VMCore/
Type.cpp 694 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
695 Type *ElementType = const_cast<Type*>(elementType);
696 assert(isValidElementType(ElementType) && "Invalid type for array element!");
698 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
700 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
703 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
721 VectorType *VectorType::get(Type *elementType, unsigned NumElements) {
722 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 932 QualType ElementType;
935 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg)
937 ElementType(elementType), Index(Idx) {
943 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
951 return ElementType;
955 return ElementType;
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 880 QualType elementType;
881 llvm::tie(elementCount, elementType) = getVLASize(Ty);
883 llvm::Type *llvmTy = ConvertTypeForMem(elementType);
    [all...]
CGExprCXX.cpp 793 QualType elementType,
808 QualType::DestructionKind dtorKind = elementType.isDestructedType();
823 pushIrregularPartialArrayCleanup(beginPtr, endOfInit, elementType,
833 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i), elementType, explicitPtr);
    [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 393 QualType ElementType;
399 ElementType = AType->getElementType();
405 ElementType = VType->getElementType();
410 ElementType = ILE->getType();
    [all...]
TreeTransform.h 623 QualType RebuildArrayType(QualType ElementType,
635 QualType RebuildConstantArrayType(QualType ElementType,
646 QualType RebuildIncompleteArrayType(QualType ElementType,
656 QualType RebuildVariableArrayType(QualType ElementType,
667 QualType RebuildDependentSizedArrayType(QualType ElementType,
678 QualType RebuildVectorType(QualType ElementType, unsigned NumElements,
686 QualType RebuildExtVectorType(QualType ElementType, unsigned NumElements,
694 QualType RebuildDependentSizedExtVectorType(QualType ElementType,
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/Rewrite/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 1919 milliseconds

1 2