Searched defs:type (Results 226 - 250 of 3757) sorted by relevance

1234567891011>>

/external/elfutils/src/tests/
H A Daggregate_size.c37 Dwarf_Die *type; local
40 type = dwarf_formref_die (dwarf_attr (var, DW_AT_type, &attr_mem),
42 if (type != NULL)
45 if (dwarf_aggregate_size (type, &size) < 0)
51 printf ("%s has no type.\n", name);
/external/freetype/include/
H A Dftbdf.h86 * @type:
105 * type ::
106 * The property type.
109 * The atom string, if type is @BDF_PROPERTY_TYPE_ATOM. May be
113 * A signed integer, if type is @BDF_PROPERTY_TYPE_INTEGER.
116 * An unsigned integer, if type is @BDF_PROPERTY_TYPE_CARDINAL.
120 BDF_PropertyType type; member in struct:BDF_PropertyRec_
195 * In case of error, `aproperty->type' is always set to
/external/freetype/src/cff/
H A Dcf2stack.h56 CF2_NumberType type; member in struct:CF2_StackNumber_
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
H A DPoloWireInterface.java42 * @param type the required message type to be read
46 * type.
48 public PoloMessage getNextMessage(PoloMessage.PoloMessageType type) argument
/external/guava/guava/src/com/google/common/base/
H A DDefaults.java50 private static <T> void put(Map<Class<?>, Object> map, Class<T> type, T value) { argument
51 map.put(type, value);
55 * Returns the default value of {@code type} as defined by JLS --- {@code 0} for numbers, {@code
59 public static <T> T defaultValue(Class<T> type) { argument
60 // Primitives.wrap(type).cast(...) would avoid the warning, but we can't use that from here
62 T t = (T) DEFAULTS.get(checkNotNull(type));
/external/guava/guava/src/com/google/common/collect/
H A DEnumMultiset.java41 public static <E extends Enum<E>> EnumMultiset<E> create(Class<E> type) { argument
42 return new EnumMultiset<E>(type);
69 public static <E extends Enum<E>> EnumMultiset<E> create(Iterable<E> elements, Class<E> type) { argument
70 EnumMultiset<E> result = create(type);
75 private transient Class<E> type; field in class:EnumMultiset
78 private EnumMultiset(Class<E> type) { argument
79 super(WellBehavedMap.wrap(new EnumMap<E, Count>(type)));
80 this.type = type;
86 stream.writeObject(type);
[all...]
H A DMutableClassToInstanceMap.java72 public <T extends B> T putInstance(Class<T> type, T value) { argument
73 return cast(type, put(type, value));
77 public <T extends B> T getInstance(Class<T> type) { argument
78 return cast(type, get(type));
81 private static <B, T extends B> T cast(Class<T> type, B value) { argument
82 return Primitives.wrap(type).cast(value);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalSet.java49 Class<? super E> type, E[] emptyArrayForContents,
57 return new MinimalSet<E>(type, setContents.toArray(emptyArrayForContents));
60 private MinimalSet(Class<? super E> type, E... contents) { argument
61 super(type, true, contents);
48 ofClassAndContents( Class<? super E> type, E[] emptyArrayForContents, Iterable<? extends E> contents) argument
/external/hamcrest/library/src/org/hamcrest/object/
H A DIsCompatibleType.java9 private final Class<T> type; field in class:IsCompatibleType
11 public IsCompatibleType(Class<T> type) { argument
12 this.type = type;
16 return type.isAssignableFrom(cls);
20 description.appendText("type < ").appendText(type.getName());
/external/hamcrest/src/org/hamcrest/core/
H A DIs.java63 public static Matcher<Object> is(Class<?> type) { argument
64 return is(instanceOf(type));
H A DIsAnything.java53 * This matcher always evaluates to true. With type inference.
56 public static <T> Matcher<T> any(@SuppressWarnings("unused")Class<T> type) { argument
H A DIsInstanceOf.java37 * Is the value an instance of a particular type?
40 public static Matcher<Object> instanceOf(Class<?> type) { argument
41 return new IsInstanceOf(type);
H A DIsNull.java40 * Matches if value is null. With type inference.
43 public static <T> Matcher<T> nullValue(@SuppressWarnings("unused") Class<T> type) { argument
48 * Matches if value is not null. With type inference.
51 public static <T> Matcher<T> notNullValue(@SuppressWarnings("unused") Class<T> type) { argument
/external/icu/icu4c/source/i18n/
H A Dupluralrules.cpp27 uplrules_openForType(const char *locale, UPluralType type, UErrorCode *status) argument
29 return (UPluralRules*)PluralRules::forLocale(Locale(locale), type, *status);
/external/icu/icu4c/source/test/intltest/
H A Didnaconf.h41 int type; // 0 toascii, 1 tounicode member in class:IdnaConfTest
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSimpleCache.java21 private int type = ICUCache.SOFT; field in class:SimpleCache
33 type = cacheType;
59 if (type == ICUCache.WEAK) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUFormat.java49 * @param type type of information requested, either {@link
52 * @return the information specified by <i>type</i>, or null if
60 public final ULocale getLocale(ULocale.Type type) { argument
61 return type == ULocale.ACTUAL_LOCALE ?
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTimeUnit.java28 TimeUnit(String type, String code) { argument
29 super(type, code);
42 return new MeasureUnitProxy(type, subType);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DDebugUtilities.java25 * Fetch the name of a particular type of enum
26 * @param type the enum type
29 public static String typeString(int type) { argument
30 return enumString(DebugUtilitiesData.UDebugEnumType, type);
35 * @param type which enum to look up, such as DebugUtilitiesData.UCalendarDateFields
38 public static int enumCount(int type) { argument
39 return DebugUtilitiesData.NAMES[type].length;
44 * @param type which enum to look up, such as DebugUtilitiesData.UCalendarDateFields
48 public static String enumString(int type, in argument
58 enumByString(int type, String string) argument
73 enumArrayValue(int type, int field) argument
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DIcuUnicodeNormalizerFactory.java19 public UnicodeTransform getInstance(Type type) { argument
20 switch (type) {
/external/iproute2/ip/
H A Dlink_veth.c22 printf("Usage: ip link <options> type veth "
23 "[peer <options>]\nTo get <options> type "
30 char *name, *type, *link, *dev; local
46 &name, &type, &link, &dev, &group);
/external/iproute2/lib/
H A Dll_addr.c32 const char *ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen) argument
38 (type == ARPHRD_TUNNEL || type == ARPHRD_SIT || type == ARPHRD_IPGRE)) {
41 if (alen == 16 && type == ARPHRD_TUNNEL6) {
/external/iproute2/misc/
H A Dssfilter.h14 int type; member in struct:ssfilter
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DMainUtil.java60 Class type = parameterTypes[i];
62 if (type.equals(String[].class)) {
75 private static Object convertParameter(String arg, Class type) { argument
76 if (type.equals(String.class)) {
78 } else if (type.equals(Integer.class)) {
80 } else if (type.equals(File.class)) {
83 throw new UnsupportedOperationException("Unknown type " + type);
/external/javassist/sample/vector/
H A DVectorAssistant.java9 * vectors of a given type. For example,
80 * the element type is a primitive type.
82 * @param type the type of elements
84 public CtClass makeSubclass(ClassPool pool, CtClass type) argument
87 CtClass vec = pool.makeClass(makeClassName(type));
95 map.put("sample.vector.X", type.getName());
105 * the element type can be a primitive type
109 makeSubclass2(ClassPool pool, CtClass type) argument
132 makeClassName(CtClass type) argument
[all...]

Completed in 1464 milliseconds

1234567891011>>