HomeSort by relevance Sort by last modified time
    Searched full:attributes (Results 176 - 200 of 21946) sorted by null

1 2 3 4 5 6 78 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
attr-mfpu-vfpv2.d 1 # name: attributes for -mfpu=vfpv2
9 File Attributes
attr-mfpu-vfpv3-d16.d 1 # name: attributes for -mfpu=vfpv3-d16
9 File Attributes
attr-mfpu-vfpv3.d 1 # name: attributes for -mfpu=vfpv3
9 File Attributes
attr-mfpu-vfpv4-d16.d 1 # name: attributes for -mfpu=vfpv4-d16
9 File Attributes
attr-mfpu-vfpv4.d 1 # name: attributes for -mfpu=vfpv4
9 File Attributes
attr-mfpu-vfpxd.d 1 # name: attributes for -mfpu=vfpxd
9 File Attributes
attr-override-cpu-directive.d 1 # name: EABI attributes .eabi_attribute overrides .cpu
9 File Attributes
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
attr-arch-opts-override-1.d 2 #name: C6X arch attributes, -march=c674x -march=c62x
7 File Attributes
attr-arch-opts-override-2.d 2 #name: C6X arch attributes, -march=c62x -march=c674x
7 File Attributes
attr-stack-directive-2.d 2 #name: C6X stack alignment attributes, directives 2
7 File Attributes
  /external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
TimelineApplet.form 18 <Group type="103" groupAlignment="0" attributes="0">
19 <Group type="102" alignment="0" attributes="0">
20 <EmptySpace max="-2" attributes="0"/>
21 <Group type="103" groupAlignment="0" attributes="0">
22 <Component id="jPanel1" alignment="1" max="32767" attributes="0"/>
23 <Component id="jPanel4" alignment="0" max="32767" attributes="1"/>
24 <Group type="102" alignment="1" attributes="0">
25 <Component id="canvasWrapper" pref="448" max="32767" attributes="0"/>
26 <EmptySpace max="-2" attributes="0"/>
27 <Component id="jPanel3" min="-2" max="-2" attributes="0"/
    [all...]
  /external/libxml2/test/valid/dtds/
nitf-2-5.dtd 48 <!ENTITY % global-attributes '
51 <!ENTITY % common-attributes '
52 %global-attributes;
74 %global-attributes;
86 %global-attributes;
91 %global-attributes;
104 %global-attributes;
112 %global-attributes;
118 %global-attributes;
124 %global-attributes;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 14 * This is helper tool to construct {@link Attributes} sets.
18 private Hashtable attributes = new Hashtable(); field in class:AttributeTable
23 attributes = copyTable(attrs);
55 Attributes attrs)
64 Object value = attributes.get(oid);
68 attributes.put(oid, a);
88 attributes.put(oid, v);
101 Object value = attributes.get(oid);
112 * Return all the attributes matching the OBJECT IDENTIFIER oid. The vector will be
113 * empty if there are no attributes of the required type present
    [all...]
  /external/llvm/test/Verifier/
inalloca1.ll 4 ; CHECK: Attributes {{.*}} are incompatible
7 ; CHECK: Attributes {{.*}} are incompatible
10 ; CHECK: Attributes {{.*}} are incompatible
13 ; CHECK: Attributes {{.*}} are incompatible
16 ; CHECK: Attributes {{.*}} are incompatible
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_barrierattr_init/
assertions.xml 3 The pthread_barrierattr_init( ) function shall initialize a barrier attributes object attr
4 with the default value for all of the attributes defined by the implementation.
8 After a barrier attributes object has been used to initialize one or more barriers, any
9 function affecting the attributes object (including destruction) shall not affect any
18 [ENOMEM] Insufficient memory exists to initialize the barrier attributes object.
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_init/
assertions.xml 5 shall initialize a condition variable attributes object attr with
6 the default value for all of the attributes defined by the implementation.
10 After a condition variable attributes object has been used to initialize one or more condition
11 variables, any function affecting the attributes object (including destruction) shall not affect any
21 [ENOMEM] Insufficient memory exists to initialize the condition variable attributes object.
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_destroy/
1-1.c 9 * shall destroy a mutex attributes object.
13 * 2. Destroy the attributes object using pthread_mutexattr_destroy()
27 /* Initialize a mutex attributes object */
29 fprintf(stderr, "Cannot initialize mutex attributes object\n");
33 /* Destroy the mutex attributes object */
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/
FwVolAttrib.c 3 Implements get/set firmware volume attributes.
21 Retrieves attributes, insures positive polarity of attribute bits, returns
22 resulting attributes in output parameter.
25 @param Attributes output buffer which contains attributes
27 @retval EFI_SUCCESS Successfully got volume attributes
34 OUT EFI_FV_ATTRIBUTES *Attributes
46 // First get the Firmware Volume Block Attributes
51 *Attributes = FvbAttributes;
52 *Attributes |= EFI_FV2_WRITE_POLICY_RELIABLE;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/FwVol/
FwVolAttrib.c 2 Implements get/set firmware volume attributes
20 Retrieves attributes, insures positive polarity of attribute bits, returns
21 resulting attributes in output parameter.
24 @param Attributes output buffer which contains attributes
26 @retval EFI_SUCCESS Successfully got volume attributes
33 OUT EFI_FV_ATTRIBUTES *Attributes
45 // First get the Firmware Volume Block Attributes
54 *Attributes = (EFI_FV_ATTRIBUTES)FvbAttributes;
62 Sets current attributes for volume
    [all...]
  /external/v8/src/
property.cc 16 const PropertyAttributes& attributes) {
18 os << (((attributes & READ_ONLY) == 0) ? "W" : "_"); // writable
19 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable
20 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable
26 PropertyAttributes attributes,
28 return DataField(key, field_index, attributes, kMutable, representation,
33 PropertyAttributes attributes,
38 PropertyDetails details(kData, attributes, kField, constness, representation,
45 PropertyAttributes attributes) {
48 return DataField(key, field_index, attributes, kConst
    [all...]
  /dalvik/dx/tests/014-field-attrib-ConstantValue/
expected.txt 50 attributes[0]:
54 end attributes[0]
63 attributes[0]:
67 end attributes[0]
76 attributes[0]:
80 end attributes[0]
89 attributes[0]:
93 end attributes[0]
102 attributes[0]:
106 end attributes[0
    [all...]
  /external/clang/test/Index/
attributes-cuda.cu 19 // CHECK: attributes-cuda.cu:5:30: FunctionDecl=f_device:5:30
20 // CHECK-NEXT: attributes-cuda.cu:5:16: attribute(device)
21 // CHECK: attributes-cuda.cu:6:30: FunctionDecl=f_global:6:30
22 // CHECK-NEXT: attributes-cuda.cu:6:16: attribute(global)
23 // CHECK: attributes-cuda.cu:7:32: VarDecl=g_constant:7:32 (Definition)
24 // CHECK-NEXT: attributes-cuda.cu:7:16: attribute(constant)
25 // CHECK: attributes-cuda.cu:8:32: VarDecl=g_shared:8:32 (Definition)
26 // CHECK-NEXT: attributes-cuda.cu:8:16: attribute(shared)
27 // CHECK: attributes-cuda.cu:9:28: FunctionDecl=f_host:9:28
28 // CHECK-NEXT: attributes-cuda.cu:9:16: attribute(host
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/jar/
ManifestWriter.java 26 import java.util.jar.Attributes;
40 public static void writeMainSection(OutputStream out, Attributes attributes)
45 String manifestVersion = attributes.getValue(Attributes.Name.MANIFEST_VERSION);
48 "Mandatory " + Attributes.Name.MANIFEST_VERSION + " attribute missing");
50 writeAttribute(out, Attributes.Name.MANIFEST_VERSION, manifestVersion);
52 if (attributes.size() > 1) {
53 SortedMap<String, String> namedAttributes = getAttributesSortedByName(attributes);
54 namedAttributes.remove(Attributes.Name.MANIFEST_VERSION.toString())
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_init/
assertions.xml 7 initializes a thread attributes object 'attr' with the default value
8 for all the individual attributes accorinding to a given implementation.
15 The resulting attributes object (that can also be modified by setting
17 attributes of the thread created.
20 A single attributes object can be used in multiple simultaneous calls to
23 already initialized 'attr' attributes object.
30 [ENOMEM] - Not enough memory to initialize the thread attributes
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
TestAttributeSetTest.java 21 private HashMap<String, String> attributes; field in class:TestAttributeSetTest
26 attributes = new HashMap<String, String>();
35 attributes.put("android:id", "@android:id/text1");
36 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
42 attributes.put("id", "@id/text1");
43 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
49 attributes.put("id", "@null");
50 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, false);
56 attributes.put("android:id", "@+id/text1");
58 TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null, true)
    [all...]

Completed in 730 milliseconds

1 2 3 4 5 6 78 91011>>