Searched defs:type (Results 76 - 100 of 5154) sorted by relevance

1234567891011>>

/external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
H A DAccessibleInstantiator.java32 public AccessibleInstantiator(Class<T> type) { argument
33 super(type);
H A DFailingInstantiator.java31 public FailingInstantiator(Class<T> type) { argument
H A DNewInstanceInstantiator.java33 private final Class<T> type; field in class:NewInstanceInstantiator
35 public NewInstanceInstantiator(Class<T> type) { argument
36 this.type = type;
41 return type.newInstance();
H A DNullInstantiator.java30 public NullInstantiator(Class<T> type) { argument
/external/objenesis/main/src/main/java/org/objenesis/instantiator/gcj/
H A DGCJInstantiator.java33 public GCJInstantiator(Class<T> type) { argument
34 super(type);
40 return type.cast(newObjectMethod.invoke(dummyStream, type, Object.class));
/external/objenesis/main/src/main/java/org/objenesis/strategy/
H A DInstantiatorStrategy.java31 * @param type Class that will be instantiated
34 <T> ObjectInstantiator<T> newInstantiatorOf(Class<T> type); argument
H A DSerializingInstantiatorStrategy.java53 * @param type Class to instantiate
56 public <T> ObjectInstantiator<T> newInstantiatorOf(Class<T> type) { argument
57 if(!Serializable.class.isAssignableFrom(type)) {
58 throw new ObjenesisException(new NotSerializableException(type+" not serializable"));
62 return new ObjectInputStreamInstantiator<T>(type);
66 return new SunReflectionFactorySerializationInstantiator<T>(type);
68 return new ObjectStreamClassInstantiator<T>(type);
72 return new ObjectStreamClassInstantiator<T>(type);
74 return new AndroidSerializationInstantiator<T>(type);
77 return new GCJSerializationInstantiator<T>(type);
[all...]
H A DStdInstantiatorStrategy.java53 * @param type Class to instantiate
56 public <T> ObjectInstantiator<T> newInstantiatorOf(Class<T> type) { argument
60 if(Serializable.class.isAssignableFrom(type)) {
61 return new ObjectInputStreamInstantiator<T>(type);
63 return new AccessibleInstantiator<T>(type);
67 return new SunReflectionFactoryInstantiator<T>(type);
72 return new UnsafeFactoryInstantiator<T>(type);
76 return new Android10Instantiator<T>(type);
80 return new Android17Instantiator<T>(type);
83 return new Android18Instantiator<T>(type);
[all...]
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_pattern.cpp9 CPDF_Pattern::CPDF_Pattern(PatternType type, argument
13 : m_PatternType(type),
/external/pdfium/xfa/fde/css/
H A Dcfde_cssnumbervalue.cpp9 CFDE_CSSNumberValue::CFDE_CSSNumberValue(FDE_CSSNumberType type, FX_FLOAT value) argument
10 : CFDE_CSSValue(FDE_CSSPrimitiveType::Number), type_(type), value_(value) {
/external/pdfium/xfa/fwl/
H A Dcfwl_event.cpp9 CFWL_Event::CFWL_Event(CFWL_Event::Type type) argument
10 : CFWL_Event(type, nullptr, nullptr) {}
12 CFWL_Event::CFWL_Event(Type type, CFWL_Widget* pSrcTarget) argument
13 : CFWL_Event(type, pSrcTarget, nullptr) {}
15 CFWL_Event::CFWL_Event(Type type, argument
18 : m_pSrcTarget(pSrcTarget), m_pDstTarget(pDstTarget), m_type(type) {}
H A Dcfwl_message.cpp9 CFWL_Message::CFWL_Message(CFWL_Message::Type type) argument
10 : CFWL_Message(type, nullptr, nullptr) {}
12 CFWL_Message::CFWL_Message(Type type, CFWL_Widget* pSrcTarget) argument
13 : CFWL_Message(type, pSrcTarget, nullptr) {}
15 CFWL_Message::CFWL_Message(Type type, argument
18 : m_pSrcTarget(pSrcTarget), m_pDstTarget(pDstTarget), m_type(type) {}
/external/proguard/src/proguard/evaluation/value/
H A DInitialValueFactory.java49 * Creates an initial value (0, 0L, 0.0f, 0.0, null) of the given type.
51 public Value createValue(String type) argument
53 switch (type.charAt(0))
76 throw new IllegalArgumentException("Invalid type ["+type+"]");
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DClassProvider.java39 @Nullable ClassDef getClassDef(String type); argument
/external/smali/smalidea/src/main/java/org/jf/smalidea/
H A DSmaliASTFactory.java13 public LeafElement createLeaf(IElementType type, CharSequence text) { argument
14 if (type == SmaliTokens.CLASS_DESCRIPTOR) {
17 return super.createLeaf(type, text);
/external/strace/
H A Dkcmp.c35 int type = tcp->u_arg[2]; local
40 printxval(kcmp_types, type, "KCMP_???");
42 switch(type) {
/external/swiftshader/src/D3D9/
H A DDirect3DQuery9.hpp31 Direct3DQuery9(Direct3DDevice9 *device, D3DQUERYTYPE type);
50 const D3DQUERYTYPE type; member in class:D3D9::Direct3DQuery9
/external/syslinux/com32/gpllib/dmi/
H A Ddmi_ipmi.c35 static const char *type[] = { local
44 return type[code];
48 void dmi_ipmi_base_address(uint8_t type, const uint8_t * p, s_ipmi * ipmi) argument
50 if (type == 0x04) { /* SSIF */
/external/syslinux/com32/lib/syslinux/
H A Dmemmap.c44 enum syslinux_memmap_types type)
47 return syslinux_add_memmap(mmap, start, len, type);
43 syslinux_memory_map_callback(void *map, addr_t start, addr_t len, enum syslinux_memmap_types type) argument
/external/toybox/toys/lsb/
H A Dmknod.c15 Create a special file NAME with a given type. TYPE is b for block device,
41 int major=0, minor=0, type; local
44 type = stridx("pcub", *toys.optargs[1]);
45 if (type == -1) perror_exit("bad type '%c'", *toys.optargs[1]);
46 if (type) {
56 if (mknod(*toys.optargs, mode|modes[type], dev_makedev(major, minor)))
/external/v8/src/
H A Dmachine-type.cc5 #include "src/machine-type.h"
46 std::ostream& operator<<(std::ostream& os, MachineSemantic type) { argument
47 switch (type) {
70 std::ostream& operator<<(std::ostream& os, MachineType type) { argument
71 if (type == MachineType::None()) {
73 } else if (type.representation() == MachineRepresentation::kNone) {
74 return os << type.semantic();
75 } else if (type.semantic() == MachineSemantic::kNone) {
76 return os << type.representation();
78 return os << type
[all...]
/external/webrtc/webrtc/base/
H A Dnattypes.cc45 NAT* NAT::Create(NATType type) { argument
46 switch (type) {
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_format.cc19 RtpPacketizer* RtpPacketizer::Create(RtpVideoCodecTypes type, argument
23 switch (type) {
40 RtpDepacketizer* RtpDepacketizer::Create(RtpVideoCodecTypes type) { argument
41 switch (type) {
/external/android-clat/
H A Dicmp.c44 * Determines whether an ICMP type is an error message.
45 * type: the ICMP type
47 int is_icmp_error(uint8_t type) { argument
48 return type == 3 || type == 11 || type == 12;
52 * Determines whether an ICMPv6 type is an error message.
53 * type: the ICMPv6 type
55 is_icmp6_error(uint8_t type) argument
63 icmp_to_icmp6_type(uint8_t type, uint8_t code) argument
91 icmp_to_icmp6_code(uint8_t type, uint8_t code) argument
126 icmp6_to_icmp_type(uint8_t type, uint8_t code) argument
151 icmp6_to_icmp_code(uint8_t type, uint8_t code) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DAttribute.java38 /** The type; might be empty such as for Python which has no static typing */
39 public String type; field in class:Attribute
57 * and type declarations. Also handle "int x=3" and 'T t = new T("foo")'
62 * Set name, type, initvalue, and full decl instance vars.
114 // the type is the decl minus the ID (could be empty)
115 this.type = decl.substring(0,start);
117 this.type += decl.substring(stop,rightEdgeOfDeclarator+1);
119 this.type = type.trim();
120 if ( this.type
[all...]

Completed in 2587 milliseconds

1234567891011>>