HomeSort by relevance Sort by last modified time
    Searched full:attributes (Results 651 - 675 of 8380) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/openssl/openssl/crypto/store/
store.h 172 /* Store functions take attribute lists. Those attributes come with codes.
236 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
238 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
243 int STORE_revoke_certificate(STORE *e, OPENSSL_ITEM attributes[],
245 int STORE_delete_certificate(STORE *e, OPENSSL_ITEM attributes[],
247 void *STORE_list_certificate_start(STORE *e, OPENSSL_ITEM attributes[],
252 EVP_PKEY *STORE_generate_key(STORE *e, OPENSSL_ITEM attributes[],
254 EVP_PKEY *STORE_get_private_key(STORE *e, OPENSSL_ITEM attributes[],
257 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
261 int STORE_revoke_private_key(STORE *e, OPENSSL_ITEM attributes[],
    [all...]
  /external/openssl/crypto/store/
store.h 172 /* Store functions take attribute lists. Those attributes come with codes.
236 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
238 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
243 int STORE_revoke_certificate(STORE *e, OPENSSL_ITEM attributes[],
245 int STORE_delete_certificate(STORE *e, OPENSSL_ITEM attributes[],
247 void *STORE_list_certificate_start(STORE *e, OPENSSL_ITEM attributes[],
252 EVP_PKEY *STORE_generate_key(STORE *e, OPENSSL_ITEM attributes[],
254 EVP_PKEY *STORE_get_private_key(STORE *e, OPENSSL_ITEM attributes[],
257 OPENSSL_ITEM attributes[], OPENSSL_ITEM parameters[]);
261 int STORE_revoke_private_key(STORE *e, OPENSSL_ITEM attributes[],
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative_content/
content_condition.h 36 // attributes needs to be fulfilled in order for the condition to be fulfilled.
38 // We distinguish between two types of attributes:
39 // - URL Matcher attributes are attributes that test the URL of a page.
41 // test many of these attributes in parallel by using some advanced
42 // data structures. The URLMatcher tells us if all URL Matcher attributes
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.h 53 class Attributes {
54 WTF_MAKE_NONCOPYABLE(Attributes);
56 Attributes()
82 void copyFrom(const Attributes&);
94 static PassRefPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, PassRefPtr<Event> event, FormSubmissionTrigger);
122 // FIXME: Hold an instance of Attributes instead of individual members.
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/
attributes.c 45 static const XvAttribute attributes[] = { variable
63 result = malloc(sizeof(attributes));
67 memcpy(result, attributes, sizeof(attributes));
68 *number = sizeof(attributes) / sizeof(XvAttribute);
70 XVMC_MSG(XVMC_TRACE, "[XvMC] Returning %d attributes for context %p.\n", *number, context);
  /external/clang/test/SemaObjC/
warn-retain-block-property.m 37 // CHECK-ARC: 15:1: error: property attributes 'retain' and 'weak' are mutually exclusive
40 // CHECK-ARC: 18:1: error: property attributes 'copy' and 'retain' are mutually exclusive
43 // CHECK-ARC: 19:1: error: property attributes 'assign' and 'retain' are mutually exclusive
54 // CHECK: 15:1: error: property attributes 'retain' and 'weak' are mutually exclusive
57 // CHECK: 18:1: error: property attributes 'copy' and 'retain' are mutually exclusive
60 // CHECK: 19:1: error: property attributes 'assign' and 'retain' are mutually exclusive
  /external/llvm/test/Transforms/Inline/
inline_ssp.ll 2 ; Ensure SSP attributes are propagated correctly when inlining.
10 ; are used by the remaining functions to ensure that the SSP attributes are
157 ; CHECK: attributes #0 = { nounwind sspreq uwtable }
158 ; CHECK: attributes #1 = { nounwind sspstrong uwtable }
159 ; CHECK: attributes #2 = { nounwind ssp uwtable }
160 ; CHECK: attributes #3 = { nounwind uwtable }
  /external/mesa3d/src/gallium/state_trackers/xvmc/
attributes.c 45 static const XvAttribute attributes[] = { variable
63 result = malloc(sizeof(attributes));
67 memcpy(result, attributes, sizeof(attributes));
68 *number = sizeof(attributes) / sizeof(XvAttribute);
70 XVMC_MSG(XVMC_TRACE, "[XvMC] Returning %d attributes for context %p.\n", *number, context);
  /external/proguard/src/proguard/classfile/
ProgramMember.java 39 public Attribute[] attributes; field in class:ProgramMember
62 Attribute[] attributes)
68 this.attributes = attributes;
107 Attribute attribute = attributes[index];
127 * Lets the given attribute info visitor visit all the attributes of
  /frameworks/base/core/java/android/hardware/usb/
UsbEndpoint.java 44 public UsbEndpoint(int address, int attributes, int maxPacketSize, int interval) {
46 mAttributes = attributes;
89 * Returns the endpoint's attributes field.
91 * @return the endpoint's attributes
141 int attributes = in.readInt();
144 return new UsbEndpoint(address, attributes, maxPacketSize, interval);
  /frameworks/compile/libbcc/lib/Support/
TargetCompilerConfigs.cpp 98 std::vector<std::string> attributes; local
99 GetFeatureVector(attributes, mInThumbMode, mEnableNEON);
100 setFeatureString(attributes);
108 std::vector<std::string> attributes; local
109 GetFeatureVector(attributes, mInThumbMode, pEnable);
110 setFeatureString(attributes);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
namednodemapchildnoderange.java 33 * Create a NamedNodeMap object from the attributes of the
68 NamedNodeMap attributes; local
74 attributes = testEmployee.getAttributes();
75 length = (int) attributes.getLength();
77 child = attributes.item(0);
78 child = attributes.item(1);
namednodemapremovenameditem.java 35 * object of the attributes of the last child. Once the
77 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 assertNotNull("attributesNotNull", attributes);
86 removedNode = attributes.removeNamedItem("street");
87 streetAttr = (Attr) attributes.getNamedItem("street");
nodecloneattributescopied.java 32 * Element node, all the attributes of the Element are
38 * attributes associated with this node.
69 NamedNodeMap attributes; local
82 attributes = clonedNode.getAttributes();
83 for (int indexN10065 = 0; indexN10065 < attributes.getLength(); indexN10065++) {
84 attributeNode = (Node) attributes.item(indexN10065);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode07.java 37 * If this document defines default attributes for this element name (importedNode),
38 * those default attributes are assigned.
83 NamedNodeMap attributes; local
93 attributes = aNode.getAttributes();
94 assertSize("throw_Size", 1, attributes);
97 attr = attributes.item(0);
namednodemapremovenameditemns02.java 36 * attributes attached to an element, as returned by the attributes attribute of the Node
77 NamedNodeMap attributes; local
87 attributes = element.getAttributes();
88 attribute = (Attr) attributes.removeNamedItemNS(nullNS, "defaultAttr");
89 attribute = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
  /bionic/libc/bionic/
ptrace.c 61 #define ATTRIBUTES __attribute__((noinline)) __attribute__((fastcall))
63 #define ATTRIBUTES __attribute__((noinline))
66 void ATTRIBUTES _thread_created_hook(pid_t thread_id)
  /development/apps/Development/src/com/android/development/
LogTextBox.java 34 * <b>XML attributes</b>
37 * {@link android.R.styleable#TextView TextView Attributes},
38 * {@link android.R.styleable#View View Attributes}
  /development/samples/ApiDemos/src/com/example/android/apis/text/
LogTextBox.java 31 * <b>XML attributes</b>
34 * {@link android.R.styleable#TextView TextView Attributes},
35 * {@link android.R.styleable#View View Attributes}
  /external/chromium/webkit/glue/
webthemeengine_impl_mac.cc 44 trackInfo.attributes = 0;
47 trackInfo.attributes |= kThemeTrackHorizontal;
54 trackInfo.attributes |= (kThemeTrackShowThumb | kThemeTrackHideTrack);
  /external/chromium_org/sandbox/win/src/
filesystem_interception.cc 49 uint32 attributes = 0; local
50 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
69 ResultCode code = CrossCall(ipc, IPC_NTCREATEFILE_TAG, name, attributes,
120 uint32 attributes; local
121 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
138 ResultCode code = CrossCall(ipc, IPC_NTOPENFILE_TAG, name, attributes,
184 uint32 attributes = 0; local
185 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
204 attributes, file_info, &answer);
242 uint32 attributes = 0 local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
play.py 11 Other attributes to use are: wait_for_playing and wait_for_ended, which forces
21 def __init__(self, attributes=None):
22 super(PlayAction, self).__init__(attributes)
  /external/chromium_org/ui/webui/resources/js/cr/ui/
menu_test.html 24 * Tests that if the command attributes are spacified, they are copied to the
41 // Confirms the attributes are copied from the command.
58 // Confirms the attributes are copied from the command.
  /external/chromium_org/v8/test/webkit/
function-prototype-descriptor.js 30 // test function.prototype has the correct attributes - writable, enumerable, non-configurable.
37 // Test prototype's attributes are correct.
41 // Test prototype's attributes are correct, if assigned without first having being accessed.
  /external/chromium_org/webkit/child/
webthemeengine_impl_mac.cc 45 trackInfo.attributes = 0;
48 trackInfo.attributes |= kThemeTrackHorizontal;
55 trackInfo.attributes |= (kThemeTrackShowThumb | kThemeTrackHideTrack);

Completed in 1223 milliseconds

<<21222324252627282930>>