Home
last modified time | relevance | path

Searched full:type (Results 1 – 25 of 395) sorted by relevance

12345678910>>...16

/development/scripts/app_engine_server/
Dredirects.yaml17 # - type: Either 'permanent' or 'temporary', depending on whether you want an
23 # If you don't specify a type, 'permanent' will be used by default. Note that
35 # # foo/test.html. Note that the redirect type is optional. This will be
40 # type: permanent
48 # type: temporary
58 type: permanent
63 type: permanent
67 type: permanent
72 type: permanent
77 type: permanent
[all …]
/development/testrunner/
Dcoverage_targets.xml25 <coverage_target name type build_path
31 type - one of JAVA_LIBRARIES,APPS
42 <coverage_target name="framework" type="JAVA_LIBRARIES"
55 build_path="frameworks/base/test-runner" type="JAVA_LIBRARIES" />
59 type="APPS" />
61 type="APPS" />
63 type="APPS" />
65 type="APPS" />
67 type="APPS" />
69 type="APPS" />
[all …]
Dtest_defs.xsd28 <xs:element name="test" type="javaTestType" />
29 <xs:element name="test-native" type="nativeTestType" />
30 <xs:element name="test-host" type="hostTestType" />
41 <xs:attribute name="name" type="xs:string" use="required" />
45 <xs:attribute name="build_path" type="xs:string" use="required" />
48 <xs:attribute name="continuous" type="xs:boolean" use="optional"
52 <xs:attribute name="suite" type="xs:string" use="optional" />
56 <xs:attribute name="description" type="xs:string" use="optional" />
61 <xs:attribute name="full_make" type="xs:boolean"
66 <xs:attribute name="extra_build_args" type="xs:string"
[all …]
/development/samples/browseable/BasicMediaRouter/res/values/
Dcolors.xml4 <item name="blue" type="color">#FF33B5E5</item>
5 <item name="purple" type="color">#FFAA66CC</item>
6 <item name="green" type="color">#FF99CC00</item>
7 <item name="orange" type="color">#FFFFBB33</item>
8 <item name="red" type="color">#FFFF4444</item>
9 <item name="darkblue" type="color">#FF0099CC</item>
10 <item name="darkpurple" type="color">#FF9933CC</item>
11 <item name="darkgreen" type="color">#FF669900</item>
12 <item name="darkorange" type="color">#FFFF8800</item>
13 <item name="darkred" type="color">#FFCC0000</item>
/development/tools/apkcheck/src/com/android/apkcheck/
DBuiltin.java38 " <parameter name=\"e\" type=\"java.lang.Enum\"/>\n" +
41 " <parameter name=\"e1\" type=\"java.lang.Enum\"/>\n" +
42 " <parameter name=\"e2\" type=\"java.lang.Enum\"/>\n" +
45 " <parameter name=\"e1\" type=\"java.lang.Enum\"/>\n" +
46 " <parameter name=\"e2\" type=\"java.lang.Enum\"/>\n" +
47 " <parameter name=\"e3\" type=\"java.lang.Enum\"/>\n" +
50 " <parameter name=\"e1\" type=\"java.lang.Enum\"/>\n" +
51 " <parameter name=\"e2\" type=\"java.lang.Enum\"/>\n" +
52 " <parameter name=\"e3\" type=\"java.lang.Enum\"/>\n" +
53 " <parameter name=\"e4\" type=\"java.lang.Enum\"/>\n" +
[all …]
DFieldInfo.java32 * @param type Fully-qualified binary or non-binary type name.
34 public FieldInfo(String name, String type) { in FieldInfo() argument
36 mType = type; in FieldInfo()
40 * Returns the combined name and type. This value is used as a hash
50 * Normalize the type used in fields.
54 String type = TypeUtils.ambiguousToBinaryName(mType, apiList); in normalizeType() local
55 if (!type.equals(mType)) { in normalizeType()
56 /* name changed, force regen on name+type */ in normalizeType()
57 mType = type; in normalizeType()
/development/ndk/platforms/android-9/arch-mips/include/asm/
Dio.h76type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { vol… argument
77type, p, slow) static inline void pfx##out##bwlq##p(type val, unsigned long port) { volatile… argument
79 #define __BUILD_MEMORY_PFX(bus, bwlq, type) __BUILD_MEMORY_SINGLE(bus, bwlq, type, 1) argument
80 …ILDIO_MEM(bwlq, type) __BUILD_MEMORY_PFX(__raw_, bwlq, type) __BUILD_MEMORY_PFX(, bwlq, type) … argument
81 …e __BUILD_IOPORT_PFX(bus, bwlq, type) __BUILD_IOPORT_SINGLE(bus, bwlq, type, ,) __BUILD_IOPORT… argument
82 #define BUILDIO_IOPORT(bwlq, type) __BUILD_IOPORT_PFX(, bwlq, type) __BUILD_IOPORT_PFX(__mem_, … argument
84 #define __BUILDIO(bwlq, type) __BUILD_MEMORY_SINGLE(____raw_, bwlq, type, 0) argument
92type) static inline void writes##bwlq(volatile void __iomem *mem, const void *addr, unsigned … argument
94type) static inline void outs##bwlq(unsigned long port, const void *addr, unsigned int count)… argument
95 #define BUILDSTRING(bwlq, type) __BUILD_MEMORY_STRING(bwlq, type) __BUILD_IOPORT_STRING(bwlq, t… argument
Dioctl.h45 #define _IOC(dir, type, nr, size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((… argument
49 #define _IO(type, nr) _IOC(_IOC_NONE, (type), (nr), 0) argument
50 #define _IOR(type, nr, size) _IOC(_IOC_READ, (type), (nr), (_IOC_TYPECHECK(size))) argument
51 #define _IOW(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument
52 #define _IOWR(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), (_IOC_TYPECHECK(size))) argument
54 #define _IOR_BAD(type, nr, size) _IOC(_IOC_READ, (type), (nr), sizeof(size)) argument
55 #define _IOW_BAD(type, nr, size) _IOC(_IOC_WRITE, (type), (nr), sizeof(size)) argument
56 #define _IOWR_BAD(type, nr, size) _IOC(_IOC_READ|_IOC_WRITE, (type), (nr), sizeof(size)) argument
/development/ndk/platforms/android-3/include/asm-generic/
Dioctl.h34 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr)… argument
39 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0) argument
40 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument
41 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
42 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument
43 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument
44 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument
45 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
/development/samples/browseable/ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/content/
DContentItem.java25 * This class encapsulates a content item. Referencing the content's type, and the differing way
29 // Used to signify an image content type
31 // Used to signify a text/string content type
39 * Creates a ContentItem with the specified type, referencing a resource id.
41 * @param type - One of {@link #CONTENT_TYPE_IMAGE} or {@link #CONTENT_TYPE_TEXT}
44 public ContentItem(int type, int resourceId) { in ContentItem() argument
45 contentType = type; in ContentItem()
51 * Creates a ContentItem with the specified type, referencing an asset file path.
53 * @param type - One of {@link #CONTENT_TYPE_IMAGE} or {@link #CONTENT_TYPE_TEXT}
56 public ContentItem(int type, String assetFilePath) { in ContentItem() argument
[all …]
/development/ndk/platforms/android-3/include/linux/
Dmoduleparam.h32 #define __MODULE_PARM_TYPE(name, _type) __MODULE_INFO(parmtype, name##type, #name ":" _type)
67type, perm) param_check_##type(name, &(value)); module_param_call(name, param_set_##type, para… argument
69 #define module_param(name, type, perm) module_param_named(name, name, type, perm) argument
73 #define __param_check(name, p, type) static inline type *__check_##name(void) { return(p); } argument
95type, nump, perm) static struct kparam_array __param_arr_##name = { ARRAY_SIZE(array), nump, p… argument
97 #define module_param_array(name, type, nump, perm) module_param_array_named(name, name, type, num… argument
Dandroid_alarm.h39 #define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4)) argument
41 #define ANDROID_ALARM_SET(type) _IOW('a', 2 | ((type) << 4), struct timespec) argument
42 #define ANDROID_ALARM_SET_AND_WAIT(type) _IOW('a', 3 | ((type) << 4), struct timespec) argument
43 #define ANDROID_ALARM_GET_TIME(type) _IOW('a', 4 | ((type) << 4), struct timespec) argument
/development/samples/ActionBarCompat/res/values/
Dids.xml18 <item type="id" name="actionbar_compat" />
19 <item type="id" name="actionbar_compat_title" />
20 <item type="id" name="actionbar_compat_item_refresh_progress" />
21 <item type="id" name="actionbar_compat_item_refresh" />
22 <item type="id" name="menu_refresh" />
/development/ndk/platforms/android-9/arch-x86/include/asm/
Dio_32.h30 …IO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(v… argument
31type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__… argument
/development/samples/ApiDemos/src/com/example/android/apis/view/
DList3.java48 Phone.TYPE, in onCreate()
52 //Used to display a readable string for the phone type in onCreate()
55 //Let the adapter handle the binding if the column is not TYPE in onCreate()
59 int type = cursor.getInt(COLUMN_TYPE); in onCreate()
61 //Custom type? Then get the custom label in onCreate()
62 if (type == Phone.TYPE_CUSTOM) { in onCreate()
66 String text = (String) Phone.getTypeLabel(getResources(), type, label); in onCreate()
77 Phone.TYPE,
/development/ndk/platforms/android-3/include/linux/netfilter/
Dxt_sctp.h49 #define bytes(type) (sizeof(type) * 8) argument
51 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (typ… argument
53 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << … argument
55 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (t… argument
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
Dipt_sctp.h47 #define bytes(type) (sizeof(type) * 8) argument
49 #define SCTP_CHUNKMAP_SET(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] |= 1 << (typ… argument
51 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) do { chunkmap[type / bytes(u_int32_t)] &= ~(1 << … argument
53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) ({ (chunkmap[type / bytes (u_int32_t)] & (1 << (t… argument
/development/tools/idegen/templates/
Dmodule-template.iml2 <module type="JAVA_MODULE" version="4">
7 <orderEntry type="inheritedJdk" />
8 <orderEntry type="sourceFolder" forTests="false" />
Dandroid.iml2 <module version="4" relativePaths="true" type="JAVA_MODULE">
10 <orderEntry type="sourceFolder" forTests="false" />
11 <orderEntry type="inheritedJdk" />
/development/ndk/platforms/android-9/arch-x86/include/asm/xen/
Dhypercall.h27type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (h… argument
29type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b"… argument
30type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (… argument
31type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]… argument
32type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "… argument
34type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm vo… argument
/development/samples/SampleSyncAdapter/samplesyncadapter_server/templates/
Dsimple_form.html20 <link type="text/css" rel="stylesheet" href="/static/css/main.css" media="screen" />
28 <input type="submit" name="Save" value="Save Changes" />
29 … <input type="button" name="Cancel" value="Cancel" onclick="document.location='/';return false;" />
31 <input type="hidden" name="id" value="{{ contactId }}" />
34 <input type="hidden" name="username" value="{{ handle }}" />
Dedit_avatar.html20 <link type="text/css" rel="stylesheet" href="/static/css/main.css" media="screen" />
35 <input type="file" name="avatar" />
37 <input type="submit" name="Save" value="Save Changes" />
38 … <input type="button" name="Cancel" value="Cancel" onclick="document.location='/';return false;" />
39 <input type="hidden" name="id" value="{{ contactId }}" />
/development/ndk/platforms/android-3/include/sys/
Dqueue.h84 #define LIST_HEAD(name, type) \ argument
86 struct type *lh_first; /* first element */ \
92 #define LIST_ENTRY(type) \ argument
94 struct type *le_next; /* next element */ \
95 struct type **le_prev; /* address of previous next element */ \
150 #define SLIST_HEAD(name, type) \ argument
152 struct type *slh_first; /* first element */ \
158 #define SLIST_ENTRY(type) \ argument
160 struct type *sle_next; /* next element */ \
184 #define SLIST_REMOVE(head, elm, type, field) do { \ argument
[all …]
/development/tools/idegen/
Didegen.iml2 <module relativePaths="true" type="JAVA_MODULE" version="4">
10 <orderEntry type="inheritedJdk" />
11 <orderEntry type="sourceFolder" forTests="false" />
/development/samples/VoiceRecognitionService/res/values/
Dstrings.xml27 <!-- The title of the preference for the type of results to return (letters or numbers). -->
28 <string name="results_type_title">Results type</string>
30 <!-- The entry names of the preference for the type of results to return
37 <!-- The entry values of the preference for the type of results to return
44 <!-- The default value of the preference for the type of results to return

12345678910>>...16