HomeSort by relevance Sort by last modified time
    Searched defs:type (Results 476 - 500 of 7786) sorted by null

<<11121314151617181920>>

  /external/objenesis/main/src/org/objenesis/instantiator/gcj/
GCJInstantiatorBase.java 61 protected final Class type; field in class:GCJInstantiatorBase
63 public GCJInstantiatorBase(Class type) {
64 this.type = type;
  /external/objenesis/main/src/org/objenesis/instantiator/jrockit/
JRockitLegacyInstantiator.java 55 private final Class type; field in class:JRockitLegacyInstantiator
57 public JRockitLegacyInstantiator(Class type) {
59 this.type = type;
64 return safeAllocObjectMethod.invoke(null, new Object[] {type});
  /external/openssh/
dispatch.c 42 dispatch_protocol_error(int type, u_int32_t seq, void *ctx)
47 logit("dispatch_protocol_error: type %d seq %u", type, seq);
59 dispatch_protocol_ignore(int type, u_int32_t seq, void *ssh)
61 logit("dispatch_protocol_ignore: type %d seq %u", type, seq);
86 ssh_dispatch_set(struct ssh *ssh, int type, dispatch_fn *fn)
88 ssh->dispatch[type] = fn;
96 u_char type; local
101 r = ssh_packet_read_seqnr(ssh, &type, &seqnr)
    [all...]
mac.h 37 int type; member in struct:sshmac
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssGrammarTest.java 55 CssTokens.TokenType type = it.type(); local
58 actualTokens.add(token + ":" + type.name());
  /external/pdfium/third_party/base/
template_util.h 17 typedef integral_constant<T, v> type; typedef in struct:pdfium::base::integral_constant
30 struct enable_if<true, T> { typedef T type; }; typedef in struct:pdfium::base::enable_if
  /external/pdfium/third_party/freetype/include/
ftbdf.h 86 * @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/pdfium/third_party/freetype/src/cff/
cf2stack.h 56 CF2_NumberType type; member in struct:CF2_StackNumber_
  /external/ppp/pppd/plugins/rp-pppoe/
debug.c 97 UINT16_t type = etherType(packet); local
105 if (type == Eth_PPPOE_Discovery) {
106 fprintf(fp, "Discovery (%x) ", (unsigned) type);
107 } else if (type == Eth_PPPOE_Session) {
108 fprintf(fp, "Session (%x) ", (unsigned) type);
110 fprintf(fp, "Unknown (%x) ", (unsigned) type);
if.c 64 * ethernet packet type (see /usr/include/net/ethertypes.h)
66 * Checks the ethernet packet header to determine its type.
68 * is set up correctly. Logs an error if an unexpected type is received.
69 * Note that the ethernet type names come from "pppoe.h" and the packet
77 UINT16_t type = (UINT16_t) ntohs(packet->ethHdr.h_proto); local
78 if (type != Eth_PPPOE_Discovery && type != Eth_PPPOE_Session) {
79 error("Invalid ether type 0x%x", type);
81 return type;
    [all...]
  /external/selinux/libselinux/src/
is_customizable_type.c 67 const char *type; local
79 type = context_type_get(c);
80 if (!type) {
86 if (strcmp(customizable_list[i], type) == 0) {
  /external/selinux/libsepol/cil/src/
cil_lexer.h 44 uint32_t type; member in struct:token
  /external/selinux/libsepol/include/sepol/policydb/
context.h 29 * identity, a role, a type and a MLS range.
34 uint32_t type; member in struct:context_struct
78 dst->type = src->type;
87 c->user = c->role = c->type = 0;
95 (c1->type == c2->type) && mls_context_cmp(c1, c2));
  /external/skia/src/gpu/
GrPendingFragmentStage.h 42 uint32_t type = coordTransform.getMatrix().getType(); local
43 return SkToBool(SkMatrix::kPerspective_Mask & type);
  /external/skia/src/gpu/gl/
GrGLGeometryProcessor.cpp 37 uint32_t type = coordTransforms[t]->getMatrix().getType(); local
39 type |= localMatrix.getType();
41 varyingType = SkToBool(SkMatrix::kPerspective_Mask & type) ? kVec3f_GrSLType :
  /external/skia/tests/
FloatingPointTextureTest.cpp 53 GrContextFactory::GLContextType type = local
55 if (!GrContextFactory::IsRenderingGLContext(type)) {
58 GrContext* context = factory->get(type);
100 GrContextFactory::GLContextType type = local
102 if (!GrContextFactory::IsRenderingGLContext(type)) {
105 GrContext* context = factory->get(type);
PDFJpegEmbedTest.cpp 97 SkJFIFInfo::Type type; member in struct:__anon18443
118 if (kTests[i].type != info.fType) {
119 ERRORF(r, "%s failed jfif type test", kTests[i].path);
RecordTestUtils.h 10 ReadAs() : ptr(NULL), type(SkRecords::Type(~0)) {}
13 SkRecords::Type type; member in struct:ReadAs
15 void operator()(const U& r) { ptr = &r; type = U::kType; }
18 void operator()(const T&) { type = U::kType; }
21 // Assert that the ith command in record is of type T, and return it.
26 REPORTER_ASSERT(r, T::kType == reader.type);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
PrimitiveProto.java 43 protected final String type; field in class:PrimitiveProto
45 public PrimitiveProto(@Nonnull ClassPath classPath, @Nonnull String type) {
47 this.type = type;
50 @Override public String toString() { return type; }
52 @Nonnull @Override public String getType() { return type; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/util/
TypeProtoUtils.java 60 @Nullable private TypeProto type = getSuperclassAsTypeProto(typeProto);
63 return type != null;
67 TypeProto type = this.type; local
68 if (type == null) {
72 this.type = getSuperclassAsTypeProto(type);
73 return type;
85 public static TypeProto getSuperclassAsTypeProto(@Nonnull TypeProto type) {
87 String next = type.getSuperclass()
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
ParameterIterator.java 63 @Nonnull final String type = parameterTypes.next().toString(); local
82 @Nonnull @Override public String getType() { return type; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/value/
DexBackedAnnotationEncodedValue.java 46 @Nonnull public final String type; field in class:DexBackedAnnotationEncodedValue
52 this.type = dexFile.getType(reader.readSmallUleb128());
59 reader.skipUleb128(); // type
71 @Nonnull @Override public String getType() { return type; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
ImmutableAnnotation.java 47 @Nonnull protected final String type; field in class:ImmutableAnnotation
51 @Nonnull String type,
54 this.type = type;
59 @Nonnull String type,
62 this.type = type;
77 @Nonnull @Override public String getType() { return type; }
ImmutableMethodParameter.java 47 @Nonnull protected final String type; field in class:ImmutableMethodParameter
51 public ImmutableMethodParameter(@Nonnull String type,
54 this.type = type;
59 public ImmutableMethodParameter(@Nonnull String type,
62 this.type = type;
77 @Nonnull @Override public String getType() { return type; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
ImmutableEndLocal.java 43 @Nullable protected final String type; field in class:ImmutableEndLocal
51 this.type = null;
58 @Nullable String type,
63 this.type = type;
82 @Nullable @Override public String getType() { return type; }

Completed in 761 milliseconds

<<11121314151617181920>>