Searched refs:Pos (Results 76 - 95 of 95) sorted by relevance

1234

/external/clang/lib/Frontend/
H A DASTUnit.cpp2231 llvm::StringMap<unsigned>::iterator Pos local
2233 if (Pos != CachedCompletionTypes.end() && Pos->second == C->Type)
/external/clang/lib/Basic/
H A DSourceManager.cpp1242 unsigned *Pos local
1244 unsigned LineNo = Pos-SourceLineCacheStart;
/external/libvpx/vp8/common/x86/
H A Dpostproc_mmx.asm492 mov rsi, arg(0) ;Pos
H A Dpostproc_sse2.asm657 mov rsi, arg(0) ;Pos
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp690 MachineBasicBlock::iterator Pos = DefMI; local
691 MBB->insert(Pos, NewMI);
/external/clang/include/clang/Basic/
H A DDiagnostic.h574 /// @c Pos represents the source location associated with the diagnostic,
576 inline DiagnosticBuilder Report(SourceLocation Pos, unsigned DiagID);
/external/clang/include/clang/Serialization/
H A DASTReader.h1472 llvm::DenseMap<IdentifierInfo *, uint64_t>::iterator Pos);
/external/clang/lib/Sema/
H A DSemaLookup.cpp2828 ShadowMap::iterator Pos = SM->find(ND->getDeclName()); local
2829 if (Pos == SM->end())
2832 for (ShadowMapEntry::iterator I = Pos->second.begin(),
2833 IEnd = Pos->second.end();
H A DSemaDeclCXX.cpp10762 llvm::DenseMap<CXXRecordDecl *, bool>::iterator Pos local
10765 if (Pos != VTablesUsed.end()) {
10766 if (!Pos->second && VTables[I].DefinitionRequired)
10767 Pos->second = true;
10791 Pos = VTablesUsed.insert(std::make_pair(Class, DefinitionRequired)); local
10792 if (!Pos.second) {
10796 if (DefinitionRequired && !Pos.first->second) {
10797 Pos.first->second = true;
H A DSemaExprObjC.cpp957 llvm::DenseMap<Selector, SourceLocation>::iterator Pos local
959 if (Pos == ReferencedSelectors.end())
H A DSemaTemplateDeduction.cpp2681 Pos = SuppressedDiagnostics.find(Specialization->getCanonicalDecl()); local
2682 if (Pos == SuppressedDiagnostics.end())
H A DSemaExpr.cpp151 Pos = SuppressedDiagnostics.find(D->getCanonicalDecl()); local
152 if (Pos != SuppressedDiagnostics.end()) {
153 SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second;
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp634 ID.Add(Pos);
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp728 // Insert a node into the DAG at least before the Pos node's position. This
730 // the Pos node's ID. Note that this does *not* preserve the uniqueness of node
733 static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) { argument
735 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
736 DAG.RepositionNode(Pos.getNode(), N.getNode());
737 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
H A DX86ISelLowering.cpp3175 /// from position Pos and ending in Pos+Size, falls within the specified
3176 /// sequential range (L, L+Pos]. or is undef.
3178 int Pos, int Size, int Low) {
3179 for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3177 isSequentialOrUndefInRange(ArrayRef<int> Mask, int Pos, int Size, int Low) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp431 MachineBasicBlock::iterator Pos = CopyUseMI; local
432 EntryMBB->insertAfter(Pos, NewMI);
H A DSelectionDAGBuilder.cpp2807 // begining from position Pos and ending in Pos+Size, falls within the
2808 // specified sequential range [L, L+Pos). or is undef.
2810 unsigned Pos, unsigned Size, int Low) {
2811 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
2809 isSequentialInRange(const SmallVectorImpl<int> &Mask, unsigned Pos, unsigned Size, int Low) argument
/external/llvm/lib/Target/ARM/Disassembler/
H A DARMDisassembler.cpp758 for (unsigned Pos = 3, e = NumTZ; Pos > e; --Pos) {
759 bool T = ((Mask >> Pos) & 1) == CondBit0;
/external/clang/lib/AST/
H A DExprConstant.cpp4368 StringRef::size_type Pos = Str.find(0); local
4369 if (Pos != StringRef::npos)
4370 Str = Str.substr(0, Pos);
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas6460 DollarIndex := Pos('$',OpName) - 1; // Delphi strings are 1-based

Completed in 603 milliseconds

1234