HomeSort by relevance Sort by last modified time
    Searched full:attributes (Results 451 - 475 of 6465) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/lib/
libdl.so 
liblog.so 
libthread_db.so 
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/lib/
libdl.so 
libjnigraphics.so 
liblog.so 
  /sdk/templates/activities/FullscreenActivity/root/res/values/
attrs.xml 3 <!-- Declare custom theme attributes that allow changing which styles are
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributesImpl.java 1 // AttributesImpl.java - default implementation of Attributes.
9 import org.xml.sax.Attributes;
13 * Default implementation of the Attributes interface.
23 * {@link org.xml.sax.Attributes Attributes} interface, with the
30 * <li>to take a persistent snapshot of an Attributes object
32 * <li>to construct or modify an Attributes object in a SAX2 driver or filter.</li>
37 * class; in addition to supporting the updated Attributes
46 public class AttributesImpl implements Attributes
67 * Copy an existing Attributes object
    [all...]
  /cts/tests/res/xml/
base_attributes.xml 19 <Attributes xmlns:android="http://schemas.android.com/apk/res/android"
24 <Attributes xmlns:android="http://schemas.android.com/apk/res/android"
29 <Attributes xmlns:android="http://schemas.android.com/apk/res/android"
  /development/tools/apkcheck/src/com/android/apkcheck/
ApiDescrHandler.java 69 Attributes attributes) {
74 attributes.getValue("name"));
78 attributes.getValue("name"),
79 attributes.getValue("extends"),
80 attributes.getValue("static"));
83 mCurrentClass.addInterface(attributes.getValue("name"));
86 mCurrentMethod = new MethodInfo(attributes.getValue("name"),
87 attributes.getValue("return"));
121 FieldInfo fInfo = new FieldInfo(attributes.getValue("name")
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
AttributesNameTest.java 20 import java.util.jar.Attributes;
27 * @tests java.util.jar.Attributes.Name#Name(java.lang.String)
32 new Attributes.Name(
  /external/clang/include/clang/Basic/
Builtins.h 49 const char *Name, *Type, *Attributes, *HeaderName;
55 !strcmp(Attributes, RHS.Attributes);
94 return strchr(GetRecord(ID).Attributes, 'c') != 0;
99 return strchr(GetRecord(ID).Attributes, 'n') != 0;
104 return strchr(GetRecord(ID).Attributes, 'r') != 0;
109 return strchr(GetRecord(ID).Attributes, 'j') != 0;
115 return strchr(GetRecord(ID).Attributes, 'u') != 0;
121 return strchr(GetRecord(ID).Attributes, 'F') != 0;
128 return strchr(GetRecord(ID).Attributes, 'f') != 0
    [all...]
  /external/clang/test/CodeGen/
stack-protector.c 20 // NOSSP: attributes #{{.*}} = { nounwind{{.*}} }
22 // WITHSSP: attributes #{{.*}} = { nounwind ssp{{.*}} }
24 // SSPREQ: attributes #{{.*}} = { nounwind sspreq{{.*}} }
struct-passing.c 2 // correctly according to their attributes and the ABI.
26 // CHECK: attributes [[RN]] = { nounwind readnone{{.*}} }
27 // CHECK: attributes [[RO]] = { nounwind readonly{{.*}} }
unwind-attr.c 26 // CHECK: attributes [[TF]] = { "{{.*}} }
27 // CHECK: attributes [[NUW]] = { nounwind{{.*}} }
29 // CHECK-NOEXC: attributes [[NUW]] = { nounwind{{.*}} }
  /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
  /external/harfbuzz/src/
harfbuzz-hebrew.c 75 HB_GlyphAttributes *attributes = shaper_item->attributes; local
138 attributes[slen].clusterStart = TRUE;
139 attributes[slen].mark = FALSE;
140 attributes[slen].combiningClass = 0;
156 attributes[slen].clusterStart = TRUE;
157 attributes[slen].mark = FALSE;
158 attributes[slen].combiningClass = 0;
159 attributes[slen].dontPrint = HB_IsControlChar(uc[i]);
162 attributes[slen].clusterStart = FALSE
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-hebrew.c 75 HB_GlyphAttributes *attributes = shaper_item->attributes; local
138 attributes[slen].clusterStart = TRUE;
139 attributes[slen].mark = FALSE;
140 attributes[slen].combiningClass = 0;
156 attributes[slen].clusterStart = TRUE;
157 attributes[slen].mark = FALSE;
158 attributes[slen].combiningClass = 0;
159 attributes[slen].dontPrint = HB_IsControlChar(uc[i]);
162 attributes[slen].clusterStart = FALSE
    [all...]
  /external/llvm/unittests/IR/
AttributesTest.cpp 1 //===- llvm/unittest/IR/AttributesTest.cpp - Attributes unit tests --------===//
10 #include "llvm/IR/Attributes.h"
17 TEST(Attributes, Uniquing) {
  /external/v8/src/
property-details.h 42 // ABSENT can never be stored in or returned from a descriptor's attributes
43 // bitfield. It is only used as a return value meaning the attributes of
76 // PropertyDetails captures type and attributes for a property.
80 PropertyDetails(PropertyAttributes attributes,
84 ASSERT(AttributesField::is_valid(attributes));
88 | AttributesField::encode(attributes)
92 ASSERT(attributes == this->attributes());
102 PropertyAttributes attributes() { return AttributesField::decode(value_); } function in class:v8::internal::BASE_EMBEDDED
112 bool IsReadOnly() { return (attributes() & READ_ONLY) != 0;
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 102 NamedNodeMap attributes; local
111 attributes = element.getAttributes();
112 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
119 NamedNodeMap attributes; local
132 attributes = element.getAttributes();
133 attribute = (Attr) attributes.getNamedItemNS(
140 NamedNodeMap attributes; local
151 attributes = element.getAttributes();
152 attribute = (Attr) attributes.getNamedItemNS(
159 NamedNodeMap attributes; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion1-expected-completion11.txt 38 <SlidingDrawer ></SlidingDrawer> : SlidingDrawer specific attributes.
55 <View /> : Attributes that can be used with android.view.View or any of its subclasses.
63 <android.gesture.GestureOverlayView ></android.gesture.GestureOverlayView> : GestureOverlayView specific attributes.
completion1-expected-completion12.txt 38 <SlidingDrawer ></SlidingDrawer> : SlidingDrawer specific attributes.
55 <View /> : Attributes that can be used with android.view.View or any of its subclasses.
63 <android.gesture.GestureOverlayView ></android.gesture.GestureOverlayView> : GestureOverlayView specific attributes.
completion9-expected-completion64.txt 38 <SlidingDrawer ></SlidingDrawer> : SlidingDrawer specific attributes.
55 <View /> : Attributes that can be used with android.view.View or any of its subclasses.
63 <android.gesture.GestureOverlayView ></android.gesture.GestureOverlayView> : GestureOverlayView specific attributes.
  /development/samples/ApiDemos/res/values/
attrs.xml 18 <!-- These are the attributes that we want to retrieve from the theme
24 <!-- These are the attributes that we want to retrieve from the theme
36 <!-- These are the attributes that we want to retrieve for
49 <!-- These are attributes used with 'DraggableDot' drawables in
61 <!-- These are the attributes that we want to retrieve for

Completed in 853 milliseconds

<<11121314151617181920>>