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

<<11121314151617181920>>

  /external/chromium_org/third_party/openssl/openssl/apps/
apps.h 293 DB_ATTR attributes; member in struct:ca_db_st
  /external/chromium_org/third_party/skia/src/svg/
SkSVGParser.cpp 70 const SkSVGAttribute* attributes; local
71 size_t count = element->getAttributes(&attributes);
74 if (strncmp(attributes->fName, attrValue, len) == 0 && strlen(attributes->fName) == len) {
75 SkASSERT(result == (attributes->fOffset -
79 attributes++;
153 if (fCurrElement == NULL) // this signals we should ignore attributes for this element
  /external/chromium_org/ui/gfx/
render_text_mac.cc 119 base::ScopedCFTypeRef<CFDictionaryRef> attributes(
130 CFAttributedStringCreate(NULL, cf_text, attributes));
202 // Clear the attributes storage.
307 CFDictionaryRef attributes = CTRunGetAttributes(ct_run); local
309 base::mac::GetValueFromDictionary<CTFontRef>(attributes,
324 attributes, kCTForegroundColorAttributeName);
330 attributes, kCTUnderlineStyleAttributeName);
  /external/emma/core/java12/com/vladium/jcd/parser/
ClassDefParser.java 128 attributes (); method
243 final IAttributeCollection attributes = field_info.getAttributes (); local
244 for (int a = 0, aLimit = attributes.size (); a < aLimit; ++ a)
246 final Attribute_info attr_info = attributes.get (a);
281 void attributes () throws IOException method in class:ClassDefParser.classParser
  /external/gtest/src/
gtest-filepath.cc 205 const DWORD attributes = GetFileAttributes(unicode); local
207 return attributes != kInvalidFileAttributes;
229 const DWORD attributes = GetFileAttributes(unicode); local
231 if ((attributes != kInvalidFileAttributes) &&
232 (attributes & FILE_ATTRIBUTE_DIRECTORY)) {
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 205 const DWORD attributes = GetFileAttributes(unicode); local
207 return attributes != kInvalidFileAttributes;
229 const DWORD attributes = GetFileAttributes(unicode); local
231 if ((attributes != kInvalidFileAttributes) &&
232 (attributes & FILE_ATTRIBUTE_DIRECTORY)) {
  /external/openssl/apps/
apps.h 293 DB_ATTR attributes; member in struct:ca_db_st
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ClassCache.java 11 import java.util.jar.Attributes;
18 private static final Attributes.Name VERSION_ATTRIBUTE = new Attributes.Name("version");
31 Attributes attributes = manifest.getEntries().get("robolectric"); local
32 if (attributes != null) {
33 String cacheVersionStr = (String) attributes.get(VERSION_ATTRIBUTE);
51 Attributes attributes = new Attributes();
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
PreferenceLoader.java 49 NamedNodeMap attributes = node.getAttributes(); local
52 if (attributes != null) {
53 int length = attributes.getLength();
55 Node attr = attributes.item(i);
85 private final Map<String, String> attributes; field in class:PreferenceLoader.PreferenceNode
89 public PreferenceNode(String name, Map<String, String> attributes) {
91 this.attributes = attributes;
128 TestAttributeSet attributeSet = new TestAttributeSet(attributes);
  /external/skia/src/svg/
SkSVGParser.cpp 70 const SkSVGAttribute* attributes; local
71 size_t count = element->getAttributes(&attributes);
74 if (strncmp(attributes->fName, attrValue, len) == 0 && strlen(attributes->fName) == len) {
75 SkASSERT(result == (attributes->fOffset -
79 attributes++;
153 if (fCurrElement == NULL) // this signals we should ignore attributes for this element
  /frameworks/base/services/java/com/android/server/usb/
UsbHostManager.java 102 /* array of quadruples containing address, attributes, max packet size
132 int attributes = endpointValues[eval++]; local
135 endpoints[endp] = new UsbEndpoint(address, attributes,
  /frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIView.java 189 int[] attributes = { local
260 for (int i = 0; i < attributes.length; i++) {
261 int attribute = attributes[i];
  /frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
GLPerfView.java 189 int[] attributes = { local
260 for (int i = 0; i < attributes.length; i++) {
261 int attribute = attributes[i];
  /frameworks/native/opengl/tests/gldual/src/com/android/gldual/
GLDualGL2View.java 192 int[] attributes = { local
263 for (int i = 0; i < attributes.length; i++) {
264 int attribute = attributes[i];
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 47 private List<AttrImpl> attributes = new ArrayList<AttrImpl>(); field in class:ElementImpl
60 for (int i = 0; i < attributes.size(); i++) {
61 AttrImpl attr = attributes.get(i);
71 for (int i = 0; i < attributes.size(); i++) {
72 AttrImpl attr = attributes.get(i);
109 return attributes.get(i);
119 return attributes.get(i);
133 for (Attr attr : attributes) {
142 * Document.getElementById(): "Attributes with the name "ID"
213 return !attributes.isEmpty()
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 12 import org.xml.sax.Attributes;
324 * @param atts The SAX2 attributes.
330 String qName, Attributes atts)
444 * Internal class to wrap a SAX2 Attributes object for SAX1.
454 * Set the embedded Attributes object.
456 * @param The embedded SAX2 Attributes.
458 void setAttributes (Attributes attributes)
460 this.attributes = attributes;
531 private Attributes attributes; field in class:XMLReaderAdapter.AttributesAdapter
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapSetNamedItemNS.java 42 * http://www.nist.gov", and put its attributes into a named node map. Create a
85 NamedNodeMap attributes; local
96 attributes = element.getAttributes();
99 attribute = (Attr) attributes.getNamedItemNS(
106 NamedNodeMap attributes; local
116 attributes = element.getAttributes();
117 attributes.setNamedItemNS(attribute1);
118 attribute = (Attr) attributes.getNamedItemNS(
127 NamedNodeMap attributes; local
140 attributes = element.getAttributes()
164 NamedNodeMap attributes; local
230 NamedNodeMap attributes; local
256 NamedNodeMap attributes; local
282 NamedNodeMap attributes; local
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 207 const DWORD attributes = GetFileAttributes(unicode); local
209 return attributes != kInvalidFileAttributes;
231 const DWORD attributes = GetFileAttributes(unicode); local
233 if ((attributes != kInvalidFileAttributes) &&
234 (attributes & FILE_ATTRIBUTE_DIRECTORY)) {
  /packages/apps/VideoEditor/src/com/android/videoeditor/
OverlayTitleEditor.java 39 public static final String PARAM_OVERLAY_ATTRIBUTES = "attributes";
102 final Bundle attributes = getIntent().getBundleExtra(PARAM_OVERLAY_ATTRIBUTES); local
103 if (attributes != null) {
106 mOverlayType = MovieOverlay.getType(attributes);
107 mTitleView.setText(MovieOverlay.getTitle(attributes));
108 mSubtitleView.setText(MovieOverlay.getSubtitle(attributes));
136 final Bundle attributes = extras.getBundleExtra( local
138 mOverlayType = MovieOverlay.getType(attributes);
166 final Bundle attributes = MovieOverlay.buildUserAttributes(mOverlayType, local
168 extras.putExtra(PARAM_OVERLAY_ATTRIBUTES, attributes);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 415 attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat'] variable in class:PosixCommonTest
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 415 attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat'] variable in class:PosixCommonTest
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
CompletionProposal.java 203 NamedNodeMap attributes = root.getAttributes(); local
204 for (int i = 0, n = attributes.getLength(); i < n; i++) {
205 Attr attribute = (Attr) attributes.item(i);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar 
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarFileTest.java 28 import java.util.jar.Attributes;
309 Attributes attributes = manifest.getMainAttributes(); local
310 attributes.put(new Attributes.Name("Manifest-Version"), "1.0");
430 * algorithm-Digest-Manifest-Main-Attributes entry in .SF file.
550 * In the Modified.jar, the main attributes of META-INF/MANIFEST.MF is
572 * It is all right in our original JarFile. If the Entry Attributes, for
  /frameworks/base/drm/java/android/drm/
DrmManagerClient.java 137 HashMap<String, Object> attributes = new HashMap<String, Object>(); local
144 attributes.put(DrmEvent.DRM_INFO_STATUS_OBJECT, status);
145 attributes.put(DrmEvent.DRM_INFO_OBJECT, drmInfo);
149 getEventType(status.infoType), null, attributes);
153 getErrorType(infoType), null, attributes);
    [all...]

Completed in 1692 milliseconds

<<11121314151617181920>>