HomeSort by relevance Sort by last modified time
    Searched defs:ElementType (Results 1 - 25 of 28) 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/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/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...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 87 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT);
88 if (ElementType->isArrayType()) {
92 } else if (ElementType->isExtVectorType()) {
94 static_cast<const clang::ExtVectorType*>(ElementType);
111 if (TypeExportableHelper(ElementType, SPS, DiagEngine, VD,
251 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
253 if ((ElementType->getTypeClass() != clang::Type::Builtin) ||
254 (TypeExportableHelper(ElementType, SPS, DiagEngine, VD,
374 const clang::Type *ElementType = GET_EXT_VECTOR_ELEMENT_TYPE(EVT);
375 return ValidateVarDeclHelper(VD, ElementType, SPS, UnionDecl)
    [all...]
slang_rs_metadata_spec_encoder.cpp 202 unsigned ElementType =
204 if (!checkReturnIndex(&ElementType))
208 // Push the ElementType after the type base
209 mEncodedRSTypeInfo.push_back(ElementType);
slang_rs_reflection.cpp     [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 809 QualType ElementType;
812 ElementRegion(QualType elementType, NonLoc Idx, const MemRegion* sReg)
814 ElementType(elementType), Index(Idx) {
820 static void ProfileRegion(llvm::FoldingSetNodeID& ID, QualType elementType,
828 return ElementType;
832 return ElementType;
995 const ElementRegion *getElementRegion(QualType elementType, NonLoc Idx,
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 827 QualType elementType;
828 llvm::tie(elementCount, elementType) = getVLASize(Ty);
830 llvm::Type *llvmTy = ConvertTypeForMem(elementType);
    [all...]
CGExprCXX.cpp 773 QualType elementType,
817 QualType::DestructionKind dtorKind = elementType.isDestructedType();
820 pushRegularPartialArrayCleanup(beginPtr, curPtr, elementType,
853 QualType ElementType,
866 if (CGF.CGM.getTypes().isZeroInitializable(ElementType)) {
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
ASTContext.cpp     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 391 QualType ElementType;
397 ElementType = AType->getElementType();
403 ElementType = VType->getElementType();
408 ElementType = ILE->getType();
    [all...]
TreeTransform.h 586 QualType RebuildArrayType(QualType ElementType,
598 QualType RebuildConstantArrayType(QualType ElementType,
609 QualType RebuildIncompleteArrayType(QualType ElementType,
619 QualType RebuildVariableArrayType(QualType ElementType,
630 QualType RebuildDependentSizedArrayType(QualType ElementType,
641 QualType RebuildVectorType(QualType ElementType, unsigned NumElements,
649 QualType RebuildExtVectorType(QualType ElementType, unsigned NumElements,
657 QualType RebuildDependentSizedExtVectorType(QualType ElementType,
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 947 milliseconds

1 2