/external/bluetooth/glib/gobject/ |
D | gtype.h | 1463 # define _G_TYPE_CIC(ip, gt, ct) \ argument 1464 ((ct*) g_type_check_instance_cast ((GTypeInstance*) ip, gt)) 1465 # define _G_TYPE_CCC(cp, gt, ct) \ argument 1466 ((ct*) g_type_check_class_cast ((GTypeClass*) cp, gt)) 1468 # define _G_TYPE_CIC(ip, gt, ct) ((ct*) ip) argument 1469 # define _G_TYPE_CCC(cp, gt, ct) ((ct*) cp) argument 1473 #define _G_TYPE_IGC(ip, gt, ct) ((ct*) (((GTypeInstance*) ip)->g_class)) argument 1474 #define _G_TYPE_IGI(ip, gt, ct) ((ct*) g_type_interface_peek (((GTypeInstance*) ip)->g_clas… argument 1476 # define _G_TYPE_CIT(ip, gt) (G_GNUC_EXTENSION ({ \ argument 1477 GTypeInstance *__inst = (GTypeInstance*) ip; GType __t = gt; gboolean __r; \ [all …]
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
D | wpa_cli.sgml | 68 with "CTRL-REQ-<type>-<id>:<text>" 69 prefix. <type> is IDENTITY, PASSWORD, or OTP 70 (one-time-password). <id> is a unique identifier for the 71 current network. <text> is description of the request. In 77 <emphasis>otp</emphasis> commands. <id> needs to be copied from 206 <term>level <debug level></term> 259 <term>preauthenticate <BSSID></term> 266 <term>identity <network id> <identity></term> 273 <term>password <network id> <password></term> 280 <term>pin <network id> <pin></term> [all …]
|
/external/android-mock/src/com/google/android/testing/mocking/ |
D | AndroidMock.java | 724 public static <T extends Comparable<T>> T gt(Comparable<T> expectedValue) { in gt() method in AndroidMock 725 return EasyMock.gt(expectedValue); in gt() 744 public static byte gt(byte expectedValue) { in gt() method in AndroidMock 745 return EasyMock.gt(expectedValue); in gt() 764 public static double gt(double expectedValue) { in gt() method in AndroidMock 765 return EasyMock.gt(expectedValue); in gt() 784 public static float gt(float expectedValue) { in gt() method in AndroidMock 785 return EasyMock.gt(expectedValue); in gt() 804 public static int gt(int expectedValue) { in gt() method in AndroidMock 805 return EasyMock.gt(expectedValue); in gt() [all …]
|
/external/llvm/test/CodeGen/Thumb2/ |
D | thumb2-select_xform.ll | 8 ; CHECK: it gt 20 ; CHECK: it gt 33 ; CHECK: it gt
|
/external/libvpx/examples/includes/geshi/geshi/ |
D | scilab.php | 279 1 => '->', 286 4 => '<[a-zA-Z_][a-zA-Z0-9_]*>',
|
/external/llvm/test/CodeGen/X86/ |
D | 2004-03-30-Select-Max.ll | 4 %gt = icmp sgt i32 %A, %B ; <i1> [#uses=1] 5 %R = select i1 %gt, i32 %A, i32 %B ; <i32> [#uses=1]
|
/external/skia/bench/ |
D | GradientBench.cpp | 104 GradientBench(void* param, GradType gt) : INHERITED(param) { in GradientBench() argument 105 fName.printf("gradient_%s", gGrads[gt].fName); in GradientBench() 112 fCount = N * gGrads[gt].fRepeat; in GradientBench() 113 fShader = gGrads[gt].fMaker(pts, gGradData[0], in GradientBench()
|
/external/doclava/res/assets/templates/ |
D | sample.cs | 20 …is located in the corresponding directory in <code><sdk>/samples/android-<version>/...…
|
/external/easymock/src/org/easymock/ |
D | EasyMock.java | 492 public static <T extends Comparable<T>> T gt(Comparable<T> value) { in gt() method in EasyMock 505 public static byte gt(byte value) { in gt() method in EasyMock 518 public static double gt(double value) { in gt() method in EasyMock 531 public static float gt(float value) { in gt() method in EasyMock 544 public static int gt(int value) { in gt() method in EasyMock 557 public static long gt(long value) { in gt() method in EasyMock 570 public static short gt(short value) { in gt() method in EasyMock
|
/external/llvm/test/CodeGen/PTX/ |
D | setp.ll | 40 ; CHECK: setp.gt.u32 p[[P0:[0-9]+]], r{{[0-9]+}}, r{{[0-9]+}}; 76 ; CHECK: setp.gt.s32 p[[P0:[0-9]+]], r{{[0-9]+}}, r{{[0-9]+}}; 130 ; CHECK: setp.gt.u32 p[[P0:[0-9]+]], r{{[0-9]+}}, 1; 166 ; CHECK: setp.gt.s32 p[[P0:[0-9]+]], r{{[0-9]+}}, 1; 175 ; CHECK: setp.gt.s32 p[[P0:[0-9]+]], r{{[0-9]+}}, 0; 184 ; CHECK: setp.gt.u32 p[[P0:[0-9]+]], r{{[0-9]+}}, r{{[0-9]+}}; 196 ; CHECK: setp.gt.u32 p[[P0:[0-9]+]], r{{[0-9]+}}, 0;
|
D | cvt.ll | 7 ; CHECK: setp.gt.u16 p[[P0:[0-9]+]], rh{{[0-9]+}}, 0 18 ; CHECK: setp.gt.u32 p[[P0:[0-9]+]], r{{[0-9]+}}, 0 29 ; CHECK: setp.gt.u64 p[[P0:[0-9]+]], rd{{[0-9]+}}, 0 40 ; CHECK: setp.gt.f32 p[[P0:[0-9]+]], r{{[0-9]+}}, 0 51 ; CHECK: setp.gt.f64 p[[P0:[0-9]+]], rd{{[0-9]+}}, 0
|
/external/openssl/crypto/ocsp/ |
D | ocsp_ext.c | 477 ASN1_GENERALIZEDTIME *gt = NULL; in OCSP_archive_cutoff_new() local 479 if (!(gt = ASN1_GENERALIZEDTIME_new())) goto err; in OCSP_archive_cutoff_new() 480 if (!(ASN1_GENERALIZEDTIME_set_string(gt, tim))) goto err; in OCSP_archive_cutoff_new() 481 x = X509V3_EXT_i2d(NID_id_pkix_OCSP_archiveCutoff, 0, gt); in OCSP_archive_cutoff_new() 483 if (gt) ASN1_GENERALIZEDTIME_free(gt); in OCSP_archive_cutoff_new()
|
/external/clang/test/SemaTemplate/ |
D | instantiate-template-template-parm.cpp | 51 template <T x, T y> struct gt { struct 54 typedef gt<2, 1> r2;
|
/external/llvm/docs/CommandGuide/ |
D | FileCheck.pod | 141 define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) { 142 %tmp3 = load <2 x double>* %A, align 16 143 %tmp7 = insertelement <2 x double> undef, double %B, i32 0 144 %tmp9 = shufflevector <2 x double> %tmp3, 145 <2 x double> %tmp7, 146 <2 x i32> < i32 0, i32 2 > 147 store <2 x double> %tmp9, <2 x double>* %r, align 16
|
/external/llvm/test/MC/MBlaze/ |
D | mblaze_fpu.s | 64 # CHECK: fcmp.gt 67 fcmp.gt r0, r1, r2
|
/external/markdown/docs/extensions/ |
D | Fenced_Code_Blocks.txt | 52 <pre><code class="html"><p>HTML Document</p>
|
/external/iptables/extensions/ |
D | libxt_rateest.man | 40 [\fB!\fP] \fB\-\-rateest\-gt\fP 89 \-m rateest \-\-rateest\-delta \-\-rateest1 eth0 \-\-rateest\-bps1 2.5mbit \-\-rateest\-gt 93 \-m rateest \-\-rateest\-delta \-\-rateest1 ppp0 \-\-rateest\-bps1 2mbit \-\-rateest\-gt
|
D | libipt_ttl.man | 6 \fB\-\-ttl\-gt\fP \fIttl\fP
|
D | libip6t_hl.man | 9 \fB\-\-hl\-gt\fP \fIvalue\fP
|
/external/webkit/Source/autotools/ |
D | acinclude.m4 | 28 # gt - greater than (test A > B) 51 # AX_COMPARE_VERSION([3.15],[gt],[3.15.8]) 111 dnl # In the case of le, ge, lt, and gt, the strings are sorted as necessary 119 [gt],[
|
/external/openssl/crypto/bn/ |
D | bn_lib.c | 681 int gt,lt; in BN_cmp() local 704 { gt=1; lt= -1; } in BN_cmp() 705 else { gt= -1; lt=1; } in BN_cmp() 707 if (a->top > b->top) return(gt); in BN_cmp() 713 if (t1 > t2) return(gt); in BN_cmp()
|
/external/dbus/test/data/equiv-config-files/entities/ |
D | entities-1.conf | 6 <listen>unix:path=/foo/<bar></listen>
|
/external/dbus/test/data/valid-config-files/ |
D | entities.conf | 6 <listen>unix:path=/foo/<bar></listen>
|
/external/v8/src/arm/ |
D | constants-arm.h | 135 gt = 12 << 28, // Z clear, N == V Greater than. enumerator 166 return gt; in ReverseCondition() 167 case gt: in ReverseCondition()
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Markdown Documentation - Basics.text | 278 <code><blink></code> tags.</p> 303 <pre><code><blockquote> 304 <p>For example.</p> 305 </blockquote>
|