Home
last modified time | relevance | path

Searched refs:References (Results 1 – 25 of 142) sorted by relevance

123456

/openbsd-src/gnu/llvm/clang/lib/Format/
H A DSortJavaScriptImports.cpp150 SmallVector<JsModuleReference, 16> References; in analyze() local
152 std::tie(References, FirstNonImportLine) = in analyze()
155 if (References.empty()) in analyze()
159 SourceRange InsertionPoint = References[0].Range; in analyze()
160 InsertionPoint.setEnd(References[References.size() - 1].Range.getEnd()); in analyze()
162 References = sortModuleReferences(References); in analyze()
165 for (unsigned I = 0, E = References.size(); I != E; ++I) { in analyze()
166 JsModuleReference Reference = References[I]; in analyze()
174 (Reference.IsExport != References[I + 1].IsExport || in analyze()
175 Reference.Category != References[I + 1].Category)) { in analyze()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVLine.cpp69 void LVLine::markMissingParents(const LVLines *References, in markMissingParents() argument
71 if (!(References && Targets)) in markMissingParents()
76 for (const LVLine *Reference : *References) in markMissingParents()
86 for (LVLine *Reference : *References) { in markMissingParents()
124 bool LVLine::equals(const LVLines *References, const LVLines *Targets) { in equals() argument
125 if (!References && !Targets) in equals()
127 if (References && Targets && References->size() == Targets->size()) { in equals()
128 for (const LVLine *Reference : *References) in equals()
H A DLVSymbol.cpp283 void LVSymbol::markMissingParents(const LVSymbols *References, in markMissingParents() argument
285 if (!(References && Targets)) in markMissingParents()
290 for (const LVSymbol *Reference : *References) in markMissingParents()
300 for (LVSymbol *Reference : *References) { in markMissingParents()
335 bool LVSymbol::parametersMatch(const LVSymbols *References, in parametersMatch() argument
337 if (!References && !Targets) in parametersMatch()
339 if (References && Targets) { in parametersMatch()
341 getParameters(References, &ReferenceParams); in parametersMatch()
371 bool LVSymbol::equals(const LVSymbols *References, const LVSymbols *Targets) { in equals() argument
372 if (!References && !Targets) in equals()
[all …]
H A DLVType.cpp173 void LVType::markMissingParents(const LVTypes *References, in markMissingParents() argument
175 if (!(References && Targets)) in markMissingParents()
180 for (const LVType *Reference : *References) in markMissingParents()
190 for (LVType *Reference : *References) { in markMissingParents()
225 bool LVType::parametersMatch(const LVTypes *References, in parametersMatch() argument
227 if (!References && !Targets) in parametersMatch()
229 if (References && Targets) { in parametersMatch()
232 getParameters(References, &ReferenceTypes, &ReferenceScopes); in parametersMatch()
275 bool LVType::equals(const LVTypes *References, const LVTypes *Targets) { in equals() argument
276 if (!References && !Targets) in equals()
[all …]
H A DLVScope.cpp308 LVSymbols References; in addMissingElements() local
309 References.append(ReferenceSymbols->begin(), ReferenceSymbols->end()); in addMissingElements()
324 RemoveSymbol(References, Symbol->getReference()); in addMissingElements()
328 if (References.size()) { in addMissingElements()
335 for (LVSymbol *Reference : References) { in addMissingElements()
903 void LVScope::markMissingParents(const LVScopes *References, in markMissingParents() argument
906 if (!(References && Targets)) in markMissingParents()
911 for (const LVScope *Reference : *References) in markMissingParents()
925 for (LVScope *Reference : *References) { in markMissingParents()
972 bool LVScope::equals(const LVScopes *References, const LVScopes *Targets) { in equals() argument
[all …]
H A DLVCompare.cpp198 auto FindMatch = [&](auto &References, auto &Targets, in execute()
201 for (LVElement *Reference : References) { in execute()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DIntervalTree.h305 IntervalReferences References; variable
399 if (References[Index]->contains(MiddlePoint)) { in createTree()
400 IntervalsLeft[IntervalsSize] = References[Index]; in createTree()
401 IntervalsRight[IntervalsSize] = References[Index]; in createTree()
406 std::swap(References[Index], References[ReferencesRightIndex]); in createTree()
408 std::swap(References[ReferencesRightIndex], in createTree()
409 References[ReferencesSize]); in createTree()
413 if (References[Index]->left() > MiddlePoint) { in createTree()
415 std::swap(References[Index], References[ReferencesRightIndex]); in createTree()
655 References.push_back(std::addressof(Data)); in create()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugCrossExSubsection.h40 Iterator begin() const { return References.begin(); } in begin()
41 Iterator end() const { return References.end(); } in end()
44 FixedStreamArray<CrossModuleExport> References;
H A DDebugCrossImpSubsection.h63 Iterator begin() const { return References.begin(); }
64 Iterator end() const { return References.end(); }
67 ReferenceArray References;
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVSymbol.h163 static bool parametersMatch(const LVSymbols *References,
171 static void markMissingParents(const LVSymbols *References,
179 static bool equals(const LVSymbols *References, const LVSymbols *Targets);
H A DLVLine.h92 static void markMissingParents(const LVLines *References,
100 static bool equals(const LVLines *References, const LVLines *Targets);
H A DLVType.h117 static bool parametersMatch(const LVTypes *References,
126 static void markMissingParents(const LVTypes *References,
134 static bool equals(const LVTypes *References, const LVTypes *Targets);
H A DLVScope.h287 static void markMissingParents(const LVScopes *References,
304 static bool equals(const LVScopes *References, const LVScopes *Targets);
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossExSubsection.cpp27 return Reader.readArray(References, Size); in initialize()
H A DDebugCrossImpSubsection.cpp46 return Reader.readArray(References, Reader.bytesRemaining()); in initialize()
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlref.pod27 L</"Circular References"> for a detailed explanation.)
48 References are easy to use in Perl. There is just one overriding
54 =head2 Making References
57 References can be created in several ways.
212 References are often returned by special subroutines called constructors. Perl
243 References of the appropriate type can spring into existence if you
313 =head2 Using References
472 =head2 Circular References
724 available. It behaves as described in L</Using References>, but instead
783 =head2 Assigning to References
59 Backslash OperatorDESCRIPTION""Making References global() argument
81 Square BracketsDESCRIPTION""Making References global() argument
108 Curly BracketsDESCRIPTION""Making References global() argument
151 Anonymous SubroutinesDESCRIPTION""Making References global() argument
209 ConstructorsDESCRIPTION""Making References global() argument
240 AutovivificationDESCRIPTION""Making References global() argument
247 Typeglob SlotsDESCRIPTION""Making References global() argument
320 Simple ScalarDESCRIPTION""Using References global() argument
343 BlockDESCRIPTION""Using References global() argument
379 Arrow NotationDESCRIPTION""Using References global() argument
416 ObjectsDESCRIPTION""Using References global() argument
426 Miscellaneous UsageDESCRIPTION""Using References global() argument
[all...]
H A Dperlpodstyle.pod18 be in CE<lt>E<gt>. References to other man pages should be in the form
27 References to other programs or functions are normally in the form of man
30 to clutter your documentation with too much markup. References to other
H A Dperlreftut.pod72 References in Perl are like names for arrays and hashes. They're
95 =head2 Making References
150 =head2 Using References
507 The original title was I<Understand References Today>.
/openbsd-src/usr.bin/m4/
H A DNOTES15 References:
/openbsd-src/gnu/llvm/llvm/docs/Proposals/
H A DVectorPredication.rst81 References chapter
/openbsd-src/gnu/usr.bin/perl/Cross/
H A DREADME83 References
/openbsd-src/gnu/gcc/gcc/config/s390/
H A D2064.md24 ;; References:
/openbsd-src/gnu/llvm/llvm/docs/HistoricalNotes/
H A D2002-06-25-MegaPatchInfo.txt63 * References are used much more throughout the code base. In general, if a
/openbsd-src/gnu/gcc/gcc/config/mips/
H A D4k.md5 ;; References:
/openbsd-src/gnu/llvm/clang/docs/HLSL/
H A DHLSLSupport.rst145 Pointers & References
231 * References

123456