/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
ListAttributeDescriptor.java | 42 String nsUri, IAttributeInfo attrInfo) { 43 return new ListAttributeDescriptor(xmlLocalName, nsUri, attrInfo); 50 * If <code>attrInfo</code> is not null and has non-null enum values, these will be 54 public ListAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 55 super(xmlLocalName, nsUri, attrInfo); 56 if (attrInfo != null) { 57 mValues = attrInfo.getEnumValues(); 63 * and does not lookup the content of <code>attrInfo</code>. 65 public ListAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo, 67 super(xmlLocalName, nsUri, attrInfo); [all...] |
FlagAttributeDescriptor.java | 48 * If <code>attrInfo</code> is not null and has non-null flag values, these will be 52 public FlagAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 53 super(xmlLocalName, nsUri, attrInfo); 54 if (attrInfo != null) { 55 mNames = attrInfo.getFlagValues(); 61 * and does not lookup the content of <code>attrInfo</code>. 64 String tooltip, IAttributeInfo attrInfo, String[] names) { 65 super(xmlLocalName, nsUri, attrInfo);
|
ReferenceAttributeDescriptor.java | 50 String nsUri, IAttributeInfo attrInfo) { 63 * @param attrInfo The {@link IAttributeInfo} of this attribute. Can't be null. 66 IAttributeInfo attrInfo) { 67 super(xmlLocalName, nsUri, attrInfo); 78 * @param attrInfo The {@link IAttributeInfo} of this attribute. Can't be null. 81 String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 82 super(xmlLocalName, nsUri, attrInfo);
|
BooleanAttributeDescriptor.java | 29 public BooleanAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 30 super(xmlLocalName, nsUri, attrInfo, VALUES);
|
EnumAttributeDescriptor.java | 31 String tooltip, IAttributeInfo attrInfo) { 32 super(xmlLocalName, nsUri, attrInfo);
|
ITextAttributeCreator.java | 40 * @param attrInfo The {@link IAttributeInfo} of this attribute. Can't be null. 46 IAttributeInfo attrInfo);
|
AttributeDescriptor.java | 51 * @param attrInfo The {@link IAttributeInfo} of this attribute. Can't be null for a "real" 56 public AttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 60 mAttrInfo = attrInfo;
|
TextAttributeDescriptor.java | 60 * @param attrInfo The {@link IAttributeInfo} of this attribute. Can't be null. 65 IAttributeInfo attrInfo) { 66 super(xmlLocalName, nsUri, attrInfo);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/ |
ClassAttributeDescriptor.java | 50 * @param attrInfo The {@link IAttributeInfo} of this attribute. Can't be null. 56 IAttributeInfo attrInfo, 58 super(xmlLocalName, nsUri, attrInfo); 76 * @param attrInfo The {@link IAttributeInfo} of this attribute. Can't be null. 85 IAttributeInfo attrInfo, 88 super(xmlLocalName, nsUri, attrInfo);
|
ManifestPkgAttrDescriptor.java | 40 String nsUri, IAttributeInfo attrInfo) { 41 return new ManifestPkgAttrDescriptor(xmlLocalName, nsUri, attrInfo); 45 public ManifestPkgAttrDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 46 super(xmlLocalName, nsUri, attrInfo);
|
ThemeAttributeDescriptor.java | 41 String nsUri, IAttributeInfo attrInfo) { 42 return new ThemeAttributeDescriptor(xmlLocalName, nsUri, attrInfo); 46 public ThemeAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 47 super(xmlLocalName, nsUri, attrInfo);
|
PackageAttributeDescriptor.java | 30 public PackageAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 31 super(xmlLocalName, nsUri, attrInfo);
|
/external/chromium_org/third_party/skia/include/xml/ |
SkXMLParser.h | 115 struct AttrInfo { 123 void getAttributeInfo(int, AttrInfo*); 135 AttrInfo* fAttrInfos;
|
/external/skia/include/xml/ |
SkXMLParser.h | 115 struct AttrInfo { 123 void getAttributeInfo(int, AttrInfo*); 135 AttrInfo* fAttrInfos;
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ |
CertUtils.java | 50 static X509AttributeCertificateHolder generateFullAttrCert(ContentSigner signer, AttributeCertificateInfo attrInfo) 54 return new X509AttributeCertificateHolder(generateAttrStructure(attrInfo, signer.getAlgorithmIdentifier(), generateSig(signer, attrInfo))); 98 private static AttributeCertificate generateAttrStructure(AttributeCertificateInfo attrInfo, AlgorithmIdentifier sigAlgId, byte[] signature) 102 v.add(attrInfo);
|
/external/javassist/src/main/javassist/bytecode/ |
AttributeInfo.java | 38 protected AttributeInfo(ConstPool cp, int attrname, byte[] attrinfo) { 41 info = attrinfo; 53 * @param attrinfo <code>info</code> field 56 public AttributeInfo(ConstPool cp, String attrname, byte[] attrinfo) { 57 this(cp, cp.addUtf8Info(attrname), attrinfo);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/ |
ValuesContentAssist.java | 187 AttribInfo attrInfo = new AttribInfo(); 188 Object[] values = getAttributeValueChoices(currAttrNode, attrInfo, 190 char needTag = attrInfo.needTag; 191 if (attrInfo.correctedPrefix != null) { 192 prefix = attrInfo.correctedPrefix;
|
/external/clang/tools/libclang/ |
IndexingContext.h | 209 struct AttrInfo : public CXIdxAttrInfo { 212 AttrInfo(CXIdxAttrKind Kind, CXCursor C, CXIdxLoc Loc, const Attr *A) { 220 struct IBOutletCollectionInfo : public AttrInfo { 225 AttrInfo(CXIdxAttr_IBOutletCollection, C, Loc, A) { 232 static bool classof(const AttrInfo *A) { 240 SmallVector<AttrInfo, 2> Attrs;
|
/external/chromium_org/third_party/skia/src/ports/ |
SkXMLPullParser_expat.cpp | 63 SkXMLPullParser::AttrInfo* info = (SkXMLPullParser::AttrInfo*)alloc.alloc(n * sizeof(SkXMLPullParser::AttrInfo),
|
/external/skia/src/ports/ |
SkXMLPullParser_expat.cpp | 63 SkXMLPullParser::AttrInfo* info = (SkXMLPullParser::AttrInfo*)alloc.alloc(n * sizeof(SkXMLPullParser::AttrInfo),
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidContentAssist.java | 339 * In input, attrInfo contains details on the analyzed context, namely whether the 342 * In output, attrInfo also contains two possible new values (this is a hack to circumvent 358 String parent, Node currentNode, UiElementNode currentUiNode, AttribInfo attrInfo, 361 if (attrInfo.isInValue) { 364 String value = attrInfo.valuePrefix; 370 attrInfo.correctedPrefix = value; 372 attrInfo.needTag = '"'; 377 String attrName = attrInfo.name; 393 choices = getAttributeValueChoices(currAttrNode, attrInfo, value); 415 choices = data.getAttributeValues(parent, attrInfo.name, greatGrandParentName) [all...] |
/external/chromium_org/third_party/skia/src/xml/ |
SkXMLPullParser.cpp | 125 void SkXMLPullParser::getAttributeInfo(int index, AttrInfo* info)
|
/external/skia/src/xml/ |
SkXMLPullParser.cpp | 125 void SkXMLPullParser::getAttributeInfo(int index, AttrInfo* info)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
BaseViewRule.java | 695 for (IAttributeInfo attrInfo : selectedNode.getDeclaredAttributes()) { 696 String id = attrInfo != null ? attrInfo.getName() : null; 701 if (attrInfo == null) { 704 EnumSet<Format> formats = attrInfo.getFormats(); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
ValueCompleterTest.java | 126 public TestTextAttributeDescriptor(String xmlLocalName, IAttributeInfo attrInfo) { 127 super(xmlLocalName, ANDROID_URI, attrInfo);
|