HomeSort by relevance Sort by last modified time
    Searched refs:EV (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /external/llvm/tools/llvm-readobj/
Error.cpp 26 std::string message(int ev) const override;
34 std::string _readobj_error_category::message(int EV) const {
35 switch (static_cast<readobj_error>(EV)) {
  /frameworks/compile/slang/
slang_rs_reflection_cpp.h 129 void genPointerTypeExportVariable(const RSExportVar *EV);
130 void genMatrixTypeExportVariable(const RSExportVar *EV);
131 void genRecordTypeExportVariable(const RSExportVar *EV);
133 void genGetterAndSetter(const RSExportPrimitiveType *EPT, const RSExportVar* EV);
134 void genGetterAndSetter(const RSExportVectorType *EVT, const RSExportVar* EV);
135 void genGetterAndSetter(const RSExportConstantArrayType *AT, const RSExportVar* EV);
136 void genGetterAndSetter(const RSExportRecordType *ERT, const RSExportVar *EV);
slang_rs_reflection_cpp.cpp 227 const RSExportVar *ev = *I; local
228 if (ev->isConst()) {
242 mOut.indent() << GetTypeName(ev->getType()) << " " RS_EXPORT_VAR_PREFIX
243 << ev->getName() << ";\n";
483 const RSExportVar *EV = *I;
484 if (!EV->getInit().isUninit()) {
485 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit());
487 genZeroInitExportVariable(EV->getName())
    [all...]
slang_rs_reflection_state.cpp     [all...]
slang_rs_reflection.h 221 void genExportVariable(const RSExportVar *EV);
222 void genPrimitiveTypeExportVariable(const RSExportVar *EV);
223 void genPointerTypeExportVariable(const RSExportVar *EV);
224 void genVectorTypeExportVariable(const RSExportVar *EV);
225 void genMatrixTypeExportVariable(const RSExportVar *EV);
226 void genConstantArrayTypeExportVariable(const RSExportVar *EV, ReflectionState::Val32 AllocSize32);
227 void genRecordTypeExportVariable(const RSExportVar *EV, ReflectionState::Val32 AllocSize32);
230 void genSetExportVariable(const std::string &TypeName, const RSExportVar *EV, unsigned Dimension,
slang_rs_reflection.cpp 646 const RSExportVar *EV = *I;
647 if (!EV->getInit().isUninit()) {
648 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit());
649 } else if (EV->getArraySize()) {
651 mOut.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new "
652 << GetTypeName(EV->getType(), TypeNameDefault & ~TypeNameWithConstantArrayBrackets) << "["
653 << EV->getArraySize() << "];\n";
654 size_t NumInits = EV->getNumInits()
    [all...]
slang_rs_context.cpp 87 RSExportVar *EV = new RSExportVar(this, VD, ET);
88 if (EV == nullptr)
91 mExportVars.push_back(EV);
  /external/llvm/lib/Object/
Error.cpp 28 std::string message(int ev) const override;
36 std::string _object_error_category::message(int EV) const {
37 object_error E = static_cast<object_error>(EV);
  /external/clang/test/Sema/
ms_class_layout.cpp 140 struct EV : CV, DV {
159 EV *j;
465 // CHECK: 0 | struct EV
479 // CHECK: %struct.EV = type { %struct.DV, %struct.CV.base, i32, %struct.BV }
480 // CHECK: %struct.EV.base = type { %struct.DV, %struct.CV.base }
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Support/
ErrorHandling.cpp 151 std::error_code llvm::mapWindowsError(unsigned EV) {
152 switch (EV) {
203 return std::error_code(EV, std::system_category());
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 228 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins))
229 if (EV->hasIndices())
230 index = *EV->idx_begin();
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
IPConstantPropagation.cpp 257 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins))
258 if (EV->hasIndices())
259 index = *EV->idx_begin();
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
ErrorHandling.cpp 151 std::error_code llvm::mapWindowsError(unsigned EV) {
152 switch (EV) {
203 return std::error_code(EV, std::system_category());
  /prebuilts/go/darwin-x86/src/encoding/ascii85/
ascii85_test.go 31 "9jqo^BlbD-BleB1DJ+*+F(f,q/0JhKF<GL>Cj@.4Gp$d7F!,L7@<6@)/0JDEF<G%<+EV:2F!,\n" +
33 "i(DIb:@FD,*)+C]U=@3BN#EcYf8ATD3s@q?d$AftVqCh[NqF<G:8+EV:.+Cf>-FD5W8ARlolDIa\n" +

Completed in 4903 milliseconds

1 2 3 4