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

1234567

/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp7.cpp3 enum class EC { ec }; class
4 using EC::ec; // expected-error {{using declaration cannot refer to a scoped enumerator}}
H A Dp3.cpp11 enum class EC { ec }; // expected-warning 0-1 {{C++11}} class in struct:B
44 using B::EC;
45 using B::EC::ec; // expected-error {{not a class}} expected-warning 0-1 {{C++11}}
/external/llvm/unittests/Support/
H A DLockFileManagerTest.cpp22 std::error_code EC; local
23 EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir);
24 ASSERT_FALSE(EC);
43 EC = sys::fs::remove(StringRef(TmpDir));
44 ASSERT_FALSE(EC);
49 std::error_code EC; local
50 EC = sys::fs::createUniqueDirectory("LockFileManagerTestDir", TmpDir);
51 ASSERT_FALSE(EC);
63 EC = sys::fs::openFileForWrite(StringRef(TmpFileLock), FD, sys::fs::F_None);
64 ASSERT_FALSE(EC);
92 std::error_code EC; local
[all...]
H A DMemoryBufferTest.cpp81 std::error_code EC = MB.getError(); local
82 ASSERT_FALSE(EC);
155 std::error_code EC = Buf.getError(); local
156 EXPECT_FALSE(EC);
200 std::error_code EC = MB.getError(); local
201 ASSERT_FALSE(EC);
215 EC = MB2.getError();
216 ASSERT_FALSE(EC);
/external/clang/test/CXX/expr/expr.post/expr.static.cast/
H A Dp9-0x.cpp4 enum class EC { ec1 }; class
6 void test0(EC ec) {
8 (void)static_cast<bool>(EC::ec1);
10 (void)static_cast<char>(EC::ec1);
12 (void)static_cast<int>(EC::ec1);
14 (void)static_cast<unsigned long>(EC::ec1);
16 (void)static_cast<float>(EC::ec1);
18 (void)static_cast<double>(EC::ec1);
/external/llvm/include/llvm/ADT/
H A DIntEqClasses.h29 /// EC - When uncompressed, map each integer to a smaller member of its
33 /// When compressed, EC[i] is the equivalence class of i.
34 SmallVector<unsigned, 8> EC; member in class:llvm::IntEqClasses
52 EC.clear();
78 return EC[a];
/external/llvm/lib/Support/
H A DToolOutputFile.cpp37 tool_output_file::tool_output_file(StringRef Filename, std::error_code &EC, argument
39 : Installer(Filename), OS(Filename, EC, Flags) {
41 if (EC)
/external/llvm/lib/TableGen/
H A DMain.cpp57 std::error_code EC; local
58 tool_output_file DepOut(DependFilename, EC, sys::fs::F_Text);
59 if (EC) {
61 << EC.message() << "\n";
79 if (std::error_code EC = FileOrErr.getError()) {
81 << "': " << EC.message() << "\n";
97 std::error_code EC;
98 tool_output_file Out(OutputFilename, EC, sys::fs::F_Text);
99 if (EC) {
101 << EC
[all...]
/external/llvm/tools/llvm-split/
H A Dllvm-split.cpp57 std::error_code EC; local
59 OutputFilename + utostr(I++), EC, sys::fs::F_None));
60 if (EC) {
61 errs() << EC.message() << '\n';
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DIntEqClasses.h29 /// EC - When uncompressed, map each integer to a smaller member of its
33 /// When compressed, EC[i] is the equivalence class of i.
34 SmallVector<unsigned, 8> EC; member in class:llvm::IntEqClasses
52 EC.clear();
78 return EC[a];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/
H A DEC.java21 public class EC class
42 provider.addAlgorithm("AlgorithmParameters.EC", PREFIX + "AlgorithmParametersSpi");
75 registerOid(provider, X9ObjectIdentifiers.id_ecPublicKey, "EC", new KeyFactorySpi.EC());
80 registerOid(provider, X9ObjectIdentifiers.dhSinglePass_stdDH_sha1kdf_scheme, "EC", new KeyFactorySpi.EC());
84 // registerOid(provider, X9ObjectIdentifiers.dhSinglePass_cofactorDH_sha1kdf_scheme, "EC", new KeyFactorySpi.EC());
87 // registerOid(provider, SECObjectIdentifiers.dhSinglePass_stdDH_sha224kdf_scheme, "EC", new KeyFactorySpi.EC());
[all...]
/external/clang/lib/ARCMigrate/
H A DPlistReporter.cpp59 std::error_code EC; local
60 llvm::raw_fd_ostream o(outPath, EC, llvm::sys::fs::F_Text);
61 if (EC) {
/external/llvm/include/llvm/CodeGen/
H A DEdgeBundles.h29 /// EC - Each edge bundle is an equivalence class. The keys are:
32 IntEqClasses EC; member in class:llvm::EdgeBundles
43 unsigned getBundle(unsigned N, bool Out) const { return EC[2 * N + Out]; }
46 unsigned getNumBundles() const { return EC.getNumClasses(); }
/external/llvm/lib/Analysis/
H A DCFGPrinter.cpp83 std::error_code EC; variable
84 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
86 if (!EC)
117 std::error_code EC; variable
118 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
120 if (!EC)
/external/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp21 std::error_code EC; local
22 raw_fd_ostream OS(Path, EC, sys::fs::F_None);
24 if (EC)
/external/llvm/lib/DebugInfo/CodeView/
H A DCodeViewError.cpp54 std::error_code EC = convertToErrorCode(); local
56 ErrMsg += EC.message() + " ";
H A DRecordSerialization.cpp116 auto EC = consume(Bytes, Num); local
118 return EC;
125 if (auto EC = consume(Data, N))
126 return EC;
136 if (auto EC = consumeObject(Data, IntPtr))
137 return EC;
144 auto EC = consume(Bytes, Item); local
146 return EC;
152 if (auto EC = consumeObject(Data, IntPtr))
153 return EC;
[all...]
/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAError.cpp46 std::error_code EC = convertToErrorCode(); local
48 ErrMsg += EC.message() + " ";
/external/llvm/lib/DebugInfo/PDB/
H A DGenericError.cpp54 std::error_code EC = convertToErrorCode(); local
56 ErrMsg += EC.message() + " ";
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DRawError.cpp54 std::error_code EC = convertToErrorCode(); local
56 ErrMsg += EC.message() + " ";
/external/llvm/tools/llvm-as/
H A Dllvm-as.cpp74 std::error_code EC; local
76 new tool_output_file(OutputFilename, EC, sys::fs::F_None));
77 if (EC) {
78 errs() << EC.message() << '\n';
/external/llvm/tools/yaml2obj/
H A Dyaml2obj.cpp79 std::error_code EC; local
81 new tool_output_file(OutputFilename, EC, sys::fs::F_None));
82 if (EC) {
83 errs() << EC.message() << '\n';
/external/llvm/unittests/ExecutionEngine/Orc/
H A DRPCUtilsTest.cpp91 auto EC = expect<VoidBool>(C2, [&](bool &B) { local
95 EXPECT_FALSE(EC) << "Simple expect over queue failed";
100 auto EC = waitForResult(C1, ResOrErr->second, handleNone); local
101 EXPECT_FALSE(EC) << "Could not read result.";
120 auto EC = expect<IntInt>(C2, [&](int32_t I) -> Expected<int32_t> { local
124 EXPECT_FALSE(EC) << "Simple expect over queue failed";
129 auto EC = waitForResult(C1, ResOrErr->second, handleNone); local
130 EXPECT_FALSE(EC) << "Could not read result.";
153 auto EC = expect<AllTheTypes>( local
172 EXPECT_FALSE(EC) << "Bi
177 auto EC = waitForResult(C1, ResOrErr->second, handleNone); local
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DEdgeBundles.h28 /// EC - Each edge bundle is an equivalence class. The keys are:
31 IntEqClasses EC; member in class:llvm::EdgeBundles
42 unsigned getBundle(unsigned N, bool Out) const { return EC[2 * N + Out]; }
45 unsigned getNumBundles() const { return EC.getNumClasses(); }
/external/llvm/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h99 std::error_code EC; variable
103 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
107 if (!EC)
162 std::error_code EC; variable
166 raw_fd_ostream File(Filename, EC, sys::fs::F_Text);
169 if (!EC)

Completed in 512 milliseconds

1234567