Searched refs:Col (Results 1 - 20 of 20) sorted by relevance

/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/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/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/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
104 << Current->Col;
108 void Match(const char *Message, unsigned Line, unsigned Col) { argument
113 EXPECT_TRUE(C.Message == Message && C.Line == Line && C.Col == Col)
115 << "\" at line " << Line << ", column " << Col
117 << "\" at line " << C.Line << ", column " << C.Col;
[all...]
/external/llvm/include/llvm/IR/
H A DDebugLoc.h61 static DebugLoc get(unsigned Line, unsigned Col,
H A DDIBuilder.h657 /// @param Col Column number.
660 unsigned Line, unsigned Col,
/external/llvm/lib/IR/
H A DDebugLoc.cpp94 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, argument
102 if (Col > 255) Col = 0;
104 Result.LineCol = Line | (Col << 24);
H A DDIBuilder.cpp1235 unsigned Line, unsigned Col,
1251 ConstantInt::get(Type::getInt32Ty(VMContext), Col),
1234 createLexicalBlock(DIDescriptor Scope, DIFile File, unsigned Line, unsigned Col, unsigned Discriminator) 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; }
H A DSourceManager.h1408 unsigned Line, unsigned Col) const;
1419 unsigned Line, unsigned Col) const;
/external/sonivox/jet_tools/JetCreator/
H A DJetDialogs.py46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len)
58 self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1))
60 self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
62 self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Min, max=Max)
64 self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Lst, wx.CB_DROPDOWN | wx.CB_READONLY )
69 self.ctrls[Text] = TimeCtrl(panel, pos=(Col, Row + LBL_OFFSET), ctlName=Text)
71 self.ctrls[Text] = JetFileCombo(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
73 self.ctrls[Text] = JetFileText(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
75 self.ctrls[Text] = wx.StaticBox(parent=panel, id=wx.ID_ANY, label=Lbl, pos=(Row, Col), siz
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DDebugIR.cpp242 unsigned Col = 0; // FIXME: support columns local
256 NewLoc = DebugLoc::get(Line, Col, Loc.getScope(RealInst->getContext()),
259 NewLoc = DebugLoc::get(Line, Col, scope, nullptr);
/external/llvm/lib/Support/
H A DSourceMgr.cpp240 int Line, int Col, SourceMgr::DiagKind Kind,
244 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Kind(Kind),
239 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/llvm/include/llvm/Support/
H A DSourceMgr.h248 int Line, int Col, SourceMgr::DiagKind Kind,
/external/clang/lib/Basic/
H A DSourceManager.cpp1589 unsigned Col) const {
1591 assert(Line && Col && "Line and column should start from 1!");
1594 return translateLineCol(FirstFID, Line, Col);
1718 unsigned Col) const {
1736 if (Line == 1 && Col == 1)
1770 while (i < BufLength-1 && i < Col-1 && Buf[i] != '\n' && Buf[i] != '\r')
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h523 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
H A DDwarfDebug.cpp1611 void DwarfDebug::recordSourceLine(unsigned Line, unsigned Col, const MDNode *S, argument
1628 Asm->OutStreamer.EmitDwarfLocDirective(Src, Line, Col, Flags, 0,
/external/clang/include/clang/Frontend/
H A DASTUnit.h594 unsigned Line, unsigned Col) const;
/external/clang/lib/Frontend/
H A DASTUnit.cpp2676 unsigned Line, unsigned Col) const {
2678 SourceLocation Loc = SM.translateFileLineCol(File, Line, Col);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2350 unsigned Line = Record[0], Col = Record[1]; local
2356 LastLoc = DebugLoc::get(Line, Col, Scope, IA);

Completed in 1992 milliseconds