Searched defs:Col (Results 1 - 17 of 17) sorted by relevance

/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp10.cpp39 template<typename eT> class Col : public Mat<eT> { class in namespace:PR14768
41 using Col<eT>::operator();
/external/llvm/lib/IR/
H A DDebugLoc.cpp59 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, const MDNode *Scope, argument
65 return DILocation::get(Scope->getContext(), Line, Col,
H A DDIBuilder.cpp758 unsigned Line, unsigned Col) {
762 File, Line, Col);
757 createLexicalBlock(DIScope *Scope, DIFile *File, unsigned Line, unsigned Col) argument
/external/clang/test/SemaCXX/
H A Dconstexpr-nqueens.cpp13 constexpr Board addQueen(int Row, int Col) { argument
14 return Board(State | ((uint64_t)Row << (Col * 4)));
16 constexpr int getQueenRow(int Col) { argument
17 return (State >> (Col * 4)) & 0xf;
19 constexpr bool ok(int Row, int Col) { argument
20 return okRecurse(Row, Col, 0);
22 constexpr bool okRecurse(int Row, int Col, int CheckCol) { argument
23 return Col == CheckCol ? true :
25 getQueenRow(CheckCol) == Row + (Col - CheckCol) ? false :
26 getQueenRow(CheckCol) == Row + (CheckCol - Col)
29 at(int Row, int Col) argument
37 tryBoard(const Board &Try, int N, int Col, int Row, const Board &B) argument
41 buildBoardScan(int N, int Col, int Row, const Board &B) argument
48 buildBoardRecurse(int N, int Col, const Board &B) argument
57 check(const char *p, int Row, int Col) argument
[all...]
/external/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp16 Comment(const std::string &Message, unsigned Line, unsigned Col) argument
17 : Message(Message), Line(Line), Col(Col) { }
20 unsigned Line, Col; member in struct:clang::Comment
108 << Current->Col;
112 void Match(const char *Message, unsigned Line, unsigned Col) { argument
117 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col)
119 << "\" at line " << Line << ", column " << Col
121 << "\" at line " << C.Line << ", column " << C.Col;
[all...]
/external/gemmlowp/public/
H A Dmap.h75 enum class VectorShape { Col, Row }; member in class:gemmlowp::VectorShape
/external/llvm/bindings/go/llvm/
H A DIRBindings.cpp95 unsigned Col, LLVMMetadataRef Scope,
98 DebugLoc::get(Line, Col, Scope ? unwrap<MDNode>(Scope) : nullptr,
94 LLVMSetCurrentDebugLocation2(LLVMBuilderRef Bref, unsigned Line, unsigned Col, LLVMMetadataRef Scope, LLVMMetadataRef InlinedAt) argument
/external/clang/include/clang/Frontend/
H A DSerializedDiagnosticReader.h49 unsigned Col; member in struct:clang::serialized_diags::Location
51 Location(unsigned FileID, unsigned Line, unsigned Col, unsigned Offset) argument
52 : FileID(FileID), Line(Line), Col(Col), Offset(Offset) {}
/external/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp35 unsigned Col = 1; local
37 unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1);
40 << Line.substr(Col - 1, End - Col);
42 HighlightedRanges.push_back(std::make_pair(Col, End));
43 Col = End;
44 if (Col == ExpansionCol)
55 << Line.substr(Col - 1, Line.size() - Col + 1);
63 errs() << "Highlighted line " << LineNumber << ", " << Col << " local
[all...]
/external/llvm/lib/ProfileData/
H A DCoverageMapping.cpp277 void startSegment(unsigned Line, unsigned Col) { argument
278 DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n"); local
279 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false);
283 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry, argument
286 Segments.emplace_back(Line, Col, IsRegionEntry);
289 if (S.Line != Line || S.Col != Col) {
290 Segments.emplace_back(Line, Col, IsRegionEntry);
293 DEBUG(dbgs() << "Segment at " << Line << ":" << Col); local
311 unsigned Line = Active->LineEnd, Col local
[all...]
/external/llvm/lib/Support/
H A DSourceMgr.cpp233 int Line, int Col, SourceMgr::DiagKind Kind,
237 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
232 SMDiagnostic(const SourceMgr &sm, SMLoc L, StringRef FN, int Line, int Col, SourceMgr::DiagKind Kind, StringRef Msg, StringRef LineStr, ArrayRef<std::pair<unsigned,unsigned> > Ranges, ArrayRef<SMFixIt> Hints) argument
/external/clang/include/clang/Basic/
H A DSourceLocation.h358 unsigned Line, Col; member in class:clang::SourceLocation::PresumedLoc
363 : Filename(FN), Line(Ln), Col(Co), IncludeLoc(IL) {
386 unsigned getColumn() const { return Col; }
/external/eigen/Eigen/src/OrderingMethods/
H A DEigen_Colamd.h126 #define COL_IS_DEAD(c) (Col [c].start < ALIVE)
127 #define COL_IS_ALIVE(c) (Col [c].start >= ALIVE)
128 #define COL_IS_DEAD_PRINCIPAL(c) (Col [c].start == DEAD_PRINCIPAL)
130 #define KILL_PRINCIPAL_COL(c) { Col [c].start = DEAD_PRINCIPAL ; }
131 #define KILL_NON_PRINCIPAL_COL(c) { Col [c].start = DEAD_NON_PRINCIPAL ; }
199 required for the Col and Row arrays, respectively, which are internal to
221 static void init_scoring (Index n_row, Index n_col, Colamd_Row<Index> Row [], colamd_col<Index> Col [], Index A [], Index head [], double knobs[COLAMD_KNOBS], Index *p_n_row2, Index *p_n_col2, Index *p_max_deg);
224 static Index find_ordering (Index n_row, Index n_col, Index Alen, Colamd_Row<Index> Row [], colamd_col<Index> Col [], Index A [], Index head [], Index n_col2, Index max_deg, Index pfree);
227 static void order_children (Index n_col, colamd_col<Index> Col [], Index p []);
230 static void detect_super_cols (colamd_col<Index> Col [], Inde
339 colamd_col<Index> *Col ; /* pointer into A of Col [0..n_col] array */ local
[all...]
/external/llvm/include/llvm/ProfileData/
H A DCoverageMapping.h333 unsigned Col; member in struct:llvm::coverage::CoverageSegment
341 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry) argument
342 : Line(Line), Col(Col), Count(0), HasCount(false),
345 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count, argument
347 : Line(Line), Col(Col), Count(Count), HasCount(true),
351 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry) ==
352 std::tie(R.Line, R.Col, R.Count, R.HasCount, R.IsRegionEntry);
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp102 int Col; member in struct:SourceLocation
112 LexLoc.Col = 0;
114 LexLoc.Col++;
208 int getCol() const { return Loc.Col; }
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1270 void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S, argument
1286 Asm->OutStreamer->EmitDwarfLocDirective(Src, Line, Col, Flags, 0,
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4067 unsigned Line = Record[0], Col = Record[1]; local
4073 LastLoc = DebugLoc::get(Line, Col, Scope, IA);

Completed in 533 milliseconds