/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...] |
BooleanAttributeDescriptor.java | 29 public BooleanAttributeDescriptor(String xmlLocalName, String nsUri, IAttributeInfo attrInfo) { 30 super(xmlLocalName, nsUri, attrInfo, VALUES);
|
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);
|
ITextAttributeCreator.java | 40 * @param attrInfo The {@link IAttributeInfo} of this attribute. Can't be null. 46 IAttributeInfo 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);
|
EnumAttributeDescriptor.java | 31 String tooltip, IAttributeInfo attrInfo) { 32 super(xmlLocalName, nsUri, 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/ |
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);
|
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);
|
AndroidManifestDescriptors.java | 291 IAttributeInfo attrInfo) { 292 if (attrInfo == null) { 293 attrInfo = new AttributeInfo(xmlName, Format.STRING_SET ); 302 attrInfo, 311 attrInfo, 320 attrInfo, 328 attrInfo,
|
/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);
|
/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;
|
/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...] |
/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);
|
/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...] |
BaseLayoutRule.java | 534 IAttributeInfo attrInfo = newNode.getAttributeInfo(uri, name); 535 if (attrInfo != null) { 536 if (attrInfo.getFormats().contains(IAttributeInfo.Format.REFERENCE)) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/ |
LayoutDescriptors.java | 284 for (AttributeInfo attrInfo : layoutParams.getAttributes()) { 286 ANDROID_URI, attrInfo)) { 292 attrInfo,
|
/external/chromium/chrome/browser/password_manager/ |
password_store_mac.cc | 236 SecKeychainAttributeInfo attrInfo; 246 attrInfo.count = arraysize(tags); 247 attrInfo.tag = tags; 248 attrInfo.format = NULL; 253 OSStatus result = keychain.ItemCopyAttributesAndData(keychain_item, &attrInfo, [all...] |
/external/javassist/src/main/javassist/bytecode/ |
AnnotationsAttribute.java | 309 Walker(byte[] attrInfo) { 310 info = attrInfo;
|
/external/chromium_org/chrome/browser/password_manager/ |
password_store_mac.cc | 242 SecKeychainAttributeInfo attrInfo; 252 attrInfo.count = arraysize(tags); 253 attrInfo.tag = tags; 254 attrInfo.format = NULL; 266 OSStatus result = keychain.ItemCopyAttributesAndData(keychain_item, &attrInfo, [all...] |
/external/clang/tools/libclang/ |
IndexingContext.cpp | 51 : AttrInfo(CXIdxAttr_IBOutletCollection, other.cursor, other.loc, other.A) { 53 IBCollInfo.attrInfo = this; 76 Attrs.push_back(AttrInfo(CXIdxAttr_Unexposed, C, Loc, A)); 79 Attrs.push_back(AttrInfo(CXIdxAttr_IBAction, C, Loc, A)); 82 Attrs.push_back(AttrInfo(CXIdxAttr_IBOutlet, C, Loc, A)); 96 IBInfo.IBCollInfo.attrInfo = &IBInfo; [all...] |
/external/clang/include/clang-c/ |
Index.h | [all...] |