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

1 2 3 4

  /external/mockito/src/main/java/org/mockito/internal/framework/
DefaultMockitoFramework.java 8 import org.mockito.internal.util.Checks;
16 Checks.checkNotNull(listener, "listener");
22 Checks.checkNotNull(listener, "listener");
  /external/mockito/src/main/java/org/mockito/internal/util/
Checks.java 11 public class Checks {
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
InstanceField.java 7 import org.mockito.internal.util.Checks;
27 * @param field The field that should be accessed, note that no checks are performed to ensure
32 this.field = Checks.checkNotNull(field, "field");
33 this.instance = Checks.checkNotNull(instance, "instance");
Fields.java 7 import org.mockito.internal.util.Checks;
68 Checks.checkNotNull(annotations, "Provide at least one annotation class");
GenericMetadataSupport.java 9 import org.mockito.internal.util.Checks;
279 Checks.checkNotNull(type, "type");
  /external/llvm/lib/Transforms/Scalar/
GuardWidening.cpp 13 // "widening" and can be used hoist and common runtime checks in situations like
172 /// Parse \p CheckCond into a conjunction (logical-and) of range checks; and
173 /// append them to \p Checks. Returns true on success, may clobber \c Checks
175 bool parseRangeChecks(Value *CheckCond, SmallVectorImpl<RangeCheck> &Checks) {
177 return parseRangeChecks(CheckCond, Checks, Visited);
180 bool parseRangeChecks(Value *CheckCond, SmallVectorImpl<RangeCheck> &Checks,
183 /// Combine the checks in \p Checks into a smaller set of checks and appen
    [all...]
LoopLoadElimination.cpp 47 cl::desc("The maximum number of SCEV checks allowed for Loop "
340 /// \brief Determine the pointer alias checks to prove that there are no
356 SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks;
358 std::copy_if(AllChecks.begin(), AllChecks.end(), std::back_inserter(Checks),
368 DEBUG(dbgs() << "\nPointer Checks (count: " << Checks.size() << "):\n");
369 DEBUG(LAI.getRuntimePointerChecking()->printChecks(dbgs(), Checks));
371 return Checks;
410 /// candidates, add run-time checks and perform transformation.
478 // Check intervening may-alias stores. These need runtime checks for alia
    [all...]
LoopDistribute.cpp 61 cl::desc("The maximum number of SCEV checks allowed for Loop "
68 "The maximum number of SCEV checks allowed for Loop "
695 // Don't distribute the loop if we need too many SCEV run-time checks.
700 return fail("too many SCEV run-time checks needed.\n");
713 // If we need run-time checks, version the loop now.
717 auto Checks = includeOnlyCrossPartitionChecks(AllChecks, PtrToPartition,
720 if (!Pred.isAlwaysTrue() || !Checks.empty()) {
722 DEBUG(LAI->getRuntimePointerChecking()->printChecks(dbgs(), Checks));
724 LVer.setAliasChecks(std::move(Checks));
790 /// \brief Filter out checks between pointers from the same partition
    [all...]
InductiveRangeCheckElimination.cpp 11 // the middle loop provably does not need range checks. As an example, it will
79 static cl::opt<bool> PrintRangeChecks("irce-print-range-checks", cl::Hidden,
130 SmallVectorImpl<InductiveRangeCheck> &Checks,
190 /// Parse out a set of inductive range checks from \p BI and append them to \p
191 /// Checks.
194 /// checks, and hence don't end up in \p Checks.
198 SmallVectorImpl<InductiveRangeCheck> &Checks);
320 SmallVectorImpl<InductiveRangeCheck> &Checks,
336 // Handle a special case where we know how to merge two checks separatel
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/configuration/injection/
MockInjection.java 13 import static org.mockito.internal.util.Checks.checkItemsNotNull;
14 import static org.mockito.internal.util.Checks.checkNotNull;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15722.go 7 // Checks to make sure that the compiler can catch a specific invalid
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15722.go 7 // Checks to make sure that the compiler can catch a specific invalid
  /prebuilts/go/darwin-x86/misc/cgo/test/
api.go 5 // API Compatibility Checks for cgo
  /prebuilts/go/linux-x86/misc/cgo/test/
api.go 5 // API Compatibility Checks for cgo
  /external/llvm/include/llvm/Transforms/Utils/
LoopVersioning.h 12 // emits checks to prove this.
31 /// \brief This class emits a version of the loop where run-time checks ensure
40 /// we will retain the default checks made by LAI. Otherwise, construct an
41 /// object having no checks and we expect the user to add them.
74 /// \brief Sets the runtime alias checks for versioning the loop.
76 SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks);
78 /// \brief Sets the runtime SCEV checks for versioning the loop.
125 /// \brief The set of alias checks that we are versioning for.
128 /// \brief The set of SCEV checks that we are versioning for.
  /external/mockito/src/main/java/org/mockito/internal/util/collections/
HashCodeAndEqualsSafeSet.java 7 import org.mockito.internal.util.Checks;
132 Checks.checkNotNull(mocks, "Passed collection should notify() be null");
  /external/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 85 /// \\brief When performing memory disambiguation checks at runtime do not
90 /// \brief Checks memory dependences among accesses to the same underlying
96 /// sometimes deal these potential dependencies by emitting runtime checks.
107 /// The latter case is safe because later checks guarantuee that there can't
221 /// Only checks sets with elements in \p CheckDeps.
268 /// A wrapper around ScalarEvolution, used to add runtime SCEV checks, and
290 /// vectorize this loop with runtime checks.
312 /// This function checks whether there is a plausible dependence (or the
330 /// \brief Holds information about the memory runtime legality checks to verify
365 Checks.clear()
    [all...]
  /build/soong/cc/config/
tidy.go 25 // Global tidy checks include only google*, performance*,
43 // Enable only some google checks for these projects.
81 Checks string
87 // This is a map of local path prefixes to the set of default clang-tidy checks
114 return pathCheck.Checks
  /external/v8/src/js/
arraybuffer.js 64 // Checks for detached source/target ArrayBuffers are done inside of
65 // %ArrayBufferSliceImpl; the reordering of checks does not violate
  /frameworks/rs/tests/lldb/tests/harness/
test_base.py 248 '''Checks the text against the array of literals.
266 '''Checks the text against the array of regular expression patterns.
  /external/llvm/lib/Transforms/Utils/
LoopVersioning.cpp 12 // emits checks to prove this.
47 SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks) {
48 AliasChecks = std::move(Checks);
87 "any runtime checks");
191 // Go through the checks and for each pointer group, collect the scopes for
  /external/chromium-trace/catapult/common/eslint/rules/
catapult-camelcase.js 48 * Checks if a string contains an underscore and isn't all upper-case
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 48 cl::desc("When performing memory disambiguation checks at runtime do not "
53 /// \brief The maximum iterations used to merge memory checks
57 "runtime memory checks. (default = 100)"),
192 SmallVector<PointerCheck, 4> Checks;
200 Checks.push_back(std::make_pair(&CGI, &CGJ));
203 return Checks;
208 assert(Checks.empty() && "Checks is not empty");
210 Checks = generateChecks();
296 // dependence. Not grouping the checks for a[i] and a[i + 9000] allow
    [all...]
  /external/llvm/test/MC/ARM/
directive-eabi_attribute.s 242 @ ===--- Compatibility Checks ---===
249 @ ===--- GNU AS Compatibility Checks ---===
  /prebuilts/misc/common/android-support-test/espresso/
espresso-contrib-2.3-beta-2-release-no-dep.jar 

Completed in 1789 milliseconds

1 2 3 4