HomeSort by relevance Sort by last modified time
    Searched refs:EC (Results 251 - 275 of 339) sorted by null

<<11121314

  /external/llvm/include/llvm/Support/
raw_ostream.h 373 /// about the error is put into EC, and the stream should be immediately
382 raw_fd_ostream(StringRef Filename, std::error_code &EC,
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 672 std::error_code EC;
674 SecureLogFile, EC, sys::fs::F_Append | sys::fs::F_Text);
675 if (EC)
677 SecureLogFile + " (" + EC.message() + ")");
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 706 std::error_code EC;
707 Out.reset(new tool_output_file(OutputFilename, EC, sys::fs::F_None));
708 if (EC) {
709 errs() << EC.message() << '\n';
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]
  /external/clang/lib/Lex/
ModuleMap.cpp 723 std::error_code EC;
728 for (llvm::sys::fs::directory_iterator Dir(SubframeworksDirName, EC), DirEnd;
729 Dir != DirEnd && !EC; Dir.increment(EC)) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
SlotIndexes.h 257 SlotIndex getRegSlot(bool EC = false) const {
258 return SlotIndex(listEntry(), EC ? Slot_EarlyClobber : Slot_Register);
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 321 if (std::error_code EC = ChildIt->getError())
322 report_fatal_error(EC.message());
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 65 if (std::error_code EC = sys::fs::copy_file(From, OutputFileName)) {
67 << ": " << EC.message() << "\n";
DwarfLinker.cpp 616 std::error_code EC;
618 llvm::make_unique<raw_fd_ostream>(OutputFilename, EC, sys::fs::F_None);
619 if (EC)
620 return error(Twine(OutputFilename) + ": " + EC.message(), Context);
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 395 if (std::error_code EC = Ret.getError())
396 report_fatal_error(EC.message());
  /external/autotest/client/cros/
ec.py 23 """Class for EC common.
26 across various CrOS MCUs (ec proper, USB-PD, Sensor Hub). At the moment
33 @param target: target name of ec to communicate with.
36 ec_info = utils.system_output("mosys ec info",
44 """Executes ec command and returns results.
49 @returns: string of results from ec command.
58 class EC(EC_Common):
59 """Class for CrOS embedded controller (EC)."""
60 HELLO_RE = "EC says hello"
71 """Test EC hello command
    [all...]
  /external/clang/lib/Driver/
ToolChains.cpp     [all...]
Driver.cpp 678 std::error_code EC;
679 llvm::raw_fd_ostream ScriptOS(Script, EC, llvm::sys::fs::F_Excl);
680 if (EC) {
682 << "Error generating run script: " + Script + " " + EC.message();
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 840 if (std::error_code EC = FileOrErr.getError()) {
842 << "': " << EC.message() << '\n';
    [all...]
  /external/tcpdump/
print-telnet.c 75 #define EC 247 /* erase the current character */
93 "SE", "NOP", "DMARK", "BRK", "IP", "AO", "AYT", "EC",
237 "ABORT", "EOF", "SUSP", "EC", "EL", "EW", "RP", \
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 307 /// lookupVirtReg - Find the EC leader for VirtReg or null.
346 void mapVirtReg(unsigned VirtReg, UserValue *EC);
476 void LDVImpl::mapVirtReg(unsigned VirtReg, UserValue *EC) {
479 Leader = UserValue::merge(Leader, EC);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adogpool.h     [all...]
  /external/llvm/tools/llvm-nm/
llvm-nm.cpp 175 static bool error(std::error_code EC, Twine Path = Twine()) {
176 if (EC) {
177 error(EC.message(), Path);
    [all...]
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 743 if (std::error_code EC = SymAddrOrErr.getError()) {
745 << EC.message() << '\n';
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 131 if (std::error_code EC = AddressOrErr.getError())
132 return EC;
    [all...]
  /external/llvm/lib/IR/
Core.cpp 186 std::error_code EC;
187 raw_fd_ostream dest(Filename, EC, sys::fs::F_Text);
188 if (EC) {
189 *ErrorMessage = strdup(EC.message().c_str());
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 591 if (std::error_code EC = MemBufOrErr.getError())
592 return Error(Twine("Error reading '") + Path + "': " + EC.message());
  /external/selinux/policycoreutils/mcstrans/share/examples/nato/setrans.d/
eyes-only.conf 192 ~c264=EC # Ecuador
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyPairGeneratorSpi.java 100 public static class EC extends AndroidKeyStoreKeyPairGeneratorSpi {
101 public EC() {
110 /* EC */
426 "Unsupported EC curve name: " + curveName
432 throw new InvalidAlgorithmParameterException("EC key size must match "
438 "EC may only use ECGenParameterSpec");
    [all...]
  /external/icu/icu4c/source/data/sprep/
rfc3491.txt 315 27EC..27EF; ; UNASSIGNED
498 00CC; 00EC; MAP
639 01EC; 01ED; MAP
732 03EC; 03ED; MAP
852 04EC; 04ED; MAP
    [all...]

Completed in 755 milliseconds

<<11121314