HomeSort by relevance Sort by last modified time
    Searched full:that (Results 676 - 700 of 189771) sorted by null

<<21222324252627282930>>

  /system/core/base/include/android-base/
scopeguard.h 25 // ScopeGuard ensures that the specified functor is executed no matter how the
32 ScopeGuard(ScopeGuard&& that) : f_(std::move(that.f_)), active_(that.active_) {
33 that.active_ = false;
37 ScopeGuard(ScopeGuard<Functor>&& that) : f_(std::move(that.f_)), active_(that.active_) {
38 that.active_ = false;
48 void operator=(ScopeGuard&& that) = delete member in class:android::base::ScopeGuard
    [all...]
  /external/skia/src/gpu/
GrAppliedClip.h 4 * Use of this source code is governed by a BSD-style license that can be
19 * Produced by GrHardClip. It provides a set of modifications to the hardware drawing state that
25 GrAppliedHardClip(GrAppliedHardClip&& that) = default; member in class:GrAppliedHardClip
61 bool operator==(const GrAppliedHardClip& that) const {
62 return fScissorState == that.fScissorState &&
63 fWindowRectsState == that.fWindowRectsState &&
64 fStencilStackID == that.fStencilStackID;
66 bool operator!=(const GrAppliedHardClip& that) const { return !(*this == that); }
75 * Produced by GrClip. It provides a set of modifications to GrPipeline that implement the clip
80 GrAppliedClip(GrAppliedClip&& that) = default; member in class:GrAppliedClip
    [all...]
GrPaint.cpp 4 * Use of this source code is governed by a BSD-style license that can be
14 GrPaint::GrPaint(const GrPaint& that)
15 : fXPFactory(that.fXPFactory)
16 , fColorFragmentProcessors(that.fColorFragmentProcessors.count())
17 , fCoverageFragmentProcessors(that.fCoverageFragmentProcessors.count())
18 , fDisableOutputConversionToSRGB(that.fDisableOutputConversionToSRGB)
19 , fAllowSRGBInputs(that.fAllowSRGBInputs)
20 , fTrivial(that.fTrivial)
21 , fColor(that.fColor) {
22 for (int i = 0; i < that.fColorFragmentProcessors.count(); ++i)
    [all...]
GrDeferredUpload.h 4 * Use of this source code is governed by a BSD-style license that can be
20 * requires that there are no draws that have yet to be flushed that rely on the old texture
21 * contents. In that case the ASAP upload would happen prior to the draw and therefore the draw
26 * recent draw was that referenced a resource (or portion of a resource). Each draw is assigned a
30 * instead so that the upload occurs after the draw depending on the old contents and before the
32 * token of the draw that the upload must occur before.
45 bool operator==(const GrDeferredUploadToken& that) const {
46 return fSequenceNumber == that.fSequenceNumber
    [all...]
  /external/skqp/src/gpu/
GrAppliedClip.h 4 * Use of this source code is governed by a BSD-style license that can be
19 * Produced by GrHardClip. It provides a set of modifications to the hardware drawing state that
25 GrAppliedHardClip(GrAppliedHardClip&& that) = default; member in class:GrAppliedHardClip
61 bool operator==(const GrAppliedHardClip& that) const {
62 return fScissorState == that.fScissorState &&
63 fWindowRectsState == that.fWindowRectsState &&
64 fStencilStackID == that.fStencilStackID;
66 bool operator!=(const GrAppliedHardClip& that) const { return !(*this == that); }
75 * Produced by GrClip. It provides a set of modifications to GrPipeline that implement the clip
80 GrAppliedClip(GrAppliedClip&& that) = default; member in class:GrAppliedClip
    [all...]
GrPaint.cpp 4 * Use of this source code is governed by a BSD-style license that can be
14 GrPaint::GrPaint(const GrPaint& that)
15 : fXPFactory(that.fXPFactory)
16 , fColorFragmentProcessors(that.fColorFragmentProcessors.count())
17 , fCoverageFragmentProcessors(that.fCoverageFragmentProcessors.count())
18 , fDisableOutputConversionToSRGB(that.fDisableOutputConversionToSRGB)
19 , fAllowSRGBInputs(that.fAllowSRGBInputs)
20 , fTrivial(that.fTrivial)
21 , fColor(that.fColor) {
22 for (int i = 0; i < that.fColorFragmentProcessors.count(); ++i)
    [all...]
  /external/pdfium/core/fxcrt/
weak_ptr.h 2 // Use of this source code is governed by a BSD-style license that can be
23 WeakPtr(const WeakPtr& that) : m_pHandle(that.m_pHandle) {}
24 WeakPtr(WeakPtr&& that) noexcept { Swap(that); } variable
36 WeakPtr& operator=(const WeakPtr& that) {
37 m_pHandle = that.m_pHandle;
40 bool operator==(const WeakPtr& that) const {
41 return m_pHandle == that.m_pHandle;
43 bool operator!=(const WeakPtr& that) const { return !(*this == that);
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
ClassDef.java 6 * modification, are permitted provided that the following conditions are
60 * This will be a combination of the AccessFlags.* flags that are marked as compatible for use with a class.
76 * Gets a list of the interfaces that this class implements.
78 * @return A list of the interfaces that this class implements
83 * Gets the name of the primary source file that this class is defined in, if available.
93 * Gets a set of the annotations that are applied to this class.
97 * @return A set of the annotations that are applied to this class
102 * Gets the static fields that are defined by this class.
104 * The static fields that are returned must have no duplicates.
106 * @return The static fields that are defined by this clas
    [all...]
  /libcore/luni/src/main/java/java/math/
Logical.java 33 /** Just to denote that this class can't be instantiated. */
82 static BigInteger and(BigInteger val, BigInteger that) {
83 if (that.sign == 0 || val.sign == 0) {
86 if (that.equals(BigInteger.MINUS_ONE)){
90 return that;
94 if (that.sign > 0) {
95 return andPositive(val, that);
97 return andDiffSigns(val, that);
100 if (that.sign > 0) {
101 return andDiffSigns(that, val)
    [all...]
  /external/ltp/testcases/kernel/hotplug/cpu_hotplug/doc/
hotplug03.txt 4 This test verifies that when you online a new CPU, that the scheduler
8 one of the processes moved to that CPU.
13 Given a CPU to test that exists
23 have, so we can be pretty sure that we've got enough processes that at
31 Verify that at least one process has migrated to the new CPU by
hotplug06.txt 4 It's been found that sometimes onlining and offlining CPUs confuse some
6 crash, and found that sar wouldn't register newly available cpus that
8 known error cases and verify that they behave correctly now.
13 Given a CPU to test that exists
24 Now check that top hasn't crashed by verifying its PID is still
34 Given a CPU to test that exists
41 Verify that SAR has correctly listed the missing CPU as 'nan' in its
51 Verify that the number of CPUs offline has changed
  /external/pdfium/core/fpdfapi/page/
cpdf_clippath.h 2 // Use of this source code is governed by a BSD-style license that can be
24 CPDF_ClipPath(const CPDF_ClipPath& that);
31 bool operator==(const CPDF_ClipPath& that) const {
32 return m_Ref == that.m_Ref;
34 bool operator!=(const CPDF_ClipPath& that) const { return !(*this == that); }
52 PathData(const PathData& that);
cpdf_contentmarkitem.cpp 2 // Use of this source code is governed by a BSD-style license that can be
16 CPDF_ContentMarkItem::CPDF_ContentMarkItem(const CPDF_ContentMarkItem& that)
17 : m_MarkName(that.m_MarkName),
18 m_ParamType(that.m_ParamType),
19 m_pPropertiesDict(that.m_pPropertiesDict) {
20 if (that.m_pDirectDict)
21 m_pDirectDict = ToDictionary(that.m_pDirectDict->Clone());
  /external/skia/src/core/
SkDiscardableMemory.h 4 * Use of this source code is governed by a BSD-style license that can be
21 * Factory method that creates, initializes and locks an SkDiscardableMemory
27 * Factory class that creates, initializes and locks an SkDiscardableMemory
43 * obtain a pointer to that memory using the data() method.
45 * lock() may return false, indicating that the underlying memory was
46 * discarded and that the lock failed.
59 * Unlock the memory so that it can be purged by the system. Must be called
  /external/skqp/src/core/
SkDiscardableMemory.h 4 * Use of this source code is governed by a BSD-style license that can be
21 * Factory method that creates, initializes and locks an SkDiscardableMemory
27 * Factory class that creates, initializes and locks an SkDiscardableMemory
43 * obtain a pointer to that memory using the data() method.
45 * lock() may return false, indicating that the underlying memory was
46 * discarded and that the lock failed.
59 * Unlock the memory so that it can be purged by the system. Must be called
  /external/testng/src/main/java/org/testng/
ITestMethodFinder.java 13 * methods that start with "test" or have a suite() method).
26 * @return All the methods that should be invoked
32 * @return All the methods that should be invoked
38 * @return All the methods that should be invoked
45 * @return All the methods that should be invoked
52 * @return All the methods that should be invoked
58 * @return All the methods that should be invoked
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
req.s 5 # Check that builtin register alias 'r0' works.
11 # Check that it works.
17 # And make sure that it no longer works.
23 # That is ignored, so this should still work.
30 # before) would fail because the assembler would complain that FOO
36 # Check that the upper case alias was also recreated.
39 # Check that a second attempt to alias foo, using a mixed case
  /external/markdown/markdown/extensions/
extra.py 6 A compilation of various Python-Markdown extensions that imitates
9 Note that each of the individual extensions still need to be available
11 convenience so that only one extension needs to be listed when
13 extension for specifics about that extension.
15 In the event that one or more of the supported extensions are not
17 without that extension.
19 There may be additional extensions that are distributed with
20 Python-Markdown that are not included here in Extra. Those extensions
25 variable defined below, but be aware that such changes may be lost
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
ResourcePath.java 50 ResourcePath that = (ResourcePath) o;
52 if (rClass != null ? !rClass.equals(that.rClass) : that.rClass != null) return false;
53 if (resourceBase != null ? !resourceBase.equals(that.resourceBase) : that.resourceBase != null) return false;
54 if (assetsDir != null ? !assetsDir.equals(that.assetsDir) : that.assetsDir != null) return false;
55 return internalRClass != null ? internalRClass.equals(that.internalRClass) : that.internalRClass == null;
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
EventDataItem.java 48 final EventDataItem that = (EventDataItem) t; local
50 if (!TextUtils.equals(getStartDate(), that.getStartDate())) {
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
57 !TextUtils.equals(getLabel(), that.getLabel())) {
RelationDataItem.java 48 final RelationDataItem that = (RelationDataItem) t; local
50 if (!TextUtils.equals(getName(), that.getName())) {
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
57 !TextUtils.equals(getLabel(), that.getLabel())) {
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
EventDataItem.java 47 final EventDataItem that = (EventDataItem) t; local
49 if (!TextUtils.equals(getStartDate(), that.getStartDate())) {
51 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
52 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
53 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
56 && !TextUtils.equals(getLabel(), that.getLabel())) {
RelationDataItem.java 47 final RelationDataItem that = (RelationDataItem) t; local
49 if (!TextUtils.equals(getName(), that.getName())) {
51 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) {
52 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind());
53 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) {
56 && !TextUtils.equals(getLabel(), that.getLabel())) {
  /prebuilts/go/darwin-x86/src/encoding/
encoding.go 3 // license that can be found in the LICENSE file.
5 // Package encoding defines interfaces shared by other packages that
7 // Packages that check for these interfaces include encoding/gob,
10 // Standard types that implement these interfaces include time.Time and net.IP.
11 // The interfaces come in pairs that produce and consume encoded data.
14 // BinaryMarshaler is the interface implemented by an object that can
22 // BinaryUnmarshaler is the interface implemented by an object that can
32 // TextMarshaler is the interface implemented by an object that can
40 // TextUnmarshaler is the interface implemented by an object that can
  /prebuilts/go/linux-x86/src/encoding/
encoding.go 3 // license that can be found in the LICENSE file.
5 // Package encoding defines interfaces shared by other packages that
7 // Packages that check for these interfaces include encoding/gob,
10 // Standard types that implement these interfaces include time.Time and net.IP.
11 // The interfaces come in pairs that produce and consume encoded data.
14 // BinaryMarshaler is the interface implemented by an object that can
22 // BinaryUnmarshaler is the interface implemented by an object that can
32 // TextMarshaler is the interface implemented by an object that can
40 // TextUnmarshaler is the interface implemented by an object that can

Completed in 1070 milliseconds

<<21222324252627282930>>