Searched defs:Index (Results 1 - 25 of 549) sorted by relevance

1234567891011>>

/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp49 static std::string GetAEABIUnwindPersonalityName(unsigned Index) { argument
50 assert(Index < ARM::EHABI::NUM_PERSONALITY_INDEX &&
52 return (Twine("__aeabi_unwind_cpp_pr") + Twine(Index)).str();
68 void emitPersonalityIndex(unsigned Index) override;
110 void ARMTargetAsmStreamer::emitPersonalityIndex(unsigned Index) {
111 OS << "\t.personalityindex " << Index << '\n';
364 void emitPersonalityIndex(unsigned Index) override;
627 void ARMTargetELFStreamer::emitPersonalityIndex(unsigned Index) {
628 getStreamer().emitPersonalityIndex(Index);
1260 void ARMELFStreamer::emitPersonalityIndex(unsigned Index) {
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_file.py1 from clang.cindex import Index, File namespace
4 index = Index.create()
H A Dtest_tokens.py2 from clang.cindex import Index namespace
/external/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h26 const FunctionInfoIndex &Index; member in class:llvm::FunctionImporter
34 const FunctionInfoIndex &Index,
36 : Index(Index), ModuleLoader(ModuleLoader) {}
33 FunctionImporter( const FunctionInfoIndex &Index, std::function<std::unique_ptr<Module>(StringRef Identifier)> ModuleLoader) argument
/external/clang/bindings/python/examples/cindex/
H A Dcindex-includes.py19 from clang.cindex import Index namespace
32 index = Index.create()
H A Dcindex-dump.py13 A simple command line tool for dumping a source file using the Clang Index
57 from clang.cindex import Index namespace
77 index = Index.create()
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedArraySubscriptChecker.cpp38 const Expr *Index = A->getIdx(); local
39 if (!C.getSVal(Index).isUndef())
/external/eigen/Eigen/src/Core/
H A DCommaInitializer.h31 typedef typename XprType::Index Index; typedef in struct:Eigen::CommaInitializer
119 Index m_row; // current row id
120 Index m_col; // current col id
121 Index m_currentBlockRows; // current block height
/external/eigen/test/
H A Ddeterminant.cpp19 typedef typename MatrixType::Index Index; typedef
20 Index size = m.rows();
30 Index i = internal::random<Index>(0, size-1);
31 Index j;
33 j = internal::random<Index>(0, size-1);
H A Dselfadjoint.cpp17 typedef typename MatrixType::Index Index; typedef
20 Index rows = m.rows();
21 Index cols = m.cols();
H A Dbandmatrix.cpp14 typedef typename MatrixType::Index Index; typedef
19 Index rows = _m.rows();
20 Index cols = _m.cols();
21 Index supers = _m.supers();
22 Index subs = _m.subs();
49 Index d = (std::min)(rows,cols);
50 Index a = std::max<Index>(0,cols-d-supers);
51 Index
65 typedef BandMatrix<float>::Index Index; typedef
[all...]
H A Dconservative_resize.cpp20 typedef typename MatrixType::Index Index; typedef
40 const Index rows = internal::random<Index>(1,50);
41 const Index cols = internal::random<Index>(1,50);
50 const Index rows = internal::random<Index>(50,75);
51 const Index cols = internal::random<Index>(5
[all...]
H A Dcorners.cpp18 typedef typename MatrixType::Index Index; typedef
19 Index rows = m.rows();
20 Index cols = m.cols();
22 Index r = internal::random<Index>(1,rows);
23 Index c = internal::random<Index>(1,cols);
33 Index sr = internal::random<Index>(
[all...]
H A Ddiagonal.cpp14 typedef typename MatrixType::Index Index; typedef
17 Index rows = m.rows();
18 Index cols = m.cols();
H A Ddontalign.cpp22 typedef typename MatrixType::Index Index; typedef
27 Index rows = m.rows();
28 Index cols = m.cols();
H A Deigen2support.cpp17 typedef typename MatrixType::Index Index; typedef
20 Index rows = m.rows();
21 Index cols = m.cols();
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dr1mpyq.h10 typedef DenseIndex Index; typedef
13 for (Index j = n-2; j>=0; --j)
14 for (Index i = 0; i<m; ++i) {
20 for (Index j = 0; j<n-1; ++j)
21 for (Index i = 0; i<m; ++i) {
/external/llvm/include/llvm/Object/
H A DFunctionIndexObjectFile.h32 std::unique_ptr<FunctionInfoIndex> Index; member in class:llvm::object::FunctionIndexObjectFile
65 FunctionInfoIndex &getIndex() { return *Index; }
/external/llvm/lib/IR/
H A DOperator.cpp38 APInt Index = OpC->getValue().sextOrTrunc(Offset.getBitWidth()); local
39 Offset += Index * APInt(Offset.getBitWidth(),
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIIntStream.cs64 /// <see cref="IIntStream.Index"/>, or some other marker.</returns>
72 int Index { get; } property in interface:Antlr.Runtime.IIntStream
76 /// <see cref="IIntStream.Index"/> would return marker.
79 /// The marker will usually be <see cref="IIntStream.Index"/> but
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIIntStream.cs56 * current input position, Index, or some other marker so that
71 int Index property in interface:Antlr.Runtime.IIntStream
78 * The marker will usually be Index but it doesn't have to be. It's
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/common/
H A Dposition.py116 def Index(index): member in class:Position
126 Index = staticmethod(Index) variable in class:Position
/external/eigen/Eigen/src/Eigenvalues/
H A DGeneralizedSelfAdjointEigenSolver.h53 typedef typename Base::Index Index; typedef in class:Eigen::GeneralizedSelfAdjointEigenSolver
61 * GeneralizedSelfAdjointEigenSolver(Index) for dynamic-size matrices.
77 GeneralizedSelfAdjointEigenSolver(Index size)
/external/eigen/Eigen/src/Householder/
H A DBlockHouseholder.h24 typedef typename TriangularFactorType::Index Index; typedef
26 const Index nbVecs = vectors.cols();
29 for(Index i = 0; i < nbVecs; i++)
31 Index rs = vectors.rows() - i;
48 typedef typename MatrixType::Index Index; typedef
50 Index nbVecs = vectors.cols();
/external/eigen/Eigen/src/SparseCore/
H A DSparseTranspose.h26 inline Index nonZeros() const { return derived().nestedExpression().nonZeros(); }
29 // NOTE: VC10 and VC11 trigger an ICE if don't put typename TransposeImpl<MatrixType,Sparse>:: in front of Index,
30 // a typedef typename TransposeImpl<MatrixType,Sparse>::Index Index;
37 typedef typename TransposeImpl::Index Index; typedef in class:Eigen::TransposeImpl::InnerIterator
40 EIGEN_STRONG_INLINE InnerIterator(const TransposeImpl& trans, typename TransposeImpl<MatrixType,Sparse>::Index outer)
43 typename TransposeImpl<MatrixType,Sparse>::Index row() const { return Base::col(); }
44 typename TransposeImpl<MatrixType,Sparse>::Index col() const { return Base::row(); }
51 typedef typename TransposeImpl::Index Inde typedef in class:Eigen::TransposeImpl::ReverseInnerIterator
[all...]

Completed in 1180 milliseconds

1234567891011>>