Searched defs:Type (Results 251 - 275 of 776) sorted by relevance

<<11121314151617181920>>

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorEvalTo.h26 // Type promotion to handle the case where the types of the lhs and the rhs are different.
43 typedef typename MakePointerT::Type Type; typedef in struct:Eigen::internal::traits::MakePointer
71 typedef typename MakePointer_<CoeffReturnType>::Type PointerType;
124 typedef typename internal::traits<const TensorEvalToOp<ArgType, MakePointer_> >::template MakePointer<CoeffReturnType>::Type DevicePointer;
H A DTensorForcedEval.h25 /// This is done through our MakePointer_ class. By default the Type in the MakePointer_<T> is T* .
32 // Type promotion to handle the case where the types of the lhs and the rhs are different.
48 typedef typename MakePointerT::Type Type; typedef in struct:Eigen::internal::traits::MakePointer
151 EIGEN_DEVICE_FUNC typename MakePointer<Scalar>::Type data() const { return m_buffer; }
161 typename MakePointer<CoeffReturnType>::Type m_buffer;
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineProduct.h20 typedef SkylineProduct<LhsNested, RhsNested, ProductMode> Type; typedef in struct:Eigen::SkylineProductReturnType
287 EIGEN_STRONG_INLINE const typename SkylineProductReturnType<Derived, OtherDerived>::Type
290 return typename SkylineProductReturnType<Derived, OtherDerived>::Type(derived(), other.derived());
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DRandomSetter.h22 typedef std::map<KeyType,Scalar> Type; typedef in struct:Eigen::StdMapTraits
27 static void setInvalidKey(Type&, const KeyType&) {}
50 typedef std::unordered_map<KeyType,Scalar> Type; typedef in struct:Eigen::StdUnorderedMapTraits
55 static void setInvalidKey(Type&, const KeyType&) {}
67 typedef google::dense_hash_map<KeyType,Scalar> Type; typedef in struct:Eigen::GoogleDenseHashMapTraits
72 static void setInvalidKey(Type& map, const KeyType& k)
85 typedef google::sparse_hash_map<KeyType,Scalar> Type; typedef in struct:Eigen::GoogleSparseHashMapTraits
90 static void setInvalidKey(Type&, const KeyType&) {}
165 typedef typename MapTraits<ScalarWrapper>::Type HashMapType;
/external/fmtlib/fmt/
H A Dposix.h337 typedef locale_t Type; typedef in class:fmt::Locale
345 Type get() const { return locale_; }
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DKeyTypeData.java101 Map<String, Type> typeMap;
104 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap,
113 private static class Type { class in class:KeyTypeData
117 Type(String legacyId, String bcpId) { method in class:KeyTypeData.Type
159 Type t = keyData.typeMap.get(type);
196 Type t = keyData.typeMap.get(type);
317 Map<String, Type> typeDataMap = new HashMap<String, Type>();
365 Type t = new Type(legacyTypeI
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dfmtable.h85 Formattable(); // Type kLong, value 0
225 enum Type { enum in class:Formattable
281 Type getType(void) const;
713 Type fType;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DKeyTypeData.java99 Map<String, Type> typeMap;
102 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap,
111 private static class Type { class in class:KeyTypeData
115 Type(String legacyId, String bcpId) { method in class:KeyTypeData.Type
157 Type t = keyData.typeMap.get(type);
194 Type t = keyData.typeMap.get(type);
315 Map<String, Type> typeDataMap = new HashMap<String, Type>();
363 Type t = new Type(legacyTypeI
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DType.java42 public class Type { class
48 public static final Type DOUBLE = new Type(CtClass.doubleType);
50 public static final Type BOOLEAN = new Type(CtClass.booleanType);
52 public static final Type LONG = new Type(CtClass.longType);
54 public static final Type CHAR = new Type(CtClass.charType);
56 public static final Type BYT
138 Type(CtClass clazz) { method in class:Type
142 private Type(CtClass clazz, boolean special) { method in class:Type
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java36 public enum Type { enum in class:JavaExpression
43 return call(Type.STRING, "asString", expression);
52 return call(Type.INT, "asInt", expression);
61 return call(Type.BOOLEAN, "asBoolean", expression);
68 return call(Type.VALUE, "asVariableValue", expression, TemplateTranslator.DATA_CONTEXT);
70 return call(Type.VALUE, "asValue", expression);
89 final JavaExpression stringExpr = expression.cast(Type.STRING);
90 return new JavaExpression(Type.VAR_NAME) {
115 // JavaExpression of Type VOID.
119 return new JavaExpression(Type
142 private Type(String symbol) { method in class:JavaExpression.Type
[all...]
/external/libchrome/base/
H A Dbind_helpers.h337 using Type = TypeList<T, List...>;
342 using Type = TypeList<>;
347 using DropTypeListItem = typename DropTypeListItemImpl<n, List>::Type;
360 using Type = TypeList<Accum...>;
365 using Type = TypeList<Accum...>;
372 using TakeTypeListItem = typename TakeTypeListItemImpl<n, List>::Type;
380 using Type = TypeList<Types1..., Types2...>;
385 using ConcatTypeLists = typename ConcatTypeListsImpl<List1, List2>::Type;
393 // MSVC 2013 doesn't support Type Alias of function types.
395 typedef R Type(Arg typedef in struct:base::internal::MakeFunctionTypeImpl
[all...]
H A Dvalues.h52 enum Type { enum in class:base::Value
70 // safe to use the Type to determine whether you can cast from
73 Type GetType() const { return type_; }
76 bool IsType(Type type) const { return type == type_; }
113 explicit Value(Type type);
118 Type type_;
/external/libchrome/base/containers/
H A Dmru_cache.h40 typedef std::map<KeyType, ValueType, CompareType> Type; typedef in struct:base::MRUCacheStandardMap
59 HashOrCompareType>::Type KeyIndex;
231 typedef std::unordered_map<KeyType, ValueType, HashType> Type; typedef in struct:base::MRUCacheHashMap
/external/libchrome/base/message_loop/
H A Dmessage_loop.h103 enum Type { enum in class:base::MessageLoop
115 explicit MessageLoop(Type type = TYPE_DEFAULT);
135 static std::unique_ptr<MessagePump> CreateMessagePumpForType(Type type);
289 virtual bool IsType(Type type) const;
292 Type type() const { return type_; }
414 MessageLoop(Type type, MessagePumpFactoryCallback pump_factory);
438 Type type,
488 const Type type_;
/external/libmojo/ipc/
H A Dipc_message_utils.h90 typedef typename SimilarTypeTraits<P>::Type Type; typedef
91 ParamTraits<Type>::GetSize(sizer, static_cast<const Type&>(p));
103 typedef typename SimilarTypeTraits<P>::Type Type; typedef
104 ParamTraits<Type>::Write(m, static_cast<const Type& >(p));
111 typedef typename SimilarTypeTraits<P>::Type Type; typedef
117 typedef typename SimilarTypeTraits<P>::Type Type; typedef
626 typedef int Type; typedef in struct:IPC::SimilarTypeTraits
632 typedef HANDLE Type; typedef in struct:IPC::SimilarTypeTraits
[all...]
/external/llvm/include/llvm/CodeGen/
H A DStackMaps.h140 LocationType Type; member in struct:llvm::StackMaps::Location
144 Location() : Type(Unprocessed), Size(0), Reg(0), Offset(0) {}
145 Location(LocationType Type, unsigned Size, unsigned Reg, int64_t Offset) argument
146 : Type(Type), Size(Size), Reg(Reg), Offset(Offset) {}
/external/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h64 ELF_ET Type; member in struct:llvm::ELFYAML::FileHeader
71 ELF_STT Type; member in struct:llvm::ELFYAML::Symbol
97 ELF_SHT Type; member in struct:llvm::ELFYAML::Section
136 ELF_REL Type; member in struct:llvm::ELFYAML::Relocation
/external/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp123 Expected<SymbolRef::Type> SymbolTypeOrErr = Symbol.getType();
126 SymbolRef::Type SymbolType = *SymbolTypeOrErr;
172 bool SymbolizableObjectFile::getNameFromSymbolTable(SymbolRef::Type Type, argument
177 const auto &SymbolMap = Type == SymbolRef::ST_Function ? Functions : Objects;
/external/llvm/lib/MC/
H A DWinCOFFStreamer.cpp142 void MCWinCOFFStreamer::EmitCOFFSymbolType(int Type) { argument
148 if (Type & ~0xffff) {
149 Error("type value '" + Twine(Type) + "' out of range");
154 cast<MCSymbolCOFF>(CurSymbol)->setType((uint16_t)Type);
/external/llvm/lib/Object/
H A DIRObjectFile.cpp292 sys::fs::file_magic Type = sys::fs::identify_magic(Object.getBuffer()); local
293 switch (Type) {
300 ObjectFile::createObjectFile(Object, Type);
/external/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp317 NType(IO &) : Type(RelocType(0)) {}
318 NType(IO &, uint16_t T) : Type(RelocType(T)) {}
319 uint16_t denormalize(IO &) { return Type; }
320 RelocType Type; member in struct:llvm::yaml::__anon12872::NType
350 IO, Rel.Type);
351 IO.mapRequired("Type", NT->Type);
354 IO, Rel.Type);
355 IO.mapRequired("Type", NT->Type);
[all...]
/external/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUTargetStreamer.cpp225 unsigned Type) {
226 switch (Type) {
320 unsigned Type) {
224 EmitAMDGPUSymbolType(StringRef SymbolName, unsigned Type) argument
319 EmitAMDGPUSymbolType(StringRef SymbolName, unsigned Type) argument
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp35 unsigned Type,
148 unsigned Type = MachO::ARM_RELOC_HALF; local
176 Type = MachO::ARM_RELOC_HALF_SECTDIFF;
217 if (Type == MachO::ARM_RELOC_HALF_SECTDIFF) {
234 (Type << 24) |
249 unsigned Type,
271 assert(Type == MachO::ARM_RELOC_VANILLA && "invalid reloc for 2 symbols");
282 Type = MachO::ARM_RELOC_SECTDIFF;
288 if (Type == MachO::ARM_RELOC_SECTDIFF ||
289 Type
243 RecordARMScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Type, unsigned Log2Size, uint64_t &FixedValue) argument
401 unsigned Type = 0; local
[all...]
/external/llvm/lib/Target/Hexagon/
H A DBitTracker.h141 ValueType Type; member in struct:llvm::BitTracker::BitValue
144 BitValue(ValueType T = Top) : Type(T) {}
145 BitValue(bool B) : Type(B ? One : Zero) {}
146 BitValue(unsigned Reg, uint16_t Pos) : Type(Ref), RefI(Reg, Pos) {}
149 if (Type != V.Type)
151 if (Type == Ref && !(RefI == V.RefI))
160 return T == 0 ? Type == Zero
161 : (T == 1 ? Type == One : false);
180 if (Type
[all...]
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp61 unsigned Type) const override;
135 unsigned Type = Reloc.Type; local
136 if (Type == ELF::R_MIPS_HI16)
138 if (Type == ELF::R_MICROMIPS_HI16)
140 if (Type == ELF::R_MIPS16_HI16)
146 if (Type == ELF::R_MIPS_GOT16)
148 if (Type == ELF::R_MICROMIPS_GOT16)
150 if (Type == ELF::R_MIPS16_GOT16)
173 if (X.R.Type
275 unsigned Type = (unsigned)ELF::R_MIPS_NONE; local
315 unsigned Type = (unsigned)ELF::R_MIPS_NONE; local
322 unsigned Type = (unsigned)ELF::R_MIPS_NONE; local
[all...]

Completed in 564 milliseconds

<<11121314151617181920>>