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

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/
priority_queue_base_dispatch.hpp 71 /// Dispatched type.
72 typedef pairing_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
80 /// Dispatched type.
81 typedef binomial_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
89 /// Dispatched type.
90 typedef rc_binomial_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
98 /// Dispatched type.
99 typedef binary_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
107 /// Dispatched type.
108 typedef thin_heap<_VTp, Cmp_Fn, _Alloc> type; typedef in struct:__gnu_pbds::detail::container_base_dispatch
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/filesystem/class.path/path.req/
is_pathable.pass.cpp 38 struct Identity { typedef Tp type; }; typedef in struct:Identity
44 using GetSourceType = typename decltype(CheckSourceType(std::declval<Tp>()))::type;
47 class ExpQual = typename std::remove_const<Exp>::type>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.status_known/
status_known.pass.cpp 38 file_type type; member in struct:TestCase
54 file_status s(TC.type);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.types/
nullptr_t.pass.cpp 39 template <class T> struct Voider { typedef void type; }; typedef in struct:Voider
43 typename Voider<decltype(std::declval<T>() < nullptr)>::type> : std::true_type {};
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
timers.h 21 typedef std::chrono::high_resolution_clock type; typedef in struct:benchmark::ChooseSteadyClock
26 typedef std::chrono::steady_clock type; typedef in struct:benchmark::ChooseSteadyClock
32 typedef ChooseSteadyClock<>::type type; typedef in struct:benchmark::ChooseClockType
34 typedef std::chrono::high_resolution_clock type;
39 typedef ChooseClockType::type ClockType;
  /system/bt/hci/src/
btsnoop_mem.cc 33 const uint16_t type = packet->event & BT_EVT_MASK; local
36 switch (type) {
56 if (length) (*data_callback)(type, data, length, timestamp_us);
  /system/core/init/
property_type.cpp 36 auto type = type_strings[0]; local
38 if (type == "string") {
41 if (type == "bool") {
44 if (type == "int") {
48 if (type == "uint") {
55 if (type == "double") {
59 if (type == "size") {
70 if (type == "enum") {
  /system/tools/hidl/c2hal/
EnumVarDeclaration.h 35 static std::string type() { return "enum"; } function in struct:android::EnumVarDeclaration
36 const std::string decType() const override { return type(); }
FunctionDeclaration.h 27 struct Type;
30 FunctionDeclaration(Type* type,
37 const Type * getType() const;
39 static std::string type() { return "function"; } function in struct:android::FunctionDeclaration
40 const std::string decType() const override { return type(); }
47 const Type *mType;
Include.h 33 static std::string type() { return "include"; } function in struct:android::Include
34 const std::string decType() const override { return type(); }
Note.h 37 static std::string type() { return "note"; } function in struct:android::Note
38 const std::string decType() const override { return type(); }
TypeDef.h 32 static std::string type() { return "typedef"; } function in struct:android::TypeDef
33 const std::string decType() const override { return type(); }
VarDeclaration.h 21 #include "Type.h"
26 VarDeclaration(Type *type, const std::string &name);
31 Type* getType() const;
33 static std::string type() { return "var"; } function in struct:android::VarDeclaration
34 const std::string decType() const override { return type(); }
41 Type *mType;
  /system/update_engine/update_manager/
boxed_value.cc 110 ConnectionType type = it; local
113 ret += StringForConnectionType(type);
  /tools/apksig/src/main/java/com/android/apksig/internal/asn1/
Asn1Class.java 24 @Target({ElementType.TYPE})
27 public Asn1Type type(); method in interface:Asn1Class
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
VariableWriter.java 26 private final TypeName type; field in class:VariableWriter
29 VariableWriter(TypeName type, String name) {
30 this.type = checkNotNull(type);
34 public TypeName type() { method in class:VariableWriter
35 return type;
46 type.write(appendable, context);
54 .append(type)
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
IsCompatibleType.java 8 private final Class<T> type; field in class:IsCompatibleType
10 public IsCompatibleType(Class<T> type) {
11 this.type = type;
16 return type.isAssignableFrom(cls);
26 description.appendText("type < ").appendText(type.getName());
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/validator/
SingleNodeTypeValidator.java 6 * Runs a validator on all nodes of a certain type.
9 private final Class<N> type; field in class:SingleNodeTypeValidator
12 public SingleNodeTypeValidator(Class<N> type, TypedValidator<N> validator) {
13 this.type = type;
19 if (type.isInstance(node)) {
20 validator.accept(type.cast(node), problemReporter);
22 node.findAll(type).forEach(n -> validator.accept(n, problemReporter));
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/type/
TypeTest.java 1 package com.github.javaparser.ast.type;
54 Type type = parseType("int[]"); local
55 assertTrue(type.isArrayType());
56 ArrayType arrayType = type.asArrayType();
58 type.ifArrayType(t -> s[0] = t);
64 final Type type = parseType("TypeUtilsTest<String>.Tester"); local
65 assertEquals("TypeUtilsTest<String>.Tester", type.toString());
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
FieldValue.java 29 * The type of the field.
31 public final Type type; field in class:FieldValue
42 * @param type type of the field
45 public FieldValue(String name, Type type, Value value) {
47 this.type = type;
  /bionic/libc/kernel/uapi/linux/
atm_he.h 29 char type; member in struct:he_ioctl_reg
userio.h 28 __u8 type; member in struct:userio_cmd
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_AUDIT.h 30 __u8 type; member in struct:xt_audit_info
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_lround.c 32 #ifndef type
34 #define type double macro
43 * If type has more precision than dtype, the endpoints dtype_(min|max) are
45 * from 0. On the other hand, if type has less precision than dtype, then
50 static const type dtype_min = DTYPE_MIN - 0.5;
51 static const type dtype_max = DTYPE_MAX + 0.5;
56 fn(type x)
  /bionic/tests/
sys_msg_test.cpp 57 long type; member in struct:__anon1501
70 ASSERT_EQ(1, msg.type);

Completed in 423 milliseconds

1 2 3 4 5 67 8 91011>>