HomeSort by relevance Sort by last modified time
    Searched defs:type (Results 451 - 475 of 10128) sorted by null

<<11121314151617181920>>

  /external/guice/core/src/com/google/inject/spi/
StaticInjectionRequest.java 27 * A request to inject the static fields and methods of a type. Requests are created
38 private final Class<?> type; field in class:StaticInjectionRequest
40 StaticInjectionRequest(Object source, Class<?> type) {
42 this.type = checkNotNull(type, "type");
50 return type;
54 * Returns the static methods and fields of {@code type} that will be injected to fulfill this
60 * @throws ConfigurationException if there is a malformed injection point on {@code type}, such as
66 return InjectionPoint.forStaticMethodsAndFields(type);
    [all...]
  /external/guice/core/test/com/google/inject/example/
JndiProvider.java 29 final Class<T> type; field in class:JndiProvider
31 JndiProvider(Class<T> type, String name) {
33 this.type = type;
38 return type.cast(context.lookup(name));
47 * type and name.
50 Class<T> type, String name) {
51 return new JndiProvider<T>(type, name);
  /external/guice/core/test/com/google/inject/internal/
MoreTypesTest.java 23 import java.lang.reflect.Type;
49 Type type = getClass().getMethod("testEquals_typeVariable").getTypeParameters()[0]; local
50 assertTrue(MoreTypes.equals(new TypeLiteral<T>() {}.getType(), type));
  /external/guice/extensions/jndi/src/com/google/inject/jndi/
JndiIntegration.java 43 public static <T> Provider<T> fromJndi(Class<T> type, String name) {
44 return new JndiProvider<T>(type, name);
50 final Class<T> type; field in class:JndiIntegration.JndiProvider
53 public JndiProvider(Class<T> type, String name) {
54 this.type = type;
60 return type.cast(context.lookup(name));
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
Element.java 36 enum Type {
44 Type type(); method in interface:Element
RealElement.java 32 private final Element.Type type; field in class:RealElement
35 RealElement(String setName, Element.Type type, String keyType) {
36 this(setName, type, keyType, nextUniqueId.incrementAndGet());
39 RealElement(String setName, Element.Type type, String keyType, int uniqueId) {
42 this.type = type;
54 @Override public Element.Type type() method in class:RealElement
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SimpleCache.java 27 private int type = ICUCache.SOFT; field in class:SimpleCache
39 type = cacheType;
67 if (type == ICUCache.WEAK) {
  /external/icu/icu4c/source/i18n/
titletrn.cpp 85 // case type: >0 cased (UCASE_LOWER etc.) ==0 uncased <0 case-ignorable
86 int32_t type; local
100 type=ucase_getTypeOrIgnorable(c);
101 if(type>0) { // cased
104 } else if(type==0) { // uncased but not ignorable
107 // else (type<0) case-ignorable: continue
128 type=ucase_getTypeOrIgnorable(c);
129 if(type>=0) { // not case-ignorable
135 doTitle = (UBool)(type==0); // doTitle=isUncased
  /external/icu/icu4c/source/test/intltest/
idnaconf.h 43 int type; // 0 toascii, 1 tounicode member in class:IdnaConfTest
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
SimpleCache.java 23 private int type = ICUCache.SOFT; field in class:SimpleCache
35 type = cacheType;
61 if (type == ICUCache.WEAK) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SimpleCache.java 23 private int type = ICUCache.SOFT; field in class:SimpleCache
35 type = cacheType;
63 if (type == ICUCache.WEAK) {
  /external/iproute2/ip/
ipfou.c 51 __u8 ipproto, type; local
101 type = gue_set ? FOU_ENCAP_GUE : FOU_ENCAP_DIRECT;
104 addattr8(n, 1024, FOU_ATTR_TYPE, type);
  /external/iproute2/misc/
ssfilter.h 18 int type; member in struct:ssfilter
  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/visitor/
HashCodeVisitorGenerator.java 46 Class<?> type = field.getType(); local
47 if (type.equals(boolean.class)) {
49 } else if (type.equals(int.class)) {
NoCommentHashCodeVisitorGenerator.java 76 Class<?> type = field.getType(); local
77 if (type.equals(boolean.class)) {
79 } else if (type.equals(int.class)) {
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/
SwitchEntryContext.java 48 ResolvedType type = JavaParserFacade.get(typeSolver).getType(switchStmt.getSelector()); local
49 if (type.isReferenceType() && type.asReferenceType().getTypeDeclaration().isEnum()) {
50 if (type instanceof ReferenceTypeImpl) {
51 ReferenceTypeImpl typeUsageOfTypeDeclaration = (ReferenceTypeImpl) type;
  /external/javaparser/javaparser-symbol-solver-model/src/main/java/com/github/javaparser/symbolsolver/model/resolution/
Value.java 23 * Any type of value.
28 private ResolvedType type; field in class:Value
31 public Value(ResolvedType type, String name) {
32 this.type = type;
40 ResolvedType type = decl.getType(); local
41 return new Value(type, decl.getName());
47 "typeUsage=" + type +
57 return type;
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/
Issue116.java 44 com.github.javaparser.ast.type.Type typeNode = methodDeclaration.getParameters().get(0).getType();
45 ResolvedType type = javaParserFacade.convert(typeNode, typeNode); local
46 assertEquals("java.lang.String[]", type.describe());
Issue18.java 44 ResolvedType type = javaParserFacade.getType(expr.getExpression()); local
45 assertEquals("java.lang.Object", type.describe());
Issue84.java 44 final ResolvedType type = javaParserFacade.getType(methodCall); local
45 assertEquals(String.class.getCanonicalName(), type.asReferenceType().getQualifiedName());
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
ArrayExprTest.java 22 ResolvedType type = JavaParserFacade.get(new ReflectionTypeSolver()).getType(field.getVariables().get(0).getInitializer().get()); local
23 assertEquals(true, type.isReferenceType());
24 assertEquals("java.lang.String", type.asReferenceType().getQualifiedName());
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
CastExpr.java 26 import com.github.javaparser.ast.type.Type;
35 private Type type; field in class:CastExpr
42 public CastExpr(Type type, Expression expr) {
43 setType(type);
47 public CastExpr(Range range, Type type, Expression expr) {
49 setType(type);
    [all...]
ClassExpr.java 26 import com.github.javaparser.ast.type.Type;
31 * Defines an expression that accesses the class of a type.
40 private Type type; field in class:ClassExpr
45 public ClassExpr(Type type) {
46 setType(type);
49 public ClassExpr(Range range, Type type) {
    [all...]
InstanceOfExpr.java 26 import com.github.javaparser.ast.type.Type;
37 private Type type; field in class:InstanceOfExpr
42 public InstanceOfExpr(final Expression expr, final Type type) {
44 setType(type);
47 public InstanceOfExpr(final Range range, final Expression expr, final Type type) {
50 setType(type);
    [all...]
TypeExpr.java 26 import com.github.javaparser.ast.type.Type;
37 private Type<?> type; field in class:TypeExpr
41 public TypeExpr(Range range, Type<?> type) {
43 setType(type);
57 public Type<?> getType() {
58 return type;
62 public TypeExpr setType(Type<?> type)
    [all...]

Completed in 597 milliseconds

<<11121314151617181920>>