HomeSort by relevance Sort by last modified time
    Searched full:fileid (Results 1 - 25 of 72) sorted by null

1 2 3

  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaLteUiccFileHandler.java 54 public void loadEFTransparent(int fileid, Message onLoaded) {
55 if (fileid == EF_CSIM_EPRL) {
58 phone.mCM.iccIO(COMMAND_READ_BINARY, fileid, getEFPath(fileid),
61 fileid, 0, onLoaded));
63 super.loadEFTransparent(fileid, onLoaded);
RuimFileHandler.java 55 public void loadEFImgTransparent(int fileid, int highOffset, int lowOffset,
57 Message response = obtainMessage(EVENT_READ_ICON_DONE, fileid, 0,
60 phone.mCM.iccIO(COMMAND_GET_RESPONSE, fileid, "img", 0, 0,
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccFileHandler.java 136 * @param fileid EF id
143 public void loadEFLinearFixed(int fileid, int recordNum, Message onLoaded) {
146 new LoadLinearFixedContext(fileid, recordNum, onLoaded));
148 phone.mCM.iccIO(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
175 * @param fileid EF id
181 public void getEFLinearRecordSize(int fileid, Message onLoaded) {
184 new LoadLinearFixedContext(fileid, onLoaded));
185 phone.mCM.iccIO(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
298 int fileid; local
    [all...]
  /external/clang/include/clang/Basic/
SourceLocation.h 34 /// FileID - This is an opaque identifier used by SourceManager which refers to
37 class FileID {
42 FileID() : ID(0) {}
46 bool operator==(const FileID &RHS) const { return ID == RHS.ID; }
47 bool operator<(const FileID &RHS) const { return ID < RHS.ID; }
48 bool operator<=(const FileID &RHS) const { return ID <= RHS.ID; }
49 bool operator!=(const FileID &RHS) const { return !(*this == RHS); }
50 bool operator>(const FileID &RHS) const { return RHS < *this; }
51 bool operator>=(const FileID &RHS) const { return RHS <= *this; }
53 static FileID getSentinel() { return get(-1);
    [all...]
SourceManager.h 176 /// FileInfo - Information about a FileID, basically just the logical file
219 /// hasLineDirectives - Return true if this FileID has #line directives in
223 /// setHasLineDirectives - Set the flag that indicates that this FileID has
315 /// they are uniquely identified by the FileID datatype.
374 FileID LQueryFID, RQueryFID;
378 FileID CommonFID;
389 bool isCacheValid(FileID LHS, FileID RHS) const {
404 void setQueryFIDs(FileID LHS, FileID RHS)
    [all...]
  /external/clang/include/clang/Rewrite/
HTMLRewrite.h 53 void EscapeText(Rewriter& R, FileID FID,
63 void AddLineNumbers(Rewriter& R, FileID FID);
65 void AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID,
68 /// SyntaxHighlight - Relex the specified FileID and annotate the HTML with
70 void SyntaxHighlight(Rewriter &R, FileID FID, const Preprocessor &PP);
76 void HighlightMacros(Rewriter &R, FileID FID, const Preprocessor &PP);
TokenRewriter.h 30 /// of these tokens has a unique SourceLocation, which is a FileID.
50 /// specified FileID.
51 TokenRewriter(FileID FID, SourceManager &SM, const LangOptions &LO);
Rewriter.h 130 std::map<FileID, RewriteBuffer> RewriteBuffers;
149 typedef std::map<FileID, RewriteBuffer>::iterator buffer_iterator;
269 /// FileID's buffer.
270 RewriteBuffer &getEditBuffer(FileID FID);
272 /// getRewriteBufferFor - Return the rewrite buffer for the specified FileID.
274 const RewriteBuffer *getRewriteBufferFor(FileID FID) const {
275 std::map<FileID, RewriteBuffer>::const_iterator I =
285 unsigned getLocationOffsetAndFileID(SourceLocation Loc, FileID &FID) const;
FixItRewriter.h 71 bool IsModified(FileID ID) const {
82 bool WriteFixedFile(FileID ID, llvm::raw_ostream &OS);
  /frameworks/base/graphics/java/android/renderscript/
FileA3D.java 222 int fileId = rs.nFileA3DCreateFromAsset(mgr, path);
224 if(fileId == 0) {
227 FileA3D fa3d = new FileA3D(fileId, rs, null);
241 int fileId = rs.nFileA3DCreateFromFile(path);
243 if(fileId == 0) {
246 FileA3D fa3d = new FileA3D(fileId, rs, null);
282 int fileId = 0;
285 fileId = rs.nFileA3DCreateFromAssetStream(asset);
290 if(fileId == 0) {
293 FileA3D fa3d = new FileA3D(fileId, rs, is)
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 287 /// AddLineNote - Add a line note to the line table for the FileID and offset
292 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
322 std::pair<FileID, unsigned> LocInfo = getDecomposedInstantiationLoc(Loc);
393 MainFileID = FileID();
397 LastLineNoFileIDQuery = FileID();
399 LastFileIDLookup = FileID();
404 // Use up FileID #0 as an invalid instantiation.
483 // Methods to create new FileID's and instantiations.
486 /// createFileID - Create a new FileID for the specified ContentCache and
489 FileID SourceManager::createFileID(const ContentCache *File
    [all...]
  /external/skia/src/ports/
SkFontHost_fontconfig.cpp 42 // filenames to fileid numbers and back.
45 // both filename and style. Thus we encode that id as (fileid << 8) | style.
68 static unsigned FileIdAndStyleToUniqueId(unsigned fileid,
72 return (fileid << 8) | static_cast<int>(style);
200 // Check to see if the filename has already been assigned a fileid and, if so,
201 // use it. Otherwise, assign one. Return the resulting fileid.
210 const unsigned fileid = global_fc_map_next_id++; local
211 global_fc_map[filename] = fileid;
212 global_fc_map_inverted[fileid] = filename;
213 return fileid;
239 const unsigned fileid = UniqueIdToFileId(familyFace->uniqueID()); local
290 const unsigned fileid = FileIdFromFilename(reinterpret_cast<char*>(filename)); local
327 const unsigned fileid = UniqueIdToFileId(id); local
340 const unsigned fileid = UniqueIdToFileId(fontID); local
    [all...]
  /external/clang/lib/Rewrite/
Rewriter.cpp 124 FileID StartFileID, EndFileID;
135 std::map<FileID, RewriteBuffer>::const_iterator I =
168 FileID StartFileID, EndFileID;
178 std::map<FileID, RewriteBuffer>::const_iterator I =
208 FileID &FID) const {
210 std::pair<FileID,unsigned> V = SourceMgr->getDecomposedLoc(Loc);
216 /// getEditBuffer - Get or create a RewriteBuffer for the specified FileID.
218 RewriteBuffer &Rewriter::getEditBuffer(FileID FID) {
219 std::map<FileID, RewriteBuffer>::iterator I =
238 FileID FID
    [all...]
HTMLRewrite.cpp 38 FileID FID = SM.getFileID(B);
107 void html::EscapeText(Rewriter &R, FileID FID,
228 void html::AddLineNumbers(Rewriter& R, FileID FID) {
272 void html::AddHeaderFooterInternalBuiltinCSS(Rewriter& R, FileID FID,
354 /// SyntaxHighlight - Relex the specified FileID and annotate the HTML with
358 void html::SyntaxHighlight(Rewriter &R, FileID FID, const Preprocessor &PP) {
377 // FileID.
451 void html::HighlightMacros(Rewriter &R, FileID FID, const Preprocessor& PP) {
  /external/clang/lib/ARCMigrate/
PlistReporter.cpp 22 typedef llvm::DenseMap<FileID, unsigned> FIDMap;
24 static void AddFID(FIDMap &FIDs, llvm::SmallVectorImpl<FileID> &V,
27 FileID FID = SM.getFileID(SM.getInstantiationLoc(L));
36 FileID FID = SM.getFileID(SM.getInstantiationLoc(L));
105 llvm::SmallVector<FileID, 10> Fids;
140 for (llvm::SmallVectorImpl<FileID>::iterator I=Fids.begin(), E=Fids.end();
  /external/clang/include/clang/Lex/
PreprocessorLexer.h 30 /// The SourceManager FileID corresponding to the file being lexed.
31 const FileID FID;
70 PreprocessorLexer(Preprocessor *pp, FileID fid)
148 FileID getFileID() const {
154 /// getFileEntry - Return the FileEntry corresponding to this FileID. Like
TokenLexer.h 74 /// \brief FileID/offset of the start of the macro definition.
75 std::pair<FileID, unsigned> MacroDefStartInfo;
169 /// \brief If \arg loc is a FileID and points inside the current macro
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 27 typedef llvm::DenseMap<FileID, unsigned> FIDMap;
114 static void AddFID(FIDMap &FIDs, llvm::SmallVectorImpl<FileID> &V,
117 FileID FID = SM->getFileID(SM->getInstantiationLoc(L));
126 FileID FID = SM.getFileID(SM.getInstantiationLoc(L));
361 llvm::SmallVector<FileID, 10> Fids;
404 for (llvm::SmallVectorImpl<FileID>::iterator I=Fids.begin(), E=Fids.end();
HTMLDiagnostics.cpp 60 void HandlePiece(Rewriter& R, FileID BugFileID,
63 void HighlightRange(Rewriter& R, FileID BugFileID, SourceRange Range,
142 FileID FID;
144 // Verify that the entire path is from the same FileID.
314 void HTMLDiagnostics::HandlePiece(Rewriter& R, FileID BugFileID,
327 std::pair<FileID, unsigned> LPosInfo = SM.getDecomposedInstantiationLoc(Pos);
545 void HTMLDiagnostics::HighlightRange(Rewriter& R, FileID BugFileID,
  /external/clang/include/clang/AST/
ASTImporter.h 66 llvm::DenseMap<FileID, FileID> ImportedFileIDs;
198 FileID Import(FileID);
  /external/clang/include/clang/Frontend/
TextDiagnosticPrinter.h 61 unsigned LineNo, FileID FID,
  /external/clang/lib/Lex/
PreprocessorLexer.cpp 41 /// getFileEntry - Return the FileEntry corresponding to this FileID. Like
MacroInfo.cpp 70 std::pair<FileID, unsigned>
72 std::pair<FileID, unsigned>
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 118 unsigned FileID = DD->GetOrCreateSourceID(V.getContext().getFilename(),
120 assert(FileID && "Invalid file id");
121 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
135 unsigned FileID = DD->GetOrCreateSourceID(G.getContext().getFilename(),
137 assert(FileID && "Invalid file id");
138 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
155 unsigned FileID = DD->GetOrCreateSourceID(SP.getFilename(), SP.getDirectory());
156 assert(FileID && "Invalid file id");
157 addUInt(Die, dwarf::DW_AT_decl_file, 0, FileID);
171 unsigned FileID = DD->GetOrCreateSourceID(Ty.getFilename(), Ty.getDirectory())
    [all...]
  /external/clang/lib/Frontend/
LogDiagnosticPrinter.cpp 104 FileID FID = SM.getMainFileID();
131 FileID FID = SM.getFileID(Info.getLocation());

Completed in 1795 milliseconds

1 2 3