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

1 2

  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
function-templates-expected.cc 20 class Checked {
23 Checked(const Checked<U, V>& rhs) {
52 struct ArrayTraits<WTF::Checked<U, int>> {
53 static bool HasOverflowed(WTF::Checked<U, int>& input) {
55 // (because this is a method of WTF::Checked; it doesn't matter
function-templates-original.cc 20 class Checked {
23 Checked(const Checked<U, V>& rhs){
52 struct ArrayTraits<WTF::Checked<U, int>> {
53 static bool HasOverflowed(WTF::Checked<U, int>& input) {
55 // (because this is a method of WTF::Checked; it doesn't matter
  /external/wpa_supplicant_8/src/common/
ieee802_1x_defs.h 65 Checked,
  /external/deqp/external/vulkancts/framework/vulkan/
vkRef.hpp 41 struct Checked
43 explicit inline Checked (T object_) : object(object_) {}
50 inline Checked<T> check (T object)
54 return Checked<T>(object);
57 //! Declare object as checked earlier
59 inline Checked<T> notNull (T object)
63 return Checked<T>(object);
68 inline Checked<T> allowNull (T object)
70 return Checked<T>(object);
304 Move (Checked<U> object, Deleter<U> deleter
    [all...]
  /external/llvm/include/llvm/Support/
Error.h 80 /// Instances of Error also contains a 'Checked' flag, which must be set
83 /// instances be checked or returned to the caller.
85 /// There are two ways to set the checked flag, depending on what state the
131 /// *All* Error instances must be checked before destruction, even if
133 /// been checked. This enforces checking through all levels of the call stack.
140 // handleErrors needs to be able to set the Checked flag.
164 /// unchecked, even if the source error had been checked. The original error
165 /// becomes a checked Success value, regardless of its original state.
183 /// considered unchecked. The source error becomes a checked success value,
190 // This Error is unchecked, even if the source error was checked
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceASanInstrumentation.cpp 414 VarSizeMap *Checked = ICE_TLS_GET_FIELD(CheckedVars);
417 if (Checked == NULL) {
418 Checked = new VarSizeMap();
419 ICE_TLS_SET_FIELD(CheckedVars, Checked);
421 Checked->clear();
423 VarSizeMap::iterator PrevCheck = Checked->find(Op);
424 if (PrevCheck != Checked->end() && PrevCheck->second >= Size)
427 Checked->insert({Op, Size});
  /external/pdfium/third_party/base/numerics/
safe_math.h 129 // A range checked destination type can be supplied using the Dst template
148 // A range checked destination type can be supplied using the Dst template
163 // A range checked destination type can be supplied using the Dst template
172 // Returns a checked numeric of the specified type, cast from the current
429 CheckedNumeric<typename ResultType<Checked##NAME##Op, L, R, Args...>::type> \
431 return ChkMathOp<Checked##NAME##Op, L, R, Args...>(lhs, rhs, args...); \
439 CheckedNumeric<typename MathWrapper<Checked##NAME##Op, L, R>::type> \
441 return decltype(lhs OP rhs)::template MathOp<Checked##NAME##Op>(lhs, rhs); \
447 return MathOp<Checked##NAME##Op>(rhs); \
safe_math_impl.h 450 struct Checked##NAME##Op< \
  /external/v8/src/base/
safe_math.h 212 T result = Checked##NAME(static_cast<Promotion>(lhs.ValueUnsafe()), \
safe_math_impl.h 55 // Integer promotion templates used by the portable checked integer arithmetic.
139 // Here are the actual portable checked integer math implementations.
329 Checked##NAME(T, T, RangeConstraint*) { \
513 // can skip the checked operations if they're not needed. So, for an integer we
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_cp.c 155 sm->validate_frames = Checked;
174 sm->validate_frames = Checked;
  /prebuilts/go/darwin-x86/src/runtime/
sigqueue.go 175 // Checked by signal handlers.
  /prebuilts/go/linux-x86/src/runtime/
sigqueue.go 175 // Checked by signal handlers.
  /external/libchrome/base/numerics/
safe_math.h 242 Checked##NAME(static_cast<Promotion>(lhs.ValueUnsafe()), \
safe_math_impl.h 26 // Integer promotion templates used by the portable checked integer arithmetic.
130 // Here are the actual portable checked integer math implementations.
343 Checked##NAME(T, T, RangeConstraint*) { \
515 // can skip the checked operations if they're not needed. So, for an integer we
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CodeGenFunction.h     [all...]
  /external/skia/debugger/QT/
SkDebuggerGUI.cpp 194 if (item->checkState() == Qt::Checked) {
370 item->setCheckState(Qt::Checked);
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 567 { static bool TABLE##Checked = false; \
568 if (!TABLE##Checked) { \
571 TABLE##Checked = true; \
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86FloatingPoint.cpp 605 { static bool TABLE##Checked = false; \
606 if (!TABLE##Checked) { \
609 TABLE##Checked = true; \
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_macsec_qca.c 451 else if (validate_frames == Checked)
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
endtoend_test.go 173 // Checked printing.
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
endtoend_test.go 173 // Checked printing.
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 7318 SmallPtrSet<const SDNode*, 32> checked; local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 6760 SmallPtrSet<const SDNode*, 32> checked; local
    [all...]

Completed in 2500 milliseconds

1 2