Searched refs:First (Results 1 - 25 of 89) sorted by relevance

1234

/freebsd-9.3-release/usr.bin/calendar/calendars/
H A Dcalendar.computer16 01/10 First CDC 1604 delivered to Navy, 1960
20 01/25 First U.S. meeting of ALGOL definition committee, 1958
24 02/14 First micro-on-a-chip patented (TI), 1978
26 03/01 First NPL (later PL/I) report published, 1964
27 03/04 First Cray-1 shipped to Los Alamos
39 05/01 First BASIC program run at Dartmouth, 1964
40 05/16 First report on SNOBOL distributed (within BTL), 1963
44 05/27 First joint meeting of U.S. and European ALGOL definition cte., 1958
45 05/28 First meeting of COBOL definition cte. (eventually CODASYL), 1959
47 06/02 First issu
[all...]
H A Dcalendar.christian13 Easter-46 Ash Wednesday (First day of Lent)
25 11/SunLast First Sunday of Advent (4th Sunday before Christmas)
26 12/SunFirst First Sunday of Advent (4th Sunday before Christmas)
29 12/25 Christmastide begins: First day of Christmas
H A Dcalendar.history13 01/01 First Rose Bowl; Michigan 49 - Stanford 0, 1902
21 01/10 First meeting of United Nations General Assembly in London, 1946
38 01/28 First ski tow, Woodstock VT, 1914
47 02/01 First TV soap: Secret Storm, 1954
65 02/21 First telephone directory, New Haven, Connecticut, 1878
74 03/04 First meeting of Congress, 1789, in N.Y.C.
116 04/18 First Laundromat opens, Fort Worth Texas, 1934
158 05/29 First food stamps issued, 1961
164 06/06 First drive-in movie, 1933
203 07/06 First `talki
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPPCallbacks.h322 PPCallbacks *First, *Second; member in class:clang::PPChainedCallbacks
326 : First(_First), Second(_Second) {}
329 delete First;
335 First->FileChanged(Loc, Reason, FileType, PrevFID);
342 First->FileSkipped(ParentFile, FilenameTok, FileType);
348 return First->FileNotFound(FileName, RecoveryPath) ||
361 First->InclusionDirective(HashLoc, IncludeTok, FileName, IsAngled,
372 First->moduleImport(ImportLoc, Path, Imported);
377 First->EndOfMainFile();
382 First
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclFriend.cpp68 Decl *First = data().FirstFriend.get(Source); local
69 return First ? cast<FriendDecl>(First) : 0;
H A DNestedNameSpecifier.cpp350 NestedNameSpecifierLoc First = *this;
351 while (NestedNameSpecifierLoc Prefix = First.getPrefix())
352 First = Prefix;
354 return SourceRange(First.getLocalSourceRange().getBegin(),
H A DAPValue.cpp489 bool First = true; local
495 if (!First)
498 First = false;
503 if (!First)
508 First = false;
/freebsd-9.3-release/sys/contrib/dev/acpica/compiler/
H A Daslbtypes.c287 BOOLEAN First = TRUE; local
302 if (!First)
306 First = FALSE;
314 if (!First)
318 First = FALSE;
325 if (!First)
329 First = FALSE;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Format/
H A DTokenAnnotator.h41 : First(Line.Tokens.front().Tok), Level(Line.Level),
50 First->Previous = NULL;
51 FormatToken *Current = First;
78 FormatToken *First; member in class:clang::format::AnnotatedLine
H A DFormat.cpp408 TheLine->First->is(tok::kw_if)) {
411 TheLine->First->isOneOf(tok::kw_for, tok::kw_while)) {
413 } else if (TheLine->InPPDirective && (TheLine->First->HasUnescapedNewline ||
414 TheLine->First->IsFirst)) {
427 if (!I[1]->InPPDirective || I[1]->First->HasUnescapedNewline)
429 if (I + 2 != E && I[2]->InPPDirective && !I[2]->First->HasUnescapedNewline)
442 I[1]->First->is(tok::l_brace))
445 (I[1]->InPPDirective && I[1]->First->HasUnescapedNewline))
452 if (I[1]->First->isOneOf(tok::semi, tok::kw_if, tok::kw_for,
454 I[1]->First
783 const FormatToken *First = TheLine.First; local
805 const FormatToken *First = TheLine.First; local
[all...]
H A DTokenAnnotator.cpp34 : Style(Style), Line(Line), CurrentToken(Line.First),
66 Line.First->isNot(tok::kw_template))
332 Line.First->Type == TT_ObjCMethodSpecifier) {
346 } else if (Contexts.size() == 1 && Line.First->isNot(tok::kw_enum)) {
423 if (Line.First->is(tok::kw_for) &&
517 if (Line.First->Type == TT_ObjCMethodSpecifier) {
593 !Line.First->isOneOf(tok::kw_template, tok::kw_using) &&
866 ExpressionParser(AnnotatedLine &Line) : Current(Line.First) {
1020 if (NextNonCommentLine && (*I)->First->is(tok::comment) &&
1021 (*I)->First
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp80 Record *First = 0, *Last = 0; local
84 First = Last = Base;
106 if (!First && Result.first)
107 First = Result.first;
114 if (!First)
115 First = R;
122 if (First) {
128 OS << Base->getName() << ", " << First->getName() << ", "
132 return std::make_pair(First, Last);
145 << macroName(Root.getName()) << "_RANGE(Base, First, Las
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DInterferenceCache.cpp135 BI->First = BI->Last = SlotIndex();
145 if (!BI->First.isValid() || StartI < BI->First)
146 BI->First = StartI;
158 if (!BI->First.isValid() || StartI < BI->First)
159 BI->First = StartI;
165 SlotIndex Limit = BI->First.isValid() ? BI->First : Stop;
170 BI->First
[all...]
H A DInterferenceCache.h34 SlotIndex First; member in struct:llvm::InterferenceCache::BlockInterference
207 return Current->First.isValid();
213 return Current->First;
H A DStackColoring.cpp735 // This is a simple greedy algorithm for merging allocas. First, sort the
759 LiveInterval *First = Intervals[FirstSlot]; local
761 assert (!First->empty() && !Second->empty() && "Found an empty range");
764 if (!First->overlaps(*Second)) {
766 First->MergeSegmentsInAsValue(*Second, First->getValNumInfo(0));
/freebsd-9.3-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonRemoveSZExtArgs.cpp71 Instruction* First = F.getEntryBlock().begin(); local
72 SI->insertBefore(First);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h220 bool First; member in class:clang::ento::StoreManager::FindUniqueBinding
223 FindUniqueBinding(SymbolRef sym) : Sym(sym), Binding(0), First(true) {}
227 LLVM_EXPLICIT operator bool() { return First && Binding; }
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DPreprocessingRecord.cpp210 First = PreprocessedEntities.begin(); local
219 I = First;
223 First = I;
224 ++First;
230 return First - PreprocessedEntities.begin();
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclTemplate.h1730 ClassTemplatePartialSpecializationDecl *First = local
1732 return First->InstantiatedFromMember.getPointer();
1737 ClassTemplatePartialSpecializationDecl *First = local
1739 First->InstantiatedFromMember.setPointer(PartialSpec);
1759 ClassTemplatePartialSpecializationDecl *First = local
1761 return First->InstantiatedFromMember.getInt();
1766 ClassTemplatePartialSpecializationDecl *First = local
1768 assert(First->InstantiatedFromMember.getPointer() &&
1770 return First->InstantiatedFromMember.setInt(true);
2589 VarTemplatePartialSpecializationDecl *First local
2596 VarTemplatePartialSpecializationDecl *First = local
2618 VarTemplatePartialSpecializationDecl *First = local
2625 VarTemplatePartialSpecializationDecl *First = local
[all...]
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A Dilist.h502 NodeTy *First = &*first, *Prev = this->getPrev(First); local
516 this->setNext(PosPrev, First);
518 Head = First;
519 this->setPrev(First, PosPrev);
525 this->transferNodesFromList(L2, First, PosNext);
/freebsd-9.3-release/contrib/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc126 // First check symbols added via AddSymbol().
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h254 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
255 APInt First; member in struct:llvm::SelectionDAGBuilder::JumpTableHeader
280 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
282 APInt First; member in struct:llvm::SelectionDAGBuilder::BitTestBlock
631 void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp299 bool First = true; local
301 if (First)
302 First = false;
/freebsd-9.3-release/contrib/llvm/tools/clang/tools/driver/
H A Dcc1as_main.cpp196 bool First = true; local
198 ie = Args->filtered_end(); it != ie; ++it, First=false) {
200 if (First)
/freebsd-9.3-release/sys/boot/i386/btx/btxldr/
H A Dbtxldr.S94 leal 0x4(%esp),%ebx # First argument

Completed in 317 milliseconds

1234