Home
last modified time | relevance | path

Searched refs:errorCode (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/openmp/libompd/src/
H A DTargetValue.cpp261 return errorState.errorCode; in getAddress()
265 if (errorState.errorCode != ompd_rc_ok) in getRawValue()
266 return errorState.errorCode; in getRawValue()
270 return errorState.errorCode; in getRawValue()
272 errorState.errorCode = in getRawValue()
274 return errorState.errorCode; in getRawValue()
319 errorState.errorCode = in castBase()
400 return errorState.errorCode; in getValue()
404 return errorState.errorCode; in getValue()
405 errorState.errorCode = in getValue()
[all …]
H A DTargetValue.h79 ompd_rc_t errorCode;
80 TError() : errorCode(ompd_rc_ok) {} in TError()
81 TError(const ompd_rc_t &error) : errorCode(error) {} in TError()
208 bool gotError() const { return errorState.errorCode != ompd_rc_ok; } in gotError()
212 ompd_rc_t getError() const { return errorState.errorCode; } in getError()
/llvm-project-15.0.7/clang/tools/c-index-test/
H A Dc-index-test.c2671 int errorCode; in perform_code_completion() local
2817 int errorCode; in inspect_cursor_at() local
3111 int errorCode; in find_file_refs_at() local
4140 return errorCode; in index_compile_db()
4150 int errorCode; in perform_token_annotation() local
4188 errorCode = 0; in perform_token_annotation()
4191 errorCode = -1; in perform_token_annotation()
4209 errorCode = -1; in perform_token_annotation()
4216 errorCode = -1; in perform_token_annotation()
4224 errorCode = -1; in perform_token_annotation()
[all …]
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dattr-swift_name.m36 + (I *)iAndReturnErrorCode:(int *)errorCode SWIFT_NAME("i()"); // no-warning
37 + (I *)iWithValue:(int)value andReturnErrorCode:(int *)errorCode SWIFT_NAME("i(value:)"); // no-war…
39 + (I *)iFromErrorCode:(const int *)errorCode SWIFT_NAME("i()");
42 + (I *)iWithPointerA:(int *)value andReturnErrorCode:(int *)errorCode SWIFT_NAME("i()"); // no-warn…
43 + (I *)iWithPointerB:(int *)value andReturnErrorCode:(int *)errorCode SWIFT_NAME("i(pointer:)"); //…
44 … *)iWithPointerC:(int *)value andReturnErrorCode:(int *)errorCode SWIFT_NAME("i(pointer:errorCode:… argument
/llvm-project-15.0.7/lld/MachO/
H A DSyntheticSections.cpp1376 explicit ErrorCodeWrapper(std::error_code ec) : errorCode(ec.value()) {} in ErrorCodeWrapper()
1377 explicit ErrorCodeWrapper(int ec) : errorCode(ec) {} in ErrorCodeWrapper()
1378 operator int() const { return errorCode; } in operator int()
1381 int errorCode; member in ErrorCodeWrapper
/llvm-project-15.0.7/lldb/source/Host/macosx/objcxx/
H A DHost.mm33 #define LauncherXPCServiceCodeTypeKey "errorCode"
972 int errorCode =
975 error.SetError(errorCode, eErrorTypeGeneric);
978 errorType, errorCode);
/llvm-project-15.0.7/mlir/lib/Tools/mlir-pdll-lsp-server/
H A DPDLLServer.cpp976 std::error_code errorCode; in codeCompleteIncludeFilename() local
977 for (auto it = llvm::sys::fs::directory_iterator(dir, errorCode), in codeCompleteIncludeFilename()
979 !errorCode && it != e; it.increment(errorCode)) { in codeCompleteIncludeFilename()
/llvm-project-15.0.7/clang/bindings/python/clang/
H A Dcindex.py3248 errorCode = c_uint()
3251 byref(errorCode))
3253 raise CompilationDatabaseError(int(errorCode.value),