Searched defs:EC (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/slang/
H A Dllvm-rs-as.cpp82 std::error_code EC; local
84 (new tool_output_file(OutputFilename.c_str(), EC, llvm::sys::fs::F_None));
85 if (EC) {
87 errs() << EC.message() << '\n';
H A Dslang.cpp130 std::error_code &EC,
135 EC = llvm::sys::fs::create_directories(
137 if (!EC) {
139 new llvm::tool_output_file(OutputFile, EC, Flags);
146 << OutputFile << EC.message();
313 std::error_code EC; local
320 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_Text, EC, mDiagEngine);
328 OS = OpenOutputFile(OutputFile, llvm::sys::fs::F_None, EC, mDiagEngine);
336 if (EC)
347 std::error_code EC; local
128 OpenOutputFile(const char *OutputFile, llvm::sys::fs::OpenFlags Flags, std::error_code &EC, clang::DiagnosticsEngine *DiagEngine) argument
[all...]
/frameworks/compile/libbcc/tools/bcc_strip_attr/
H A Dbcc_strip_attr.cpp133 std::error_code EC; local
134 tool_output_file Out(OutputFilename.c_str(), EC,
136 if (EC) {
137 errs() << EC.message() << '\n';
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreKeyPairGeneratorSpi.java100 public static class EC extends AndroidKeyStoreKeyPairGeneratorSpi { class in class:AndroidKeyStoreKeyPairGeneratorSpi
101 public EC() { method in class:AndroidKeyStoreKeyPairGeneratorSpi.EC
110 /* EC */
426 "Unsupported EC curve name: " + curveName
432 throw new InvalidAlgorithmParameterException("EC key size must match "
438 "EC may only use ECGenParameterSpec");
724 throw new InvalidAlgorithmParameterException("Unsupported EC key size: "
753 // 4. For EC keys, the there is no point in using a digest whose output size is longer than

Completed in 1590 milliseconds