HomeSort by relevance Sort by last modified time
    Searched defs:attributes (Results 1 - 25 of 683) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SimpleAttributeTableGenerator.java 13 private final AttributeTable attributes; field in class:SimpleAttributeTableGenerator
16 AttributeTable attributes)
18 this.attributes = attributes;
23 return attributes;
  /external/chromium_org/content/common/gpu/client/
gpu_in_process_context_tests.cc 22 blink::WebGraphicsContext3D::Attributes attributes; local
24 CreateOffscreenContext(attributes);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextDocumentParser.cpp 59 Vector<Attribute> attributes; local
60 attributes.append(Attribute(styleAttr, "word-wrap: break-word; white-space: pre-wrap;"));
61 AtomicHTMLToken fakePre(HTMLToken::StartTag, preTag.localName(), attributes);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPv3DirectoryEntry.java 29 * attempt to parse the longname field for file attributes; they SHOULD
38 * The attributes of this entry.
40 public SFTPv3FileAttributes attributes; field in class:SFTPv3DirectoryEntry
  /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);
  /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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attributes.java 9 public class Attributes
12 private ASN1Set attributes; field in class:Attributes
14 private Attributes(ASN1Set set)
16 attributes = set;
19 public Attributes(ASN1EncodableVector v)
21 attributes = new DLSet(v);
24 public static Attributes getInstance(Object obj)
26 if (obj instanceof Attributes)
28 return (Attributes)obj;
32 return new Attributes(ASN1Set.getInstance(obj))
    [all...]
  /frameworks/native/opengl/tests/configdump/
configdump.cpp 29 Attribute attributes[] = { variable
79 for (int attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) {
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
82 printf("\t%-32s: %10d (0x%08x)\n", attributes[attr].name, value, value);
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/
CertificationRequestInfo.java 37 * attributes [0] IMPLICIT Attributes }
41 * Attributes ::= SET OF Attribute
52 /** the value of attributes field of the structure */
53 private final List<?> attributes; field in class:CertificationRequestInfo
59 SubjectPublicKeyInfo subjectPublicKeyInfo, List<?> attributes, byte [] encoding) {
63 this.attributes = attributes;
97 res.append("\n attributes: ");
98 if (attributes != null)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
RemoveNamedItemNS.java 38 * element from the list and get its attributes. Try to remove the attribute
81 NamedNodeMap attributes; local
87 attributes = testAddress.getAttributes();
88 removedNode = attributes.removeNamedItemNS("http://www.usa.com",
91 newAttr = (Attr) attributes.getNamedItem("dmstc:domestic");
100 NamedNodeMap attributes; local
105 attributes = testAddress.getAttributes();
110 attributes.removeNamedItemNS(namespaceURI,
130 // NamedNodeMap attributes;
147 // attributes = child2.getAttributes()
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilContentHandler.java 23 import org.xml.sax.Attributes;
56 public void startElement(String uri, String localName, String qName, Attributes attributes) {
61 if (attributes != null) {
62 for (int i = 0; i < attributes.getLength(); i++) {
65 " lname = " + attributes.getLocalName(i) +
66 " value = " + attributes.getValue(i));
68 element.setAttribute(attributes.getLocalName(i),
69 attributes.getValue(i));
  /art/compiler/llvm/
intrinsic_helper.cc 21 #include <llvm/IR/Attributes.h>
158 std::vector< ::llvm::Attribute::AttrKind> attributes; local
159 attributes.push_back(::llvm::Attribute::NoCapture);
160 attributes.push_back(::llvm::Attribute::NoAlias);
163 attributes);
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_worditerator_unittest.cc 119 SpellcheckCharAttribute attributes; local
120 attributes.SetDefaultLanguage(kTestCases[i].language);
124 EXPECT_TRUE(iterator.Initialize(&attributes,
148 SpellcheckCharAttribute attributes;
149 attributes.SetDefaultLanguage("en-US");
155 EXPECT_TRUE(iterator.Initialize(&attributes, true));
214 SpellcheckCharAttribute attributes;
215 attributes.SetDefaultLanguage(kTestCases[i].language);
219 EXPECT_TRUE(iterator.Initialize(&attributes, true));
235 SpellcheckCharAttribute attributes;
    [all...]
  /external/chromium_org/content/common/mac/
attributed_string_coder.h 31 // a specific object class and specific attributes of that object.
71 const std::vector<FontAttribute>& attributes() const { function in class:mac::AttributedStringCoder::EncodedString
74 std::vector<FontAttribute>* attributes() { return &attributes_; } function in class:mac::AttributedStringCoder::EncodedString
79 // The set of attributes that style |string_|.
83 // Takes an NSAttributedString, extracts the pertinent attributes, and returns
  /external/chromium_org/sandbox/win/src/
registry_interception.cc 52 uint32 attributes = 0; local
54 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
62 ResultCode code = CrossCall(ipc, IPC_NTCREATEKEY_TAG, name, attributes,
111 uint32 attributes; local
113 NTSTATUS ret = AllocAndCopyName(object_attributes, &name, &attributes,
120 ResultCode code = CrossCall(ipc, IPC_NTOPENKEY_TAG, name, attributes,
sync_interception.cc 82 uint32 attributes = 0; local
83 NTSTATUS ret = AllocAndCopyName(&object_attribs_copy, &name, &attributes,
135 uint32 attributes = 0; local
136 NTSTATUS ret = AllocAndCopyName(&object_attribs_copy, &name, &attributes,
window.cc 16 // Gets the security attributes of a window object referenced by |handle|. The
19 bool GetSecurityAttributes(HANDLE handle, SECURITY_ATTRIBUTES* attributes) {
20 attributes->bInheritHandle = FALSE;
21 attributes->nLength = sizeof(SECURITY_ATTRIBUTES);
26 NULL, &attributes->lpSecurityDescriptor);
38 // Get the security attributes from the current window station; we will
39 // use this as the base security attributes for the new window station.
40 SECURITY_ATTRIBUTES attributes = {0}; local
41 if (!GetSecurityAttributes(::GetProcessWindowStation(), &attributes)) {
48 *winsta = ::CreateWindowStationW(NULL, 0, WINSTA_ALL_ACCESS, &attributes);
69 SECURITY_ATTRIBUTES attributes = {0}; local
    [all...]
  /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/chromium_org/third_party/skia/src/gpu/gl/mac/
SkNativeGLContext_mac.cpp 38 CGLPixelFormatAttribute attributes[] = { local
48 CGLChoosePixelFormat(attributes, &pixFormat, &npix);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
PlatformStatus.java 29 NamedNodeMap attributes = anElement.getAttributes(); local
30 this.id = (String) attributes.getNamedItem("id").getNodeValue();
31 this.name = (String) attributes.getNamedItem("name").getNodeValue();
32 this.fileName = (String) attributes.getNamedItem("fileName").getNodeValue();
  /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/qemu/distrib/sdl-1.2.15/src/video/maccommon/
SDL_macgl.c 37 GLint attributes [ 26 ]; /* 26 is max possible in this setup */ local
48 attributes[i++] = AGL_RGBA;
52 attributes[i++] = AGL_RED_SIZE;
53 attributes[i++] = this->gl_config.red_size;
54 attributes[i++] = AGL_GREEN_SIZE;
55 attributes[i++] = this->gl_config.green_size;
56 attributes[i++] = AGL_BLUE_SIZE;
57 attributes[i++] = this->gl_config.blue_size;
58 attributes[i++] = AGL_ALPHA_SIZE;
59 attributes[i++] = this->gl_config.alpha_size
    [all...]
  /external/skia/src/gpu/gl/mac/
SkNativeGLContext_mac.cpp 38 CGLPixelFormatAttribute attributes[] = { local
48 CGLChoosePixelFormat(attributes, &pixFormat, &npix);

Completed in 885 milliseconds

1 2 3 4 5 6 7 8 91011>>