Searched defs:EC (Results 51 - 75 of 75) sorted by relevance

123

/external/llvm/lib/Support/
H A Draw_ostream.cpp453 std::error_code EC = sys::fs::openFileForWrite(Filename, FD, Flags); local
455 if (EC) {
457 EC.message();
/external/llvm/tools/bugpoint/
H A DMiscompilation.cpp967 std::error_code EC = sys::fs::createTemporaryFile("bugpoint.test", "bc", local
969 if (EC) {
971 << EC.message() << "\n";
986 EC = sys::fs::createTemporaryFile("bugpoint.safe", "bc", SafeModuleFD,
988 if (EC) {
990 << EC.message() << "\n";
1061 std::error_code EC = sys::fs::createTemporaryFile("bugpoint.test", "bc", local
1063 if (EC) {
1065 << EC.message() << "\n";
1079 EC
[all...]
H A DToolRunner.cpp145 std::error_code EC = sys::fs::createTemporaryFile( local
147 if (EC) {
148 errs() << "Error making unique filename: " << EC.message() << "\n";
481 std::error_code EC = local
483 if (EC) {
484 errs() << "Error making unique filename: " << EC.message() << "\n";
718 std::error_code EC = local
720 if (EC) {
721 errs() << "Error making unique filename: " << EC.message() << "\n";
828 std::error_code EC local
[all...]
/external/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp153 static bool error(std::error_code EC, Twine Path = Twine()) { argument
154 if (EC) {
155 error(EC.message(), Path);
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp151 bool llvm::error(std::error_code EC) { argument
152 if (!EC)
155 outs() << ToolName << ": error reading file: " << EC.message() << ".\n";
398 std::error_code EC; local
623 std::error_code EC; local
854 if (std::error_code EC = ChildOrErr.getError()) {
856 if (EC != object_error::invalid_file_type)
857 errs() << ToolName << ": '" << a->getFileName() << "': " << EC.message()
884 if (std::error_code EC = BinaryOrErr.getError()) {
885 errs() << ToolName << ": '" << file << "': " << EC
[all...]
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp108 if (std::error_code EC = Relocation.getOffset(RelocationOffset))
109 return EC;
125 if (std::error_code EC = resolveSymbol(Section, Offset, Symbol))
126 return EC;
127 if (std::error_code EC = Symbol.getName(Name))
128 return EC;
727 if (std::error_code EC = Obj->getSection(Symbol->SectionNumber, Section)) {
728 W.startLine() << "Invalid section number: " << EC.message() << "\n";
771 std::error_code EC; local
772 if ((EC
813 std::error_code EC; local
829 std::error_code EC; local
[all...]
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Drfc2217.py99 EC = to_bytes([247]) # Erase Character variable
/external/clang/lib/Driver/
H A DDriver.cpp1848 std::error_code EC = llvm::sys::fs::createTemporaryFile(Prefix, Suffix, Path); local
1849 if (EC) {
1850 Diag(clang::diag::err_unable_to_make_temp) << EC.message();
H A DToolChains.cpp2104 std::error_code EC; local
2105 for (llvm::sys::fs::directory_iterator LI(LibDir + LibSuffix, EC), LE;
2106 !EC && LI != LE; LI = LI.increment(EC)) {
/external/clang/lib/Lex/
H A DHeaderSearch.cpp1276 std::error_code EC; local
1282 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1283 Dir != DirEnd && !EC; Dir.increment(EC)) {
1337 std::error_code EC;
1340 for (llvm::sys::fs::directory_iterator Dir(DirNative.str(), EC), DirEnd;
1341 Dir != DirEnd && !EC; Dir.increment(EC)) {
H A DModuleMap.cpp709 std::error_code EC; local
715 Dir(SubframeworksDirName.str(), EC), DirEnd;
716 Dir != DirEnd && !EC; Dir.increment(EC)) {
/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp792 std::error_code EC; local
793 for (llvm::sys::fs::directory_iterator D(Path, EC), DEnd;
794 D != DEnd && !EC;
795 D.increment(EC)) {
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h991 std::error_code EC; member in class:llvm::yaml::Input
H A DFileSystem.h503 std::error_code EC = status(Path, Status); local
504 if (EC)
505 return EC;
/external/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp312 /// lookupVirtReg - Find the EC leader for VirtReg or null.
350 void mapVirtReg(unsigned VirtReg, UserValue *EC);
442 void LDVImpl::mapVirtReg(unsigned VirtReg, UserValue *EC) { argument
445 Leader = UserValue::merge(Leader, EC);
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp34 static bool checkSize(const MemoryBuffer &M, std::error_code &EC, argument
37 EC = object_error::unexpected_eof;
143 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
144 return EC;
168 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
169 return EC;
213 if (std::error_code EC = getSection(Symb->SectionNumber, Section))
214 return EC;
233 if (std::error_code EC = getSection(Symb->SectionNumber, Sec))
234 return EC;
272 std::error_code EC = getSectionContents(Sec, Res); local
514 COFFObjectFile(std::unique_ptr<MemoryBuffer> Object, std::error_code &EC) argument
1117 std::error_code EC; local
[all...]
H A DMachOObjectFile.cpp427 std::error_code &EC)
1933 std::error_code EC; local
1936 Ret.reset(new MachOObjectFile(std::move(Buffer), false, false, EC));
1938 Ret.reset(new MachOObjectFile(std::move(Buffer), true, false, EC));
1940 Ret.reset(new MachOObjectFile(std::move(Buffer), false, true, EC));
1942 Ret.reset(new MachOObjectFile(std::move(Buffer), true, true, EC));
1946 if (EC)
1947 return EC;
425 MachOObjectFile(std::unique_ptr<MemoryBuffer> Object, bool IsLittleEndian, bool Is64bits, std::error_code &EC) argument
/external/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp58 static void failIfError(std::error_code EC, Twine Context = "") { argument
59 if (!EC)
64 fail(EC.message());
65 fail(Context + ": " + EC.message());
939 std::error_code EC = Buf.getError(); local
940 if (EC && EC != errc::no_such_file_or_directory) {
942 << "': " << EC.message() << "!\n";
946 if (!EC) {
947 object::Archive Archive(std::move(Buf.get()), EC); local
[all...]
/external/clang/lib/Basic/
H A DVirtualFileSystem.cpp74 if (std::error_code EC = openFileForRead(Name, F))
75 return EC;
77 std::error_code EC =
79 return EC;
114 if (std::error_code EC = sys::fs::status(FD, RealStatus))
115 return EC;
132 if (std::error_code EC = BufferOrErr.getError())
133 return EC;
166 directory_iterator dir_begin(const Twine &Dir, std::error_code &EC) override;
172 if (std::error_code EC
199 RealFSDirIter(const Twine &_Path, std::error_code &EC) argument
212 std::error_code EC; variable
229 dir_begin(const Twine &Dir, std::error_code &EC) argument
260 std::error_code EC = (*I)->openFileForRead(Path, Result); local
281 std::error_code EC; local
294 std::error_code EC; local
304 std::error_code EC = incrementDirIter(IsFirstTime); local
318 OverlayFSDirIterImpl(const Twine &Path, OverlayFileSystem &FS, std::error_code &EC) argument
329 dir_begin(const Twine &Dir, std::error_code &EC) argument
1145 VFSFromYamlDirIterImpl(const Twine &_Path, VFSFromYAML &FS, DirectoryEntry::iterator Begin, DirectoryEntry::iterator End, std::error_code &EC) argument
1177 recursive_directory_iterator(FileSystem &FS_, const Twine &Path, std::error_code &EC) argument
1189 increment(std::error_code &EC) argument
[all...]
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp649 std::error_code EC = local
653 EC == llvm::errc::no_such_file_or_directory) {
655 EC = llvm::sys::fs::create_directories(Parent);
656 if (!EC) {
657 EC = llvm::sys::fs::createUniqueFile(TempPath.str(), fd, TempPath);
661 if (!EC) {
747 if (std::error_code EC = SBOrErr.getError()) {
748 Diags.Report(diag::err_fe_error_reading_stdin) << EC.message();
1162 std::error_code EC; local
1166 Dir(ModuleCachePathNative.str(), EC), DirEn
[all...]
/external/clang/lib/Sema/
H A DSemaAccess.cpp100 // We want to add canonical declarations to the EC lists for
402 const EffectiveContext &EC,
404 if (EC.includesClass(Friend))
407 if (EC.isDependent()) {
412 I = EC.Records.begin(), E = EC.Records.end(); I != E; ++I) {
424 const EffectiveContext &EC,
427 return MatchesFriend(S, EC, cast<CXXRecordDecl>(RT->getDecl()));
439 const EffectiveContext &EC,
446 I = EC
401 MatchesFriend(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *Friend) argument
423 MatchesFriend(Sema &S, const EffectiveContext &EC, CanQualType Friend) argument
438 MatchesFriend(Sema &S, const EffectiveContext &EC, ClassTemplateDecl *Friend) argument
491 MatchesFriend(Sema &S, const EffectiveContext &EC, FunctionDecl *Friend) argument
510 MatchesFriend(Sema &S, const EffectiveContext &EC, FunctionTemplateDecl *Friend) argument
540 MatchesFriend(Sema &S, const EffectiveContext &EC, FriendDecl *FriendD) argument
569 GetFriendKind(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *Class) argument
599 const EffectiveContext &EC; member in struct:__anon17998::ProtectedFriendContext
607 ProtectedFriendContext(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *InstanceContext, const CXXRecordDecl *NamingClass) argument
710 GetProtectedFriendKind(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *InstanceContext, const CXXRecordDecl *NamingClass) argument
728 HasAccess(Sema &S, const EffectiveContext &EC, const CXXRecordDecl *NamingClass, AccessSpecifier Access, const AccessTarget &Target) argument
926 FindBestPath(Sema &S, const EffectiveContext &EC, AccessTarget &Target, AccessSpecifier FinalAccess, CXXBasePaths &Paths) argument
1018 TryDiagnoseProtectedAccess(Sema &S, const EffectiveContext &EC, AccessTarget &Target) argument
1093 diagnoseBadDirectAccess(Sema &S, const EffectiveContext &EC, AccessTarget &entity) argument
1150 DiagnoseAccessPath(Sema &S, const EffectiveContext &EC, AccessTarget &entity) argument
1259 DiagnoseBadAccess(Sema &S, SourceLocation Loc, const EffectiveContext &EC, AccessTarget &Entity) argument
1314 IsAccessible(Sema &S, const EffectiveContext &EC, AccessTarget &Entity) argument
1392 DelayDependentAccess(Sema &S, const EffectiveContext &EC, SourceLocation Loc, const AccessTarget &Entity) argument
1410 CheckEffectiveAccess(Sema &S, const EffectiveContext &EC, SourceLocation Loc, AccessTarget &Entity) argument
[all...]
/external/tcpdump/
H A Dtelnet.h54 #define EC 247 /* erase the current character */ macro
72 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
223 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DRegionDataConstants.java326 EC(new String[]{ enum constant in enum:RegionDataConstants.RegionDataEnum
/external/clang/lib/Analysis/
H A DCFG.cpp1993 ExprWithCleanups *EC = cast<ExprWithCleanups>(Init); local
1994 if (CFGBlock *newBlock = Visit(EC->getSubExpr()))
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 1012 milliseconds

123