/external/proguard/src/proguard/obfuscate/ |
AttributeShrinker.java | 30 * This ClassVisitor removes attributes that are not marked as being used or 47 // Compact the array for class attributes. 49 shrinkArray(programClass.attributes, 52 // Compact the attributes in fields, methods, and class attributes, 69 // Compact the attributes array. 71 shrinkArray(programMember.attributes, 74 // Compact any attributes of the remaining attributes. 86 // Compact the attributes array [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGResourceLinearGradient.cpp | 46 FloatPoint RenderSVGResourceLinearGradient::startPoint(const LinearGradientAttributes& attributes) const 48 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.x1(), attributes.y1()); 51 FloatPoint RenderSVGResourceLinearGradient::endPoint(const LinearGradientAttributes& attributes) const 53 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.x2(), attributes.y2());
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
javascript.py | 9 def __init__(self, attributes=None): 10 super(JavascriptAction, self).__init__(attributes)
|
js_collect_garbage.py | 7 def __init__(self, attributes=None): 8 super(JsCollectGarbageAction, self).__init__(attributes)
|
reload.py | 8 def __init__(self, attributes=None): 9 super(ReloadAction, self).__init__(attributes)
|
/external/clang/test/CodeGen/ |
mips16-attr.c | 14 // CHECK: attributes [[MIPS16]] = { nounwind {{.*}} "mips16" {{.*}} } 16 // CHECK: attributes [[NOMIPS16]] = { nounwind {{.*}} "nomips16" {{.*}} }
|
/external/clang/test/Sema/ |
attr-coldhot.c | 9 int qux() __attribute__((__hot__)) __attribute__((__cold__)); // expected-error{{'__hot__' and cold attributes are not compatible}} 10 int baz() __attribute__((__cold__)) __attribute__((__hot__)); // expected-error{{'__cold__' and hot attributes are not compatible}}
|
/external/clang/test/SemaObjC/ |
conflict-atomic-property.m | 5 @property (nonatomic, assign, atomic) float dummy; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}} 9 @property (atomic, nonatomic, assign) float d4; // expected-error {{property attributes 'atomic' and 'nonatomic' are mutually exclusive}}
|
property-12.m | 4 @property(readonly,assign) id X; // expected-warning {{property attributes 'readonly' and 'assign' are mutually exclusive}} 8 @property(readonly,retain) id X; // expected-warning {{property attributes 'readonly' and 'retain' are mutually exclusive}} 12 @property(readonly,copy) id X; // expected-warning {{property attributes 'readonly' and 'copy' are mutually exclusive}} 16 @property(readonly,readwrite) id X; // expected-error {{property attributes 'readonly' and 'readwrite' are mutually exclusive}} 20 @property(assign,copy) id X; // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}} 24 @property(assign,retain) id X; // expected-error {{property attributes 'assign' and 'retain' are mutually exclusive}} 28 @property(copy,retain) id X; // expected-error {{property attributes 'copy' and 'retain' are mutually exclusive}}
|
/external/doclava/src/com/google/doclava/apicheck/ |
XmlApiFile.java | 30 import org.xml.sax.Attributes; 70 public void startElement(String uri, String localName, String qName, Attributes attributes) { 73 new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes 82 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source")); 83 String visibility = attributes.getValue("visibility"); 88 boolean isStatic = Boolean.valueOf(attributes.getValue("static")); 90 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract")); 96 boolean isFinal = Boolean.valueOf(attributes.getValue("final")) [all...] |
/cts/tests/tests/drm/src/android/drm/cts/ |
DrmEventTest.java | 30 HashMap<String, Object> attributes = new HashMap<String, Object>(3); local 31 attributes.put("Hello World", attributes); 32 attributes.put("Hello", "World"); 33 attributes.put("World", ""); 38 checkGetAttributeWithEventType(attributes, null, true); 39 checkGetAttributeWithEventType(attributes, "", true); 40 checkGetAttributeWithEventType(attributes, "Hello", true); 41 checkGetAttributeWithEventType(attributes, "World", true); 42 checkGetAttributeWithEventType(attributes, "Hello World", true) [all...] |
/external/llvm/test/Bitcode/ |
attributes.ll | 210 ; CHECK: attributes #0 = { noreturn } 211 ; CHECK: attributes #1 = { nounwind } 212 ; CHECK: attributes #2 = { readnone } 213 ; CHECK: attributes #3 = { readonly } 214 ; CHECK: attributes #4 = { noinline } 215 ; CHECK: attributes #5 = { alwaysinline } 216 ; CHECK: attributes #6 = { optsize } 217 ; CHECK: attributes #7 = { ssp } 218 ; CHECK: attributes #8 = { sspreq } 219 ; CHECK: attributes #9 = { noredzone [all...] |
/libcore/luni/src/main/java/java/util/jar/ |
Manifest.java | 59 private Attributes mainAttributes = new Attributes(); 61 private HashMap<String, Attributes> entries = new HashMap<String, Attributes>(); 76 * The end of the main attributes section in the manifest is needed in 88 * Creates a new {@code Manifest} instance using the attributes obtained 92 * {@code InputStream} to parse for attributes. 102 * same attributes as those found in the parameter {@code Manifest}. 105 * {@code Manifest} instance to obtain attributes from. 109 mainAttributes = (Attributes) man.mainAttributes.clone() 327 Attributes attributes = manifest.entries.get(key); local [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
TestPackageXmlParser.java | 22 import org.xml.sax.Attributes; 66 public void startElement(String uri, String localName, String name, Attributes attributes) { 69 final String entryUriValue = attributes.getValue("appPackageName"); 70 final String testPackageNameSpace = attributes.getValue("appNameSpace"); 71 final String packageName = attributes.getValue("name"); 72 final String runnerName = attributes.getValue("runner"); 73 final String jarPath = attributes.getValue("jarPath"); 74 final String signatureCheck = attributes.getValue("signatureCheck"); 75 final String javaPackageFilter = attributes.getValue("javaPackageFilter") [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
NamedNodeMapRemoveNamedItemNS.java | 77 NamedNodeMap attributes; local 85 attributes = element.getAttributes(); 86 attribute = (Attr) attributes.removeNamedItemNS("http://www.nist.gov", 88 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov", 96 // NamedNodeMap attributes; 107 // attributes = element.getAttributes(); 108 // attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr"); 109 // attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr"); 117 NamedNodeMap attributes; local 132 attributes = element.getAttributes() 142 NamedNodeMap attributes; local 209 NamedNodeMap attributes; local 231 NamedNodeMap attributes; local 253 NamedNodeMap attributes; local 276 NamedNodeMap attributes; local [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/ |
StdMember.java | 37 /** {@code non-null;} list of associated attributes */ 38 private final AttributeList attributes; field in class:StdMember 46 * @param attributes {@code non-null;} list of associated attributes 49 AttributeList attributes) { 58 if (attributes == null) { 59 throw new NullPointerException("attributes == null"); 65 this.attributes = attributes; 108 return attributes; [all...] |
/dalvik/dx/src/com/android/dx/cf/iface/ |
StdMember.java | 37 /** {@code non-null;} list of associated attributes */ 38 private final AttributeList attributes; field in class:StdMember 46 * @param attributes {@code non-null;} list of associated attributes 49 AttributeList attributes) { 58 if (attributes == null) { 59 throw new NullPointerException("attributes == null"); 65 this.attributes = attributes; 108 return attributes; [all...] |
/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttCode.java | 25 * Attribute class for standard {@code Code} attributes. 28 /** {@code non-null;} attribute name for attributes of this type */ 43 /** {@code non-null;} the associated list of attributes */ 44 private final AttributeList attributes; field in class:AttCode 53 * @param attributes {@code non-null;} the associated list of attributes 56 ByteCatchList catches, AttributeList attributes) { 81 if (attributes.isMutable()) { 82 throw new MutabilityException("attributes.isMutable()"); 86 throw new NullPointerException("attributes == null") [all...] |
/developers/build/prebuilts/gradle/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/ |
SampleGattAttributes.java | 22 * This class includes a small subset of standard GATT attributes for demonstration purposes. 25 private static HashMap<String, String> attributes = new HashMap(); field in class:SampleGattAttributes 31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service"); 32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service"); 34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement"); 35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); 39 String name = attributes.get(uuid);
|
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/ |
SampleGattAttributes.java | 22 * This class includes a small subset of standard GATT attributes for demonstration purposes. 25 private static HashMap<String, String> attributes = new HashMap(); field in class:SampleGattAttributes 31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service"); 32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service"); 34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement"); 35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); 39 String name = attributes.get(uuid);
|
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/ |
SampleGattAttributes.java | 22 * This class includes a small subset of standard GATT attributes for demonstration purposes. 25 private static HashMap<String, String> attributes = new HashMap(); field in class:SampleGattAttributes 31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service"); 32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service"); 34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement"); 35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); 39 String name = attributes.get(uuid);
|
/external/chromium_org/sandbox/win/src/ |
app_container_unittest.cc | 39 scoped_ptr<AppContainerAttributes> attributes(new AppContainerAttributes); 42 attributes->SetAppContainer(L"S-1-foo", capabilities)); 45 attributes->SetAppContainer(L"S-1-15-2-12345-234", capabilities)); 46 EXPECT_TRUE(attributes->HasAppContainer()); 48 attributes.reset(new AppContainerAttributes); 54 attributes->SetAppContainer(L"S-1-15-2-1-2", capabilities)); 55 EXPECT_TRUE(attributes->HasAppContainer());
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
hyperlink_text_view_unittest.mm | 91 // Verifies text attributes are set as expected for setMessageWithLink:... 99 NSDictionary* attributes; 102 attributes = [[view_ textStorage] attributesAtIndex:0 107 EXPECT_NSEQ(GetDefaultTextAttributes(), attributes); 109 attributes = [[view_ textStorage] attributesAtIndex:3 114 EXPECT_NSEQ(GetDefaultLinkAttributes(), attributes); 116 attributes = [[view_ textStorage] attributesAtIndex:7 121 EXPECT_NSEQ(GetDefaultTextAttributes(), attributes); 126 // Verifies setMessage sets text and attributes properly. 133 NSDictionary* attributes; [all...] |
/external/smack/src/org/jivesoftware/smack/packet/ |
Registration.java | 31 * existing account information. XMPP servers may require a number of attributes to be set 32 * when creating a new account. The standard account attributes are as follows: 54 private Map<String, String> attributes = new HashMap<String,String>(); field in class:Registration 80 * Returns the map of String key/value pairs of account attributes. 82 * @return the account attributes. 85 return attributes; 89 * Sets the account attributes. The map must only contain String key/value pairs. 91 * @param attributes the account attributes. 93 public void setAttributes(Map<String, String> attributes) { [all...] |
/bionic/tests/ |
pthread_test.cpp | 101 pthread_attr_t attributes; local 102 ASSERT_EQ(0, pthread_attr_init(&attributes)); 103 ASSERT_EQ(0, pthread_attr_setstacksize(&attributes, static_cast<size_t>(-1) & ~(getpagesize() - 1))); 106 ASSERT_EQ(EAGAIN, pthread_create(&t, &attributes, IdFn, NULL)); 355 pthread_attr_t attributes; local 356 pthread_getattr_np(pthread_self(), &attributes); local 357 pthread_attr_getguardsize(&attributes, reinterpret_cast<size_t*>(arg)); 361 static size_t GetActualGuardSize(const pthread_attr_t& attributes) { 364 pthread_create(&t, &attributes, GetActualGuardSizeFn, &result); 371 pthread_attr_t attributes; local 372 pthread_getattr_np(pthread_self(), &attributes); local 387 pthread_attr_t attributes; local 413 pthread_attr_t attributes; local [all...] |