/toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/ |
attr-march-armv8m.base.d | 1 # name: attributes for -march=armv8-m.base 9 File Attributes
|
attr-march-armv8m.main.d | 1 # name: attributes for -march=armv8-m.main 9 File Attributes
|
attr-march-armv8m.main.dsp.d | 1 # name: attributes for -march=armv8-m.main+dsp 9 File Attributes
|
attr-mcpu.d | 1 # name: EABI attributes from command line 9 File Attributes
|
attr-mfpu-neon-fp16.d | 1 # name: attributes for -mfpu=neon-fp16 9 File Attributes
|
attr-override-mcpu.d | 1 # name: EABI attributes .cpu overrides -mcpu 9 File Attributes
|
/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/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setinheritsched/ |
assertions.xml | 6 When pthread_create uses the attributes objects, the inheritsched attribute determines how the other scheduling attributes of the created thread shall be set. 8 specifies that the thread scheduling attributes shall be inherited from the creating thread, and the scheduling attributes in this attr argument shall be ignored. 10 specifies that the thread scheduling attributes shall be set to the corresponding values from this attributes object.
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_destroy/ |
2-1.c | 9 * A destroyed 'attr' attributes object can be reinitialized using 30 /* Initialize a condition variable attributes object */ 33 "Cannot initialize condition variable attributes object\n"); 37 /* Destroy the condition variable attributes object */ 40 "Cannot destroy the condition variable attributes object\n"); 44 /* Initialize the condition variable attributes object again. This shouldn't result in an error. */
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_init/ |
1-1.c | 9 * initializes a mutex referenced by 'mutex' with attributes specified 10 * by 'attr'. If 'attr' is NULL, the default mutex attributes are used. 12 * mutex attributes. 29 /* Initialize a mutex attributes object */ 36 /* Initialize mutex1 with the default mutex attributes */ 43 /* Initialize mutex2 with NULL attributes */
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_destroy/ |
2-1.c | 9 * A destroyed 'attr' attributes object can be reinitialized using 30 /* Initialize a mutex attributes object */ 32 fprintf(stderr, "Cannot initialize mutex attributes object\n"); 36 /* Destroy the mutex attributes object */ 38 fprintf(stderr, "Cannot destroy the mutex attributes object\n"); 42 /* Initialize the mutex attributes object again. This shouldn't result in an error. */
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlockattr_destroy/ |
2-1.c | 8 * A destroyed 'attr' attributes object can be reinitialized using 30 /* Initialize a rwlock attributes object */ 33 printf("Cannot initialize rwlock attributes object\n"); 37 /* Destroy the rwlock attributes object */ 41 ("Cannot destroy the rwlock attributes object, error code: %d\n", 46 /* Initialize the rwlock attributes object again. This shouldn't result in an error. */
|
/device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/ |
SmmCpuMemoryManagement.c | 46 Return length according to page attributes.
67 Return address mask according to page attributes.
158 Return memory attributes of page entry.
162 @return Memory attributes of page entry.
169 UINT64 Attributes;
170 Attributes = 0;
172 Attributes |= EFI_MEMORY_RP;
175 Attributes |= EFI_MEMORY_RO;
178 Attributes |= EFI_MEMORY_XP;
180 return Attributes;
[all...] |
/external/testng/src/main/java/org/testng/xml/ |
TestNGContentHandler.java | 11 import org.xml.sax.Attributes; 124 private void xmlSuiteFile(boolean start, Attributes attributes) { 126 String path = attributes.getValue("path"); 139 private void xmlSuite(boolean start, Attributes attributes) { 142 String name = attributes.getValue("name"); 151 String verbose = attributes.getValue("verbose"); 155 String jUnit = attributes.getValue("junit"); 159 String parallel = attributes.getValue("parallel") [all...] |
/external/testng/src/main/java/org/testng/reporters/ |
XMLStringBuffer.java | 100 * @param attributes A Properties file representing the attributes (or null) 102 public void push(String tagName, @Nullable String schema, @Nullable Properties attributes) { 103 XMLUtils.xmlOpen(m_buffer, m_currentIndent, tagName + schema, attributes); 104 m_tagStack.push(new Tag(m_currentIndent, tagName, attributes)); 124 * @param attributes A Properties file representing the attributes (or null) 126 public void push(String tagName, @Nullable Properties attributes) { 127 push(tagName, "", attributes); 130 public void push(String tagName, String... attributes) { [all...] |
/device/linaro/bootloader/edk2/ArmPkg/Drivers/CpuDxe/ |
CpuMmuCommon.c | 65 Sets the attributes for a specified range in Gcd Memory Space Map.
67 This function sets the attributes for a specified range in
74 @param Attributes Attributes to set
76 @retval EFI_SUCCESS Memory attributes set successfully
86 IN UINT64 Attributes
97 BaseAddress, BaseAddress + Length, Attributes));
122 // Go through all related descriptors and set attributes accordingly
142 // Set memory attributes according to MTRR attribute and the original attribute of descriptor
147 (MemorySpaceMap[Index].Attributes & ~EFI_MEMORY_CACHETYPE_MASK) | (MemorySpaceMap[Index].Capabilities & Attributes) [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; 114 return attributes; [all...] |
/external/clang/test/SemaCUDA/ |
bad-attributes.cu | 1 // Tests handling of CUDA attributes that are bad either because they're 12 // Try applying attributes to functions and variables. Some should generate 25 // Try all pairs of attributes which can be present on a function or a 26 // variable. Check both orderings of the attributes, as that can matter in 31 __device__ __global__ void z4(); // expected-error {{attributes are not compatible}} 35 __host__ __global__ void z6(); // expected-error {{attributes are not compatible}} 39 __constant__ __shared__ int z8; // expected-error {{attributes are not compatible}} 43 __shared__ __constant__ int z10; // expected-error {{attributes are not compatible}} 46 __global__ __device__ void z11(); // expected-error {{attributes are not compatible}} 48 __global__ __host__ void z12(); // expected-error {{attributes are not compatible} [all...] |
/external/v8/src/ |
property.h | 18 // Each descriptor has a key, property attributes, property type, 32 PropertyAttributes attributes, 36 PropertyAttributes attributes, 42 PropertyAttributes attributes) { 43 return Descriptor(key, value, kData, attributes, kDescriptor, kConst, 49 PropertyAttributes attributes); 52 PropertyAttributes attributes) { 53 return Descriptor(key, foreign, kAccessor, attributes, kDescriptor, kConst, 78 PropertyAttributes attributes, PropertyLocation location, 83 details_(kind, attributes, location, constness, representation [all...] |
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
parsetree.py | 211 def __call__(cls, keyword, attributes, **kwargs): 215 attributes, **kwargs) 227 return type.__call__(cls, keyword, attributes, **kwargs) 241 def __init__(self, keyword, attributes, expressions, 250 :param attributes: raw dictionary of attribute key/value pairs 252 :param expressions: a set of identifiers that are legal attributes, 256 attributes, which cannot contain embedded expressions 264 self.attributes = attributes 284 for key in self.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/Application/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/Application/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);
|