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

1 2

  /external/chromium_org/extensions/common/permissions/
manifest_permission_set.h 26 typedef ManifestPermission ElementType;
api_permission_set.h 23 typedef APIPermission ElementType;
base_set_operators.h 17 // should define |ElementType| for the type of elements to store in the set,
29 typedef typename BaseSetOperatorsTraits<T>::ElementType ElementType;
31 typedef std::map<ElementIDType, linked_ptr<ElementType> > Map;
34 public std::iterator<std::input_iterator_tag, const ElementType*> {
57 const ElementType* operator*() const {
61 const ElementType* operator->() const {
161 ElementType* p = it1->Diff(*it2);
190 ElementType* p = it1->Intersect(*it2);
262 void insert(ElementType* item)
    [all...]
  /libcore/luni/src/main/java/java/lang/annotation/
ElementType.java 27 public enum ElementType {
  /art/runtime/mirror/
array.h 113 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/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/mojo/public/cpp/bindings/lib/
array_internal.h 120 typedef typename ArrayDataTraits<T>::StorageType ElementType;
123 ElementType* elements,
128 ElementType* elements,
133 const ElementType* elements,
141 typedef ArrayDataTraits<Handle>::StorageType ElementType;
144 ElementType* elements,
148 ElementType* elements,
152 const ElementType* elements,
158 typedef typename ArrayDataTraits<H>::StorageType ElementType;
161 ElementType* elements
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 43 ElementType,
httpext.h 214 DWORD ElementType;
ntddchgr.h 190 ELEMENT_TYPE ElementType;
dhcpsapi.h 338 DHCP_SUBNET_ELEMENT_TYPE_V6 ElementType;
  /external/chromium_org/chrome/browser/search_engines/
template_url_parser.cc 111 enum ElementType {
146 typedef std::map<std::string, ElementType> ElementNameToElementTypeMap;
155 // Returns the current ElementType.
156 ElementType GetKnownType();
164 std::vector<ElementType> elements_;
320 kElementNameToElementTypeMap = new std::map<std::string, ElementType>;
459 TemplateURLParsingContext::ElementType
  /external/llvm/lib/IR/
Type.cpp 676 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
677 Type *ElementType = const_cast<Type*>(elementType);
678 assert(isValidElementType(ElementType) && "Invalid type for array element!");
680 LLVMContextImpl *pImpl = ElementType->getContext().pImpl;
682 pImpl->ArrayTypes[std::make_pair(ElementType, NumElements)];
685 Entry = new (pImpl->TypeAllocator) ArrayType(ElementType, NumElements);
703 VectorType *VectorType::get(Type *elementType, unsigned NumElements) {
704 Type *ElementType = const_cast<Type*>(elementType);
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 200 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
201 if (ElementType->isArrayType()) {
205 } else if (ElementType->isExtVectorType()) {
207 static_cast<const clang::ExtVectorType*>(ElementType);
224 if (TypeExportableHelper(ElementType, SPS, Context, VD,
361 const clang::Type *ElementType = GetExtVectorElementType(EVT);
363 if ((ElementType->getTypeClass() != clang::Type::Builtin) ||
364 (TypeExportableHelper(ElementType, SPS, Context, VD,
580 const clang::Type *ElementType = GetExtVectorElementType(EVT);
591 return ValidateTypeHelper(Context, C, ElementType, ND, Loc, SPS, true
    [all...]
slang_rs_reflection.cpp     [all...]
  /external/chromium_org/media/formats/webm/
webm_parser.cc 22 enum ElementType {
33 ElementType type_;
511 // Finds ElementType for a specific ID.
512 static ElementType FindIdType(int id,
619 static int ParseNonListElement(ElementType type, int id, int64 element_size,
804 ElementType id_type =
811 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 753 QualType ElementType,
768 QualType::DestructionKind DtorKind = ElementType.isDestructedType();
795 pushIrregularPartialArrayCleanup(BeginPtr, EndOfInit, ElementType,
    [all...]
CGObjC.cpp 103 QualType ElementType = Context.getObjCIdType().withConst();
105 = Context.getConstantArrayType(ElementType, APNumElements,
127 ElementType,
140 ElementType,
149 ElementType,
    [all...]
  /external/pdfium/core/src/reflow/
layoutprocessor_reflow.cpp 525 FX_INT32 ElementType = GetElementTypes(layoutType);
526 switch(ElementType) {
648 FX_INT32 ElementType = GetElementTypes(layoutType);
649 switch(ElementType) {
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 565 QualType ElementType;
571 ElementType = AType->getElementType();
577 ElementType = VType->getElementType();
582 ElementType = ILE->getType();
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 1379 milliseconds

1 2