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

1 2 3 4 5 6 78 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
IdItem.java 26 * {@code non-null;} the type constant for the defining class of
29 private final CstType type; field in class:IdItem
34 * @param type {@code non-null;} the type constant for the defining
37 public IdItem(CstType type) {
38 if (type == null) {
39 throw new NullPointerException("type == null");
42 this.type = type;
49 typeIds.intern(type);
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
IdItem.java 26 * {@code non-null;} the type constant for the defining class of
29 private final CstType type; field in class:IdItem
34 * @param type {@code non-null;} the type constant for the defining
37 public IdItem(CstType type) {
38 if (type == null) {
39 throw new NullPointerException("type == null");
42 this.type = type;
49 typeIds.intern(type);
    [all...]
  /device/google/cuttlefish_common/common/vsoc/lib/
input_events_region_view.h 28 uint16_t type; member in struct:vsoc::input_events::InputEvent
  /device/linaro/bootloader/arm-trusted-firmware/plat/socionext/uniphier/
uniphier_soc_info.c 38 uint32_t type = uniphier_get_soc_type(); local
40 switch (type) {
  /external/adhd/cras/src/server/
cras_main_message.h 25 * type - Type of the message.
29 enum CRAS_MAIN_MESSAGE_TYPE type; member in struct:cras_main_message
39 /* Registers the handler function for specific type of message. */
40 int cras_main_message_add_handler(enum CRAS_MAIN_MESSAGE_TYPE type,
cras_ramp.h 29 * type: See CRAS_RAMP_ACTION_TYPE.
35 enum CRAS_RAMP_ACTION_TYPE type; member in struct:cras_ramp_action
  /external/annotation-tools/asmx/src/org/objectweb/asm/
Handler.java 55 * Internal name of the type of exceptions handled by this handler, or
61 * Constant pool index of the internal name of the type of exceptions
64 int type; field in class:Handler
  /external/autotest/client/tests/monotonic_time/src/
logging.c 39 const char *type = NULL; local
51 type = "DEBUG";
54 type = "INFO";
57 type = "WARN";
60 type = "ERROR";
64 type = "FATAL";
71 if (type)
72 fprintf(log_fp, "%s: ", type);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSAbsentContent.java 16 private final ASN1ObjectIdentifier type; field in class:CMSAbsentContent
24 ASN1ObjectIdentifier type)
26 this.type = type;
47 return type;
CMSProcessableByteArray.java 18 private final ASN1ObjectIdentifier type; field in class:CMSProcessableByteArray
28 ASN1ObjectIdentifier type,
31 this.type = type;
53 return type;
  /external/brotli/csharp/org/brotli/dec/
Transform.cs 13 private readonly int type; field in class:Org.Brotli.Dec.Transform
17 internal Transform(string prefix, int type, string suffix)
20 this.type = type;
95 int op = transform.type;
  /external/bsdiff/
bsdiff_arguments_unittest.cc 14 CompressorType type; local
15 EXPECT_TRUE(BsdiffArguments::ParseCompressorType("Brotli", &type));
16 EXPECT_EQ(CompressorType::kBrotli, type);
18 EXPECT_TRUE(BsdiffArguments::ParseCompressorType("bz2", &type));
19 EXPECT_EQ(CompressorType::kBZ2, type);
21 EXPECT_FALSE(BsdiffArguments::ParseCompressorType("invalid", &type));
82 std::vector<const char*> args = {"bsdiff", "--format=bsdf2", "--type=brotli",
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
offset_token.py 21 A token is represented by a type defined in Python's token module, a string
32 def type(self): member in class:OffsetToken
90 while offset_tokens[0].type == tokenize.NL:
96 first_token = OffsetToken(first_token.type, first_token.string,
111 tokenize_tokens.append((t.type, t.string, (row, col), (row, col), None))
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
p2-0x.cpp 3 struct A { typedef int type; }; typedef in struct:A
5 struct X<int>* p2; // expected-error {{elaborated type refers to a type alias template}}
11 struct F<int> i; // expected-error {{elaborated type refers to a type alias template}}
12 typename F<A>::type j; // ok
16 struct Y<F>::template U<char> k; // expected-error 2{{elaborated type refers to a type alias template}}
  /external/clang/test/CXX/special/class.ctor/
p1.cpp 4 struct type { }; struct in struct:X0
10 X0 (f0)(type);
23 struct type { }; struct in struct:X1
31 X1<T> (f0)(type);
33 X1 (f1)(type);
43 template<typename T> X1<T> (X1<T>::f1)(type) { return 0; }
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/
p7.cpp 3 struct Q { typedef int type; }; typedef in struct:Q
7 // type of a parameter pack that is not a pack expansion, even if we know the
9 template<typename T, typename T::type...> void a(T);
12 int &a_enabled = a(Q()); // expected-error {{cannot bind to a temporary of type 'void'}}
14 template<typename T, template<typename T::type> class ...X> void b(T);
17 int &b_enabled = b(Q()); // expected-error {{cannot bind to a temporary of type 'void'}}
19 template<typename T, template<typename T::type...> class ...X> void c(T);
22 int &c_enabled = c(Q()); // expected-error {{cannot bind to a temporary of type 'void'}}
  /external/clang/test/CodeGen/
2007-04-05-PadBeforeZeroLengthField.c 2 struct c__ { unsigned int type:4; }; member in struct:c__
  /external/clang/test/CodeGenCXX/
debug-info-template-partial-specialization.cpp 11 typedef _Tp* type; typedef in struct:__pointer_type_imp::__pointer_type1
17 // Test that the bool template type parameter is emitted.
20 // CHECK: ![[FALSE]] = !DITemplateValueParameter(type: !{{[0-9]+}}, value: i8 0)
21 typedef typename __pointer_type_imp::__pointer_type1<_Tp, _Dp, false>::type type; typedef in struct:__pointer_type2
26 typedef typename __pointer_type2<_Tp, _Dp>::type pointer;
  /external/clang/test/Index/
complete-exprs.c 22 typedef int type; typedef
24 (type)f;
34 // CHECK-CC1: NotImplemented:{ResultType size_t}{TypedText sizeof}{LeftParen (}{Placeholder expression-or-type}{RightParen )} (40)
51 // CHECK-CC2: NotImplemented:{ResultType size_t}{TypedText sizeof}{LeftParen (}{Placeholder expression-or-type}{RightParen )} (40)
69 // CHECK-CC7: TypedefDecl:{TypedText type} (50)
  /external/clang/test/PCH/
crash-12631281.cpp 13 template <> struct is_convertible<int> { typedef int type; }; typedef in struct:is_convertible
18 template <class _U1, class _U2, class = typename is_convertible< first_type>::type>
  /external/clang/test/SemaCXX/
typo-correction-crash.cpp 15 typedef int type; typedef in namespace:BarNamespace::NestedNamespace
19 FooRecord::NestedNamespace::type x; // expected-error {{no member named 'NestedNamespace' in 'FooRecord'; did you mean 'BarNamespace::NestedNamespace'?}}
  /external/clang/test/SemaTemplate/
partial-spec-instantiate.cpp 48 typedef int type; typedef in struct:rdar9169404::X
51 X<bool, -1>::type value;
53 // expected-error@-2 {{non-type template argument evaluates to -1, which cannot be narrowed to type 'bool'}}
  /external/conscrypt/testing/src/main/java/libcore/tlswire/record/
TlsRecord.java 26 public int type; field in class:TlsRecord
31 result.type = in.readUnsignedByte();
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
KeyFormatter.java 32 builder.append(request.type()); // TODO(cgruber): Use TypeMirrorFormatter.
  /external/dtc/tests/
utilfdt_test.c 35 int type; local
38 if (utilfdt_decode_type(fmt, &type, &size))
40 if (expect_type != type)
41 FAIL("format '%s': expected type='%c', got type='%c'", fmt,
42 expect_type, type);
50 int type; local
53 if (!utilfdt_decode_type(fmt, &type, &size))

Completed in 535 milliseconds

1 2 3 4 5 6 78 91011>>