Searched refs:types (Results 1 - 25 of 2029) sorted by relevance

1234567891011>>

/external/stlport/test/unit/
H A Dstldbg_include.cpp23 * [This due to sys/types.h contains
26 * #include <bits/types.h>
39 # include <sys/types.h>
/external/openssh/
H A Droaming_serv.c20 #include <sys/types.h>
/external/qemu/distrib/sdl-1.2.15/src/thread/irix/
H A DSDL_systhread_c.h24 #include <sys/types.h>
/external/linux-tools-perf/util/include/asm/
H A Dbyteorder.h1 #include <asm/types.h>
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DComparison.java30 @Override Rop rop(TypeList types) {
31 return Rops.opIfLt(types);
37 @Override Rop rop(TypeList types) {
38 return Rops.opIfLe(types);
42 /** {@code a == b}. Supports int and reference types. */
44 @Override Rop rop(TypeList types) {
45 return Rops.opIfEq(types);
51 @Override Rop rop(TypeList types) {
52 return Rops.opIfGe(types);
58 @Override Rop rop(TypeList types) {
70 rop(TypeList types) argument
[all...]
H A DBinaryOp.java42 @Override Rop rop(TypeList types) {
43 return Rops.opAdd(types);
49 @Override Rop rop(TypeList types) {
50 return Rops.opSub(types);
56 @Override Rop rop(TypeList types) {
57 return Rops.opMul(types);
63 @Override Rop rop(TypeList types) {
64 return Rops.opDiv(types);
70 @Override Rop rop(TypeList types) {
71 return Rops.opRem(types);
117 rop(com.android.dx.rop.type.TypeList types) argument
[all...]
H A DTypeList.java25 * An immutable of types.
28 final TypeId<?>[] types; field in class:TypeList
31 TypeList(TypeId<?>[] types) { argument
32 this.types = types.clone();
33 this.ropTypes = new StdTypeList(types.length);
34 for (int i = 0; i < types.length; i++) {
35 ropTypes.set(i, types[i].ropType);
43 return Collections.unmodifiableList(Arrays.asList(types));
47 return o instanceof TypeList && Arrays.equals(((TypeList) o).types, type
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regress/
H A Dregress-7703.js53 types = [];
57 types[types.length] = (typeof x);
64 AddTestCase( "inspect(o),length", 2, types.length );
65 AddTestCase( "inspect(o)[0]", "number", types[0] );
66 AddTestCase( "inspect(o)[1]", "number", types[1] );
77 AddTestCase( "inspect_again(o),length", 2, types.length );
78 AddTestCase( "inspect_again(o)[0]", "number", types[0] );
79 AddTestCase( "inspect_again(o)[1]", "number", types[1] );
/external/javasqlite/src/main/java/SQLite/
H A DCallback.java53 * @param types string array holding column types
56 public void types(String types[]); argument
/external/dhcpcd/compat/
H A Dstrlcpy.h31 #include <sys/types.h>
/external/iptables/include/linux/netfilter/
H A Dxt_CLASSIFY.h4 #include <linux/types.h>
H A Dxt_CHECKSUM.h12 #include <linux/types.h>
H A Dxt_CONNSECMARK.h4 #include <linux/types.h>
H A Dxt_TCPMSS.h4 #include <linux/types.h>
H A Dxt_cpu.h4 #include <linux/types.h>
H A Dxt_AUDIT.h15 #include <linux/types.h>
H A Dxt_LED.h4 #include <linux/types.h>
H A Dxt_esp.h4 #include <linux/types.h>
/external/kernel-headers/original/linux/
H A Dtermios.h4 #include <linux/types.h>
/external/libsepol/tests/
H A Dtest-linker-types.c32 /* Tests for types:
128 char *types[2]; local
130 /* These tests look at types in the base only, the desire is to ensure that
131 * types are not destroyed or otherwise removed during the link process.
132 * if this happens these tests won't work anyway since we are using types to
141 types[0] = "g_b_type_1";
142 test_attr_types(base, "g_b_attr_1", NULL, types, 1);
150 types[0] = "o1_b_type_1";
151 test_attr_types(base, "o1_b_attr_1", base->decl_val_to_struct[decls[0] - 1], types, 1);
166 char *types[ local
[all...]
/external/oprofile/libutil/
H A Dop_types.h3 * General-utility types
17 #include <sys/types.h>
19 /*@{\name miscellaneous types */
34 #include <linux/types.h>
H A Dop_lockfile.h19 #include <sys/types.h>
/external/ipsec-tools/src/include-glibc/
H A Dglibc-bugs.h10 #include <sys/types.h>
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DX509CertSelectorTest.java37 int[] types = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
38 for (int i = 0; i < types.length; i++) {
40 new X509CertSelector().addSubjectAlternativeName(types[i],
42 fail("No expected NullPointerException for type: " + types[i]);
53 int[] types = { 0, 3, 4, 5, 6, 7, 8 };
54 for (int i = 0; i < types.length; i++) {
56 new X509CertSelector().addSubjectAlternativeName(types[i],
58 fail("IOException expected for type: " + types[i]);
86 int[] types = { 0, 1, 2, 3, 4, 5, 6, 7, 8 };
87 for (int i = 0; i < types
[all...]
/external/giflib/
H A Dconfig.h7 #include <sys/types.h>

Completed in 719 milliseconds

1234567891011>>