/external/clang/test/CXX/basic/basic.def.odr/ |
p2-typeid.cpp | 19 template<typename T, typename Result = T> 21 Result f(T t) { return t + t; } // expected-error{{invalid operands}}
|
/external/clang/test/SemaTemplate/ |
instantiate-subscript.cpp | 16 template<typename T, typename U, typename Result> 19 Result &result = t[u]; // expected-error{{no viable overloaded operator[] for type}} local
|
/external/llvm/lib/Target/AMDGPU/ |
AMDGPUMachineFunction.h | 31 uint64_t Result = KernArgSize; 35 return Result;
|
/external/lzma/CPP/7zip/Bundles/SFXSetup/ |
ExtractEngine.cpp | 34 HRESULT Result;
43 Result = E_FAIL;
55 Result = ArchiveLink.Open2(options, ExtractCallbackSpec);
56 if (Result != S_OK)
72 Result = E_FAIL;
78 Result = ArchiveLink.GetArchive()->Extract(0, (UInt32)(Int32)-1 , BoolToInt(false), ExtractCallback);
90 catch(...) { Result = E_FAIL; }
136 return t.Result;
|
/external/skia/include/codec/ |
SkCodec.h | 59 enum Result { 112 static const char* ResultToString(Result); 127 * If Result is not NULL, it will be set to either kSuccess if an SkCodec 140 * chunk, this could result in a failure to create the codec or a 148 static std::unique_ptr<SkCodec> MakeFromStream(std::unique_ptr<SkStream>, Result* = nullptr, 162 * chunk, this could result in a failure to create the codec or a 219 * changes could result in a valid subset. 334 * @return Result kSuccess, or another value explaining the type of failure. 336 Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options*); 341 Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) 365 bool result = this->onQueryYUV8(sizeInfo, colorSpace); local [all...] |
/external/skia/src/codec/ |
SkRawCodec.h | 31 static std::unique_ptr<SkCodec> MakeFromStream(std::unique_ptr<SkStream>, Result*); 37 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options&,
|
SkSampledCodec.h | 29 SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, 54 SkCodec::Result sampledDecode(const SkImageInfo& info, void* pixels, size_t rowBytes,
|
/external/skqp/include/codec/ |
SkCodec.h | 59 enum Result { 112 static const char* ResultToString(Result); 127 * If Result is not NULL, it will be set to either kSuccess if an SkCodec 140 * chunk, this could result in a failure to create the codec or a 148 static std::unique_ptr<SkCodec> MakeFromStream(std::unique_ptr<SkStream>, Result* = nullptr, 162 * chunk, this could result in a failure to create the codec or a 219 * changes could result in a valid subset. 334 * @return Result kSuccess, or another value explaining the type of failure. 336 Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, const Options*); 341 Result getPixels(const SkImageInfo& info, void* pixels, size_t rowBytes) 365 bool result = this->onQueryYUV8(sizeInfo, colorSpace); local [all...] |
/external/skqp/src/codec/ |
SkRawCodec.h | 31 static std::unique_ptr<SkCodec> MakeFromStream(std::unique_ptr<SkStream>, Result*); 37 Result onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options&,
|
SkSampledCodec.h | 29 SkCodec::Result onGetAndroidPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, 54 SkCodec::Result sampledDecode(const SkImageInfo& info, void* pixels, size_t rowBytes,
|
/external/swiftshader/third_party/LLVM/include/llvm/Object/ |
Binary.h | 61 error_code createBinary(MemoryBuffer *Source, OwningPtr<Binary> &Result); 62 error_code createBinary(StringRef Path, OwningPtr<Binary> &Result);
|
/external/v4l2_codec2/vda/ |
h264_parser.h | 348 enum Result { 405 Result AdvanceToNextNALU(H264NALU* nalu); 418 // TODO(posciak,fischman): consider replacing returning Result from Parse*() 421 Result ParseSPS(int* sps_id); 422 Result ParsePPS(int* pps_id); 436 Result ParseSliceHeader(const H264NALU& nalu, H264SliceHeader* shdr); 440 Result ParseSEI(H264SEIMessage* sei_msg); 454 Result ReadUE(int* val); 457 Result ReadSE(int* val); 460 Result ParseScalingList(int size, int* scaling_list, bool* use_default) [all...] |
/frameworks/av/media/libaudiohal/impl/ |
DeviceHalHidl.cpp | 131 Result retval; 133 [&](Result r, float v) { 135 if (retval == Result::OK) { 155 Result retval; 157 [&](Result r, bool mute) { 159 if (retval == Result::OK) { 173 Result retval; 175 [&](Result r, bool mute) { 177 if (retval == Result::OK) { 200 Result retval [all...] |
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
LazyValueInfo.cpp | 224 // a function. The correct result is to pick up RHS. 401 LVILatticeVal &Result); 556 LVILatticeVal Result; 610 LVILatticeVal Result; // Start Undefined. 634 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy)); 636 Result.markOverdefined(); 638 BBLV = Result; 643 // result. 651 Result.mergeIn(EdgeResult); 655 if (Result.isOverdefined()) [all...] |
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
BugDriver.cpp | 60 std::string Result;
62 if (i) Result += " ";
63 Result += "-";
64 Result += Passes[i];
66 return Result;
88 Module *Result = ParseIRFile(Filename, Err, Ctxt);
89 if (!Result)
94 if (Result) {
96 Triple TheTriple(Result->getTargetTriple());
104 Result->setTargetTriple(TargetTriple.getTriple()); // override the triple [all...] |
/external/v8/src/wasm/ |
wasm-result.h | 24 // Base class for Result<T>. 66 // The overall result of decoding a function or a module. 68 class Result : public ResultBase { 70 Result() = default; 73 explicit Result(S&& value) : val(std::forward<S>(value)) {} 76 Result(Result<S>&& other) V8_NOEXCEPT : ResultBase(std::move(other)), 79 Result& operator=(Result&& other) V8_NOEXCEPT = default; 81 static Result<T> PRINTF_FORMAT(1, 2) Error(const char* format, ...) 84 Result<T> result; local [all...] |
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
RuntimeDyldCOFFI386.h | 142 uint64_t Result = 147 assert(static_cast<int32_t>(Result) <= INT32_MAX && 149 assert(static_cast<int32_t>(Result) >= INT32_MIN && 154 << " Value: " << format("0x%08" PRIx32, Result) << '\n'); 155 writeBytesUnaligned(Result, Target, 4); 161 uint64_t Result = 164 assert(static_cast<int32_t>(Result) <= INT32_MAX && 166 assert(static_cast<int32_t>(Result) >= INT32_MIN && 171 << " Value: " << format("0x%08" PRIx32, Result) << '\n'); 172 writeBytesUnaligned(Result, Target, 4) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/ |
UsbMassBot.c | 164 UINT32 Result;
183 Result = 0;
196 &Result
199 if (USB_IS_ERROR (Result, EFI_USB_ERR_STALL) && DataDir == EfiUsbDataOut) {
205 } else if (USB_IS_ERROR (Result, EFI_USB_ERR_NAK)) {
244 UINT32 Result;
262 Result = 0;
271 &Result
274 if (USB_IS_ERROR (Result, EFI_USB_ERR_STALL)) {
278 } else if (USB_IS_ERROR (Result, EFI_USB_ERR_NAK)) { [all...] |
/device/linaro/bootloader/edk2/ArmVirtPkg/Library/QemuFwCfgLib/ |
QemuFwCfgLib.c | 370 UINT8 Result;
372 QemuFwCfgReadBytes (sizeof Result, &Result);
373 return Result;
389 UINT16 Result;
391 QemuFwCfgReadBytes (sizeof Result, &Result);
392 return Result;
408 UINT32 Result;
410 QemuFwCfgReadBytes (sizeof Result, &Result); [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/ |
Math.c | 61 value returns 64bit result.
62 No checking if the result is greater than 64bits
84 UINT64 Result;
86 Result = Operand;
88 Result *= 10;
90 return Result;
131 64bit result and the Remainder.
|
/external/compiler-rt/lib/esan/ |
working_set.h | 33 void (**Result)(int));
|
/external/easymock/src/org/easymock/internal/ |
Results.java | 31 private final List<Result> results = new ArrayList<Result>();
33 public void add(Result result, Range range) {
42 results.add(result);
45 public Result next() {
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
BytesDictionaryMatcher.java | 16 import android.icu.util.BytesTrie.Result; 53 Result result = bt.first(transform(c)); local 58 if (result.hasValue()) { 66 if (result == Result.FINAL_VALUE) { 69 } else if (result == Result.NO_MATCH) { 82 result = bt.next(transform(c));
|
CharsDictionaryMatcher.java | 14 import android.icu.util.BytesTrie.Result; 32 Result result = uct.firstForCodePoint(c); local 37 if (result.hasValue()) { 46 if (result == Result.FINAL_VALUE) { 49 } else if (result == Result.NO_MATCH) { 61 result = uct.nextForCodePoint(c);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
CharsDictionaryMatcher.java | 13 import com.ibm.icu.util.BytesTrie.Result; 31 Result result = uct.firstForCodePoint(c); local 36 if (result.hasValue()) { 45 if (result == Result.FINAL_VALUE) { 48 } else if (result == Result.NO_MATCH) { 60 result = uct.nextForCodePoint(c);
|