Home
last modified time | relevance | path

Searched refs:First (Results 1 – 25 of 376) sorted by relevance

12345678910>>...16

/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DSelectorExtras.h20 const char *First, in getKeywordSelectorImpl() argument
23 II.push_back(&Ctx.Idents.get(First)); in getKeywordSelectorImpl()
32 const char *First = va_arg(argp, const char *); in getKeywordSelector() local
33 assert(First && "keyword selectors must have at least one argument"); in getKeywordSelector()
34 return getKeywordSelectorImpl(Ctx, First, argp); in getKeywordSelector()
39 const char *First, ...) { in getKeywordSelector() argument
41 va_start(argp, First); in getKeywordSelector()
42 Selector result = getKeywordSelectorImpl(Ctx, First, argp); in getKeywordSelector()
49 const char *First, ...) { in lazyInitKeywordSelector() argument
53 va_start(argp, First); in lazyInitKeywordSelector()
[all …]
/minix3/usr.bin/calendar/calendars/
H A Dcalendar.computer8 01/10 First CDC 1604 delivered to Navy, 1960
13 01/24 First Apple Macintosh released, 1984
14 01/25 First U.S. meeting of ALGOL definition committee, 1958
18 02/14 First micro-on-a-chip patented (TI), 1978
20 03/01 First NPL (later PL/I) report published, 1964
21 03/04 First Cray-1 shipped to Los Alamos, 1976
36 05/01 First BASIC program run at Dartmouth, 1964
37 05/16 First report on SNOBOL distributed (within BTL), 1963
40 05/27 First joint meeting of U.S. and European ALGOL definition cte., 1958
41 05/28 First meeting of COBOL definition cte. (eventually CODASYL), 1959
[all …]
H A Dcalendar.history22 01/10 First meeting of United Nations General Assembly in London, 1946
31 01/13 First live radio concert broadcast, by Enrico Caruso,
39 01/16 First Persian Gulf War begins, 1991
44 01/18 First Australian penal colony established, 1788
46 01/19 First college basketball game played, Chicago beats Iowa 15-12, 1896
49 01/21 First commercial flight of Concorde SST, 1976
51 01/22 First British colonists arrive in New Zealand, 1840
52 01/22 First Russian Revolution begins, 1905
55 01/23 First insulin injection for diabetes, 1922
61 01/25 First Winter Olympics held in Charmonix, 1924
[all …]
H A Dcalendar.judaic4 04/23* Pesach (First Day of Passover; sabbatical)
15 10/03* First Day of Rosh Hashanah (Jewish Lunar New Year; 5767 == 2006;
26 12/06* First Day of Chanukah
H A Dcalendar.christian3 02/10* Ash Wednesday (First day of Lent)
15 11/29* First Sunday of Advent (4th Sunday before Christmas)
/minix3/external/bsd/llvm/dist/clang/lib/Format/
H A DUnwrappedLineFormatter.cpp22 const FormatToken *Next = Line.First->getNextNonComment(); in startsExternCBlock()
24 return Line.First->is(tok::kw_extern) && Next && Next->isStringLiteral() && in startsExternCBlock()
53 if (I + 1 == E || I[1]->Type == LT_Invalid || I[1]->First->MustBreakBefore) in tryFitMultipleLinesInOne()
61 I[1]->First->is(tok::r_brace)) || in tryFitMultipleLinesInOne()
66 TheLine->First != TheLine->Last) { in tryFitMultipleLinesInOne()
74 if (I[1]->First->is(TT_FunctionLBrace) && in tryFitMultipleLinesInOne()
94 if (TheLine->First->is(tok::kw_if)) { in tryFitMultipleLinesInOne()
99 if (TheLine->First->isOneOf(tok::kw_for, tok::kw_while)) { in tryFitMultipleLinesInOne()
104 if (TheLine->First->isOneOf(tok::kw_case, tok::kw_default)) { in tryFitMultipleLinesInOne()
110 (TheLine->First->HasUnescapedNewline || TheLine->First->IsFirst)) { in tryFitMultipleLinesInOne()
[all …]
H A DTokenAnnotator.h42 : First(Line.Tokens.front().Tok), Level(Line.Level), in AnnotatedLine()
52 First->Previous = nullptr; in AnnotatedLine()
53 FormatToken *Current = First; in AnnotatedLine()
80 FormatToken *First; variable
H A DFormat.cpp665 SmallVectorImpl<FormatToken *>::const_iterator First = in tryMergeTokens() local
667 if (!First[0]->is(Kinds[0])) in tryMergeTokens()
671 if (!First[i]->is(Kinds[i]) || First[i]->WhitespaceRange.getBegin() != in tryMergeTokens()
672 First[i]->WhitespaceRange.getEnd()) in tryMergeTokens()
674 AddLength += First[i]->TokenText.size(); in tryMergeTokens()
677 First[0]->TokenText = StringRef(First[0]->TokenText.data(), in tryMergeTokens()
678 First[0]->TokenText.size() + AddLength); in tryMergeTokens()
679 First[0]->ColumnWidth += AddLength; in tryMergeTokens()
1140 Line->LeadingEmptyLinesAffected = affectsLeadingEmptyLines(*Line->First); in computeAffectedLines()
1147 while (PPEnd != E && !(*PPEnd)->First->HasUnescapedNewline) { in computeAffectedLines()
[all …]
H A DTokenAnnotator.cpp36 : Style(Style), Line(Line), CurrentToken(Line.First), AutoFound(false), in AnnotatingParser()
83 Line.First->isNot(tok::kw_template)) in parseAngle()
412 Line.First->isNot(tok::kw_case)) { in consumeToken()
417 Line.First->is(TT_ObjCMethodSpecifier)) { in consumeToken()
431 !Line.First->isOneOf(tok::kw_enum, tok::kw_case)) { in consumeToken()
460 !Contexts.back().IsExpression && Line.First->isNot(TT_ObjCProperty) && in consumeToken()
518 if (Line.First->is(tok::kw_for) && Tok->is(Keywords.kw_in) && in consumeToken()
653 if (Line.First->is(TT_ObjCMethodSpecifier)) { in parseLine()
749 !Line.First->isOneOf(tok::kw_template, tok::kw_using, in modifyContext()
1122 : Style(Style), Keywords(Keywords), Current(Line.First) {} in ExpressionParser()
[all …]
/minix3/external/bsd/llvm/dist/clang/include/clang/Lex/
H A DPPCallbacks.h325 std::unique_ptr<PPCallbacks> First, Second; variable
330 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks()
335 First->FileChanged(Loc, Reason, FileType, PrevFID); in FileChanged()
342 First->FileSkipped(ParentFile, FilenameTok, FileType); in FileSkipped()
348 return First->FileNotFound(FileName, RecoveryPath) || in FileNotFound()
357 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled, in InclusionDirective()
367 First->moduleImport(ImportLoc, Path, Imported); in moduleImport()
372 First->EndOfMainFile(); in EndOfMainFile()
377 First->Ident(Loc, str); in Ident()
383 First->PragmaComment(Loc, Kind, Str); in PragmaComment()
[all …]
/minix3/common/dist/zlib/contrib/ada/
H A Dzlib.adb218 Filter.Offset := Simple_GZip_Header'First;
277 In_First := In_Buffer'First;
286 Flush => Flush_Finish (Last < In_Buffer'First));
288 if Out_Buffer'First <= Out_Last then
289 Data_Out (Out_Buffer (Out_Buffer'First .. Out_Last));
403 Item_First : Ada.Streams.Stream_Element_Offset := Item'First;
407 pragma Assert (Rest_First in Buffer'First .. Buffer'Last + 1);
408 pragma Assert (Rest_Last in Buffer'First - 1 .. Buffer'Last);
411 if Rest_Last = Buffer'First - 1 then
416 Rest_First := Buffer'First;
[all …]
H A Dread.adb87 Item'First + File_Size - Offset);
89 for J in Item'First .. Last loop
90 if J < Item'First + Period then
141 Pack_Size := Pack_Size + Last - Buffer'First + 1;
H A Dmtest.adb98 Last := Item'First + Buff_Diff;
99 Item (Item'First .. Last) := Buffer (Buffer_First .. Buffer'Last);
120 Buffer_First := Buffer'First;
121 Compare_First := Buffer'First;
/minix3/external/bsd/llvm/dist/clang/test/SemaCXX/
H A Dwarn-infinite-recursion.cpp117 template<int First, int Last>
119 if (First + 1 == Last) { in DoStuff()
124 DoStuff<First, (First + Last)/2>(); in DoStuff()
125 DoStuff<(First + Last)/2, Last>(); in DoStuff()
/minix3/external/bsd/bind/dist/bin/tests/system/tsiggss/ns1/
H A Dexample.nil.db.in24 _gc._tcp.Default-First-Site-Name._sites IN SRV 0 100 3268 blu
26 _ldap._tcp.Default-First-Site-Name._sites.gc._msdcs IN SRV 0 100 3268 blu
33 _ldap._tcp.Default-First-Site-Name._sites IN SRV 0 100 389 blu
34 _ldap._tcp.Default-First-Site-Name._sites.dc._msdcs IN SRV 0 100 389 blu
39 _kerberos._tcp.Default-First-Site-Name._sites IN SRV 0 100 88 blu
40 _kerberos._tcp.Default-First-Site-Name._sites.dc._msdcs IN SRV 0 100 88 blu
/minix3/external/bsd/llvm/dist/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp80 Record *First = nullptr, *Last = nullptr; in EmitNode() local
84 First = Last = Base; in EmitNode()
106 if (!First && Result.first) in EmitNode()
107 First = Result.first; in EmitNode()
114 if (!First) in EmitNode()
115 First = R; in EmitNode()
122 if (First) { in EmitNode()
128 OS << Base->getName() << ", " << First->getName() << ", " in EmitNode()
132 return std::make_pair(First, Last); in EmitNode()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/
H A DInterferenceCache.cpp152 BI->First = BI->Last = SlotIndex(); in update()
162 if (!BI->First.isValid() || StartI < BI->First) in update()
163 BI->First = StartI; in update()
175 if (!BI->First.isValid() || StartI < BI->First) in update()
176 BI->First = StartI; in update()
182 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop; in update()
187 BI->First = RegMaskSlots[i]; in update()
192 if (BI->First.isValid()) in update()
H A DInterferenceCache.h34 SlotIndex First; member
217 return Current->First.isValid(); in hasInterference()
223 return Current->First; in first()
/minix3/sys/external/bsd/compiler_rt/dist/lib/profile/
H A DInstrProfilingPlatformOther.c43 #define UPDATE_FIRST(First, New) \ in __llvm_profile_register_function() argument
44 First = New < First ? New : First in __llvm_profile_register_function()
/minix3/external/bsd/llvm/dist/clang/lib/Tooling/
H A DArgumentsAdjusters.cpp79 ArgumentsAdjuster combineAdjusters(ArgumentsAdjuster First, in combineAdjusters() argument
81 return [First, Second](const CommandLineArguments &Args) { in combineAdjusters()
82 return Second(First(Args)); in combineAdjusters()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DDeclFriend.cpp64 Decl *First = data().FirstFriend.get(Source); in getFirstFriend() local
65 return First ? cast<FriendDecl>(First) : nullptr; in getFirstFriend()
/minix3/external/bsd/llvm/dist/clang/unittests/Sema/
H A DExternalSemaSourceTest.cpp212 NamespaceTypoProvider First("XXX", "BBB"); in TEST() local
216 Installer->PushSource(&First); in TEST()
223 ASSERT_LE(1, First.CallCount); in TEST()
251 CompleteTypeDiagnoser First(false); in TEST() local
254 Installer->PushSource(&First); in TEST()
261 ASSERT_EQ(1, First.CallCount); in TEST()
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Utils/
H A DAddDiscriminators.cpp183 Instruction *First = Succ->getFirstNonPHIOrDbgOrLifetime(); in runOnFunction() local
184 DebugLoc FirstLoc = First->getDebugLoc(); in runOnFunction()
206 for (BasicBlock::iterator I1(*First), E1 = Succ->end(); I1 != E1; in runOnFunction()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonRemoveSZExtArgs.cpp72 Instruction* First = F.getEntryBlock().begin(); in runOnFunction() local
73 SI->insertBefore(First); in runOnFunction()
/minix3/external/bsd/llvm/dist/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dexamples.cpp129 namespace First namespace
145 typedef First::Bar<Second::Foo> Special;
148 First namespace

12345678910>>...16