HomeSort by relevance Sort by last modified time
    Searched defs:ArgType (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /frameworks/compile/libbcc/lib/
RSInvariant.cpp 79 const llvm::Type *ArgType = Arg.getType();
80 if (ArgType->isPointerTy()) {
81 const llvm::Type *ArgPtrDomainType = ArgType->getPointerElementType();
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclPlaceHolderExpr.h 51 typedef typename PlaceHolderExpression<Arg, N>::Type ArgType;
52 typedef utility::tuple::Tuple<ArgType> ArgsTuple;
151 typedef CVQual TensorEvalToOp<typename CalculateIndex <N, Expr>::ArgType> Type;\
TensorCustomOp.h 82 typedef TensorCustomUnaryOp<CustomUnaryFunc, XprType> ArgType;
83 typedef typename internal::traits<ArgType>::Index Index;
84 static const int NumDims = internal::traits<ArgType>::NumDimensions;
86 typedef typename internal::remove_const<typename ArgType::Scalar>::type Scalar;
100 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorEvaluator(const ArgType& op, const Device& device)
151 const ArgType m_op;
  /external/libchrome/sandbox/win/src/
internal_types.h 19 enum ArgType {
  /external/llvm/tools/llvm-pdbdump/
FunctionDumper.cpp 180 auto ArgType = Arg->getType();
181 ArgType->dump(*this);
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
decode.go 33 Type ArgType
72 type ArgType int8
75 TypeUnknown ArgType = iota
91 func (t ArgType) String() string {
94 return fmt.Sprintf("ArgType(%d)", int(t))
124 func (t ArgType) GoString() string {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
decode.go 33 Type ArgType
72 type ArgType int8
75 TypeUnknown ArgType = iota
91 func (t ArgType) String() string {
94 return fmt.Sprintf("ArgType(%d)", int(t))
124 func (t ArgType) GoString() string {
  /external/python/cpython2/Lib/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
97 self.assertEqual(ArgType, type(t.from_param(0)))
103 self.assertEqual(ArgType, type(parm))
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
96 self.assertEqual(ArgType, type(t.from_param(0)))
102 self.assertEqual(ArgType, type(parm))
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
96 self.assertEqual(ArgType, type(t.from_param(0)))
102 self.assertEqual(ArgType, type(parm))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
96 self.assertEqual(ArgType, type(t.from_param(0)))
102 self.assertEqual(ArgType, type(parm))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_numbers.py 22 ArgType = type(byref(c_int(0)))
96 self.assertEqual(ArgType, type(t.from_param(0)))
102 self.assertEqual(ArgType, type(parm))
  /external/libcxx/test/libcxx/utilities/function.objects/func.require/
invoke_helpers.h 121 // ArgType - A non-copyable type intended to be used as a dummy argument type
123 struct ArgType {
125 explicit ArgType(int val = 0) : value(val) {}
127 ArgType(ArgType const&);
128 ArgType& operator=(ArgType const&);
271 ArgType a0, a1, a2;
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXAsmPrinter.cpp 470 const Type *ArgType = (*i).getType();
472 if (ArgType->isPointerTy()) {
478 decl += utostr(ArgType->getPrimitiveSizeInBits());
480 if (ArgType->isPointerTy() && ST.emitPtrAttribute()) {
481 const PointerType *PtrType = dyn_cast<const PointerType>(ArgType);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/function.objects/func.require/
invoke_helpers.h 121 // ArgType - A non-copyable type intended to be used as a dummy argument type
123 struct ArgType {
125 explicit ArgType(int val = 0) : value(val) {}
127 ArgType(ArgType const&);
128 ArgType& operator=(ArgType const&);
271 ArgType a0, a1, a2;
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 159 Type *ArgType = F.getFunctionType()->getParamType(0);
160 switch (ArgType->getTypeID()) {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
IntrinsicEmitter.cpp 205 static void EmitTypeGenerate(raw_ostream &OS, const Record *ArgType,
228 static void EmitTypeGenerate(raw_ostream &OS, const Record *ArgType,
230 MVT::SimpleValueType VT = getValueType(ArgType->getValueAsDef("VT"));
232 if (ArgType->isSubClassOf("LLVMMatchType")) {
233 unsigned Number = ArgType->getValueAsInt("Number");
235 if (ArgType->isSubClassOf("LLVMExtendedElementVectorType"))
238 else if (ArgType->isSubClassOf("LLVMTruncatedElementVectorType"))
257 EmitTypeGenerate(OS, ArgType->getValueAsDef("ElTy"), ArgNo);
264 EmitTypeGenerate(OS, ArgType->getValueAsDef("ElTy"), ArgNo);
351 Record *ArgType = RetTys[j]
    [all...]
  /external/clang/lib/AST/
DeclTemplate.cpp 208 QualType ArgType = Context.getTypeDeclType(TTP);
210 ArgType = Context.getPackExpansionType(ArgType, None);
212 Arg = TemplateArgument(ArgType);
    [all...]
ExprCXX.cpp 147 const QualType ArgType = Arg->getType();
149 if (ArgType->isDependentType() && !ArgType->isPointerType())
152 return ArgType->getAs<PointerType>()->getPointeeType();
    [all...]
  /external/clang/test/CodeGenCXX/
destructors.cpp 405 struct ArgType {
406 ~ArgType();
409 void f1(const ArgType& = ArgType());
415 // CHECK5: call void @_ZN5test97ArgTypeD1Ev(%"struct.test9::ArgType"* %
  /external/eigen/Eigen/src/Core/
CoreEvaluators.h 263 template<typename ArgType>
264 struct unary_evaluator<Transpose<ArgType>, IndexBased>
265 : evaluator_base<Transpose<ArgType> >
267 typedef Transpose<ArgType> XprType;
270 CoeffReadCost = evaluator<ArgType>::CoeffReadCost,
271 Flags = evaluator<ArgType>::Flags ^ RowMajorBit,
272 Alignment = evaluator<ArgType>::Alignment
333 evaluator<ArgType> m_argImpl;
515 template<typename UnaryOp, typename ArgType>
516 struct unary_evaluator<CwiseUnaryOp<UnaryOp, ArgType>, IndexBased
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
MessagePattern.java 68 * <li><code>ARG_START.CHOICE</code> stands for an ARG_START Part with ArgType CHOICE.
179 parseMessage(0, 0, 0, ArgType.NONE);
211 parsePluralOrSelectStyle(ArgType.PLURAL, 0, 0);
227 parsePluralOrSelectStyle(ArgType.SELECT, 0, 0);
573 * otherwise ArgType.NONE.
576 public ArgType getArgType() {
581 return ArgType.NONE;
629 * The value is the ordinal value of the ArgType. Use getArgType().
632 * followed by optional argument sub-parts (see ArgType constants)
639 * The value is the ordinal value of the ArgType. Use getArgType()
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MessagePattern.java 67 * <li><code>ARG_START.CHOICE</code> stands for an ARG_START Part with ArgType CHOICE.
186 parseMessage(0, 0, 0, ArgType.NONE);
220 parsePluralOrSelectStyle(ArgType.PLURAL, 0, 0);
237 parsePluralOrSelectStyle(ArgType.SELECT, 0, 0);
612 * otherwise ArgType.NONE.
616 public ArgType getArgType() {
621 return ArgType.NONE;
675 * The value is the ordinal value of the ArgType. Use getArgType().
678 * followed by optional argument sub-parts (see ArgType constants)
686 * The value is the ordinal value of the ArgType. Use getArgType()
    [all...]
  /external/messageformat/java/com/ibm/icu/text/
MessagePattern.java 65 * <li><code>ARG_START.CHOICE</code> stands for an ARG_START Part with ArgType CHOICE.
183 parseMessage(0, 0, 0, ArgType.NONE);
217 parsePluralOrSelectStyle(ArgType.PLURAL, 0, 0);
234 parsePluralOrSelectStyle(ArgType.SELECT, 0, 0);
609 * otherwise ArgType.NONE.
613 public ArgType getArgType() {
618 return ArgType.NONE;
672 * The value is the ordinal value of the ArgType. Use getArgType().
675 * followed by optional argument sub-parts (see ArgType constants)
683 * The value is the ordinal value of the ArgType. Use getArgType()
    [all...]

Completed in 1165 milliseconds

1 2 3 4