HomeSort by relevance Sort by last modified time
    Searched defs:Pos (Results 26 - 50 of 75) sorted by null

12 3

  /external/clang/lib/Lex/
Preprocessor.cpp 796 std::vector<CommentHandler *>::iterator Pos
798 assert(Pos != CommentHandlers.end() && "Comment handler not registered");
799 CommentHandlers.erase(Pos);
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 274 FullSourceLoc Pos = P.getLocation().asLocation();
276 if (!Pos.isValid())
280 assert(&Pos.getManager() == &SM && "SourceManagers are different!");
281 std::pair<FileID, unsigned> LPosInfo = SM.getDecomposedExpansionLoc(Pos);
292 const char *TokInstantiationPtr =Pos.getExpansionLoc().getCharacterData();
  /external/llvm/lib/CodeGen/
TargetInstrInfo.cpp 395 MachineBasicBlock::iterator Pos = MI;
399 storeRegToStackSlot(*MBB, Pos, MO.getReg(), MO.isKill(), FI, RC, TRI);
401 loadRegFromStackSlot(*MBB, Pos, MO.getReg(), FI, RC, TRI);
402 return --Pos;
MachineLICM.cpp     [all...]
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 738 // Relative pos from now on in field packer
739 unsigned Pos = 0;
756 if (FieldOffset > Pos) {
759 << (FieldOffset - Pos) << ");";
773 Pos = FieldOffset + FieldAllocSize;
777 if (RSExportType::GetTypeAllocSize(ERT) > Pos) {
780 << RSExportType::GetTypeAllocSize(ERT) - Pos << ");";
slang_rs_reflection.cpp     [all...]
  /external/chromium_org/third_party/jinja2/
nodes.py 39 '+': operator.pos,
791 class Pos(UnaryExpr):
  /external/chromium_org/third_party/zlib/
deflate.h 86 typedef ush Pos;
87 typedef Pos FAR Posf;
90 /* A Pos is an index in the character window. We use short instead of int to
  /external/clang/lib/AST/
CommentParser.cpp 42 Position Pos;
45 return Pos.CurToken >= Toks.size();
51 const Token &Tok = Toks[Pos.CurToken];
53 Pos.BufferStart = Tok.getText().begin();
54 Pos.BufferEnd = Tok.getText().end();
55 Pos.BufferPtr = Pos.BufferStart;
56 Pos.BufferStartLoc = Tok.getLocation();
60 const unsigned CharNo = Pos.BufferPtr - Pos.BufferStart
    [all...]
DeclBase.cpp 1088 StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName());
1089 assert(Pos != Map->end() && "no lookup entry for decl");
1090 if (Pos->second.getAsVector() || Pos->second.getAsDecl() == ND)
1091 Pos->second.remove(ND);
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 155 DiagStatePointsTy::iterator Pos = DiagStatePoints.end();
159 Pos = std::upper_bound(DiagStatePoints.begin(), DiagStatePoints.end(),
161 --Pos;
162 return Pos;
208 DiagStatePointsTy::iterator Pos = GetDiagStatePointForLoc(Loc);
209 assert(Pos != DiagStatePoints.end());
213 I = Pos+1, E = DiagStatePoints.end(); I != E; ++I) {
218 if (Pos->Loc == Loc) {
225 Pos->Loc.isBeforeInTranslationUnitThan(Loc);
226 DiagStates.push_back(*Pos->State)
    [all...]
DiagnosticIDs.cpp 411 Pos = Diag.GetDiagStatePointForLoc(Loc);
412 DiagnosticsEngine::DiagState *State = Pos->State;
  /external/clang/lib/Sema/
Sema.cpp 455 llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator Pos
457 if (Pos != WeakUndeclaredIdentifiers.end())
    [all...]
  /external/libvpx/libvpx/vp8/common/
postproc.c 525 unsigned char *Pos = Start + i * Pitch;
530 if (Pos[j] < blackclamp[0])
531 Pos[j] = blackclamp[0];
533 if (Pos[j] > 255 + whiteclamp[0])
534 Pos[j] = 255 + whiteclamp[0];
536 Pos[j] += Ref[j];
    [all...]
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 155 unsigned Pos = 16 + Constraint * 4;
156 return (int)(OpInfo[OpNum].Constraints >> Pos) & 0xf;
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 436 int Pos = -1) {
438 if (Pos == -1)
441 Members[Pos] = NI;
465 std::vector<std::string>::iterator &Pos) {
475 Pos = MI;
521 int Pos = Ret.size();
527 InsertPos = Pos;
529 InsertPos = Pos + 1;
568 int Pos = InsertPos;
571 I != E; ++I, ++Pos) {
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp     [all...]
  /external/lzma/CPP/7zip/UI/Common/
Update.cpp 61 UInt64 Pos;
131 subStream.Pos = 0;
150 if (_offsetPos != subStream.Pos)
155 subStream.Pos = _offsetPos;
158 UInt32 curSize = (UInt32)MyMin((UInt64)size, volSize - subStream.Pos);
163 subStream.Pos += realProcessed;
172 if (subStream.Pos == volSize)
393 int pos; local
394 if (!NFile::NDirectory::MyGetFullPathName(archivePath.GetFinalPath(), resultPath, pos))
396 NFile::NDirectory::CreateComplexDirectory(resultPath.Left(pos));
    [all...]
  /external/lzma/Java/SevenZip/
LzmaBench.java 59 int Pos;
69 Pos = 0;
90 while (Pos < BufferSize)
92 if (GetRndBit() == 0 || Pos < 1)
93 Buffer[Pos++] = (byte)(RG.GetRnd(8));
103 while (Rep0 >= Pos);
107 for (int i = 0; i < len && Pos < BufferSize; i++, Pos++)
108 Buffer[Pos] = Buffer[Pos - Rep0];
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
deflate.h 86 typedef ush Pos;
87 typedef Pos FAR Posf;
90 /* A Pos is an index in the character window. We use short instead of int to
  /external/zlib/src/
deflate.h 89 typedef ush Pos;
90 typedef Pos FAR Posf;
93 /* A Pos is an index in the character window. We use short instead of int to
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js 445 addWidget: function(pos, node, scroll, vert, horiz) { },
446 charCoords: function(pos, mode) { },
449 clipPos: function(pos) { },
458 findMarksAt: function(pos) { },
487 getTokenAt: function(pos) { },
524 scrollIntoView: function(pos, margin) { },
526 setBookmark: function(pos, options) { },
554 CodeMirror.Pos = function(line, ch) { }
556 CodeMirror.Pos.prototype.line;
558 CodeMirror.Pos.prototype.ch
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 428 PathDiagnosticLocation Pos;
430 PathDiagnosticSpotPiece(const PathDiagnosticLocation &pos,
434 : PathDiagnosticPiece(s, k), Pos(pos) {
435 assert(Pos.isValid() && Pos.asLocation().isValid() &&
437 if (addPosRange && Pos.hasRange()) addRange(Pos.asRange());
440 PathDiagnosticLocation getLocation() const { return Pos; }
441 virtual void flattenLocations() { Pos.flatten();
    [all...]
  /external/clang/lib/Frontend/
CompilerInstance.cpp     [all...]
  /external/llvm/lib/IR/
PassManager.cpp     [all...]

Completed in 754 milliseconds

12 3