| /development/scripts/app_engine_server/ |
| D | redirects.yaml | 17 # - 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 64 type: permanent 69 type: permanent 75 type: permanent 81 type: permanent [all …]
|
| /development/testrunner/ |
| D | coverage_targets.xml | 25 <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 …]
|
| D | test_defs.xsd | 28 <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/tools/emulator/system/camera/ |
| D | media_codecs.xml | 22 <!ELEMENT MediaCodec (Type*,Quirk*)> 24 <!ATTLIST MediaCodec type CDATA> 25 <!ELEMENT Type EMPTY> 26 <!ATTLIST Type name CDATA #REQUIRED> 35 quirks and that only supports a single content type can be declared like so: 37 <MediaCodec name="OMX.foo.bar" type="something/interesting" /> 43 <Type name="something/interesting" /> 44 <Type name="something/else" /> 80 <MediaCodec name="OMX.google.mp3.decoder" type="audio/mpeg" /> 81 <MediaCodec name="OMX.google.amrnb.decoder" type="audio/3gpp" /> [all …]
|
| /development/tools/apkcheck/src/com/android/apkcheck/ |
| D | Builtin.java | 38 " <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 …]
|
| D | FieldInfo.java | 32 * @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/ |
| D | io.h | 76 …type, irq) static inline void pfx##write##bwlq(type val, volatile void __iomem *mem) { vol… argument 77 …type, 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 92 …type) static inline void writes##bwlq(volatile void __iomem *mem, const void *addr, unsigned … argument 94 …type) 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
|
| D | ioctl.h | 45 #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/ |
| D | ioctl.h | 34 #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/ndk/platforms/android-3/include/linux/ |
| D | moduleparam.h | 32 #define __MODULE_PARM_TYPE(name, _type) __MODULE_INFO(parmtype, name##type, #name ":" _type) 67 …type, 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 95 …type, 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
|
| D | android_alarm.h | 39 #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/ndk/platforms/android-9/arch-mips/include/ |
| D | link.h | 4 ELFW(type), and dl_iterate_phdr(). 19 #define ElfW(type) Elf32_##type argument 21 #define ElfW(type) Elf64_##type argument
|
| /development/ndk/platforms/android-9/arch-x86/include/asm/ |
| D | io_32.h | 30 …IO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(v… argument 31 …type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__… argument
|
| /development/samples/ActionBarCompat/res/values/ |
| D | ids.xml | 18 <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/samples/ApiDemos/src/com/example/android/apis/view/ |
| D | List3.java | 48 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/ |
| D | xt_sctp.h | 49 #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/ |
| D | ipt_sctp.h | 47 #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/ndk/platforms/android-9/arch-x86/include/asm/xen/ |
| D | hypercall.h | 27 …type, name) ({ long __res; asm volatile ( "call %[call]" : "=a" (__res) : [call] "m" (h… argument 29 …type, name, a1) ({ long __res, __ign1; asm volatile ( "call %[call]" : "=a" (__res), "=b"… argument 30 …type, name, a1, a2) ({ long __res, __ign1, __ign2; asm volatile ( "call %[call]" : "=a" (… argument 31 …type, name, a1, a2, a3) ({ long __res, __ign1, __ign2, __ign3; asm volatile ( "call %[call]… argument 32 …type, name, a1, a2, a3, a4) ({ long __res, __ign1, __ign2, __ign3, __ign4; asm volatile ( "… argument 34 …type, name, a1, a2, a3, a4, a5) ({ long __res, __ign1, __ign2, __ign3, __ign4, __ign5; asm vo… argument
|
| /development/samples/SampleSyncAdapter/samplesyncadapter_server/templates/ |
| D | simple_form.html | 20 <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 }}" />
|
| D | edit_avatar.html | 20 <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-9/arch-mips/src/ |
| D | crtend_so.S | 8 .type __CTOR_END__, @object 13 .type __DTOR_END__, @object 19 .type __FRAME_END__, @object
|
| /development/ndk/platforms/android-3/include/sys/ |
| D | queue.h | 84 #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/templates/ |
| D | android.iml | 2 <module version="4" relativePaths="true" type="JAVA_MODULE"> 10 <orderEntry type="sourceFolder" forTests="false" /> 11 <orderEntry type="inheritedJdk" />
|
| /development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
| D | SignatureSourcer.java | 20 import org.objectweb.asm.Type; 31 * Terminology: a "signature" is a type descriptor for generics. There are different types 39 * order, e.g. the signature is written as "(parameters)return-type" where we want to generate 40 * "return-type method-name (parameters)". To handle this case, the return-type and parameters 58 * Indicates if the signature is currently processing formal type parameters. 71 * {@link SignatureSourcer} generated when parsing the return type of <em>this</em> 106 * Contains the whole signature type when called by 116 * Will be non-null if a return type was processed 132 * True if the signature contains formal type parameters, which are available 169 // we don't differentiate between visiting a sub class or interface type in visitClassBound() [all …]
|
| /development/ndk/platforms/android-3/include/netinet/ |
| D | ip_icmp.h | 67 uint8_t icmp_type; /* type of message, see below */ 68 uint8_t icmp_code; /* type sub code */ 144 * Definition of type and code field values. 205 #define ICMP_INFOTYPE(type) \ argument 206 ((type) == ICMP_ECHOREPLY || (type) == ICMP_ECHO || \ 207 (type) == ICMP_ROUTERADVERT || (type) == ICMP_ROUTERSOLICIT || \ 208 (type) == ICMP_TSTAMP || (type) == ICMP_TSTAMPREPLY || \ 209 (type) == ICMP_IREQ || (type) == ICMP_IREQREPLY || \ 210 (type) == ICMP_MASKREQ || (type) == ICMP_MASKREPLY)
|