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

<<71727374757677787980>>

  /external/skqp/include/ports/
SkFontMgr_indirect.h 4 * Use of this source code is governed by a BSD-style license that can be
71 DataEntry(DataEntry&& that)
72 : fDataId(that.fDataId)
73 , fTtcIndex(that.fTtcIndex)
74 , fTypeface(that.fTypeface)
76 SkDEBUGCODE(that.fDataId = SkFontIdentity::kInvalidDataId;)
77 SkDEBUGCODE(that.fTtcIndex = 0xbbadbeef;)
78 that.fTypeface = nullptr;
90 * typefaces with that data id. By storing the index next to the typeface,
  /external/testng/src/main/java/org/testng/
ITestContext.java 41 * @return A list of all the tests that run successfully.
46 * @return A list of all the tests that were skipped
51 * @return A list of all the tests that failed but are being ignored because
57 * @return A map of all the tests that passed, indexed by
65 * @return All the groups that are included for this test run.
70 * @return All the groups that are excluded for this test run.
80 * @return The Suite object that was passed to the runner
86 * @return All the test methods that were run.
97 * @return All the methods that were not included in this test run.
  /external/webrtc/webrtc/modules/audio_conference_mixer/source/
time_scheduler.cc 5 * that can be found in the LICENSE file in the root of the source
47 // Calculate the time that has past since previous call to this function.
52 // Calculate the number of periods the time that has passed correspond to.
55 // One period will be worked off by this call. Make sure that the number of
64 // Note that if this fuunction is called to often _lastPeriodMark can
66 // that is greater than the periodicity
72 // Update the total amount of missed periods note that we have processed
82 // Missed periods means that the next UpdateScheduler() should happen
90 // Calculate the time (in ms) that has past since last call to
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
ViewMediatorCallback.java 25 * Reports user activity and requests that the screen stay on.
30 * Report that the keyguard is done.
34 * @param targetUserId a user that needs to be the foreground user at the completion.
39 * Report that the keyguard is done drawing.
44 * Tell ViewMediator that the current view needs IME input
50 * Report that the keyguard is dismissable, pending the next keyguardDone call.
54 * @param targetUserId a user that needs to be the foreground user at the completion.
104 * Consumes a message that was enqueued to be displayed on the next time the bouncer shows up.
105 * @return Message that should be displayed above the challenge.
  /frameworks/base/tools/stats_log_api_gen/
Collation.h 67 inline AtomField(const AtomField& that) :name(that.name),
68 javaType(that.javaType),
69 enumValues(that.enumValues) {}
90 AtomDecl(const AtomDecl& that);
94 inline bool operator<(const AtomDecl& that) const {
95 return (code == that.code) ? (name < that.name) : (code < that.code);
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
WorkStatus.java 28 * tags. Note that output is only available for terminal states ({@link State#SUCCEEDED} and
71 WorkStatus that = (WorkStatus) o;
73 if (mId != null ? !mId.equals(that.mId) : that.mId != null) return false;
74 if (mState != that.mState) return false;
75 if (mOutputData != null ? !mOutputData.equals(that.mOutputData)
76 : that.mOutputData != null) {
79 return mTags != null ? mTags.equals(that.mTags) : that.mTags == null;
  /libcore/ojluni/src/main/java/sun/nio/ch/
NativeThread.java 9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
32 // thread is blocked in an I/O operation upon that channel does not cause that
35 // that can be used to release a native thread from a blocking I/O operation.
36 // On systems that do not require this type of signalling, the current() method
43 // invoking Java thread. On systems that do not require signalling, this
49 // operation. On systems that do not require signalling, this method has
  /packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
ImageProcessorListener.java 22 * Defines the interactions between the Tasks that are running on ImageBackend and other subsystems
29 * types of tasks and the return types For now, I've gone with a minimal interface that is not
36 * @param task Task specification that includes unique content id
43 * @param task Task specification that includes unique content id
44 * @param payload Byte array that contains the compressed image data
52 * @param task Task specification that includes unique content id
53 * @param payload 32-bit Integer array that contains the uncompressed image data
61 * @param task Task specification that includes unique content id
62 * @param uri Uri that serves as handle to image written to disk
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyarena.h 17 arena will ensure that the PyObjects stay alive at least until
22 XXX mean that pointers previously obtained via PyArena_Malloc() are
23 XXX no longer valid? (That's clearly true, but not sure that's what
30 XXX internal PyList_New(0) returns NULL, PyArena_New() passes that on
32 XXX block_new(DEFAULT_BLOCK_SIZE) returns NULL, that's passed on but
33 XXX an exception is not set in that case).
44 * Note that pointers obtained via PyArena_Malloc() must never be passed to
53 * a PyObject* and records it so that it can be DECREFed when the
  /prebuilts/gdb/linux-x86/include/python2.7/
pyarena.h 17 arena will ensure that the PyObjects stay alive at least until
22 XXX mean that pointers previously obtained via PyArena_Malloc() are
23 XXX no longer valid? (That's clearly true, but not sure that's what
30 XXX internal PyList_New(0) returns NULL, PyArena_New() passes that on
32 XXX block_new(DEFAULT_BLOCK_SIZE) returns NULL, that's passed on but
33 XXX an exception is not set in that case).
44 * Note that pointers obtained via PyArena_Malloc() must never be passed to
53 * a PyObject* and records it so that it can be DECREFed when the
  /prebuilts/go/darwin-x86/src/go/types/testdata/
cycles4.src 3 // license that can be found in the LICENSE file.
7 // Check that all methods of T are collected before
22 // Check that unresolved forward chains are followed
36 // Check that interface type comparison for identity
49 // if all methods of x are present in y, and that they
51 // the result type, which is an interface that embeds
52 // a single method m that refers to the very interface
53 // that contains it. This requires cycle detection in
70 // Check that interfaces are type-checked in order of
  /prebuilts/go/linux-x86/src/go/types/testdata/
cycles4.src 3 // license that can be found in the LICENSE file.
7 // Check that all methods of T are collected before
22 // Check that unresolved forward chains are followed
36 // Check that interface type comparison for identity
49 // if all methods of x are present in y, and that they
51 // the result type, which is an interface that embeds
52 // a single method m that refers to the very interface
53 // that contains it. This requires cycle detection in
70 // Check that interfaces are type-checked in order of
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyarena.h 17 arena will ensure that the PyObjects stay alive at least until
22 XXX mean that pointers previously obtained via PyArena_Malloc() are
23 XXX no longer valid? (That's clearly true, but not sure that's what
30 XXX internal PyList_New(0) returns NULL, PyArena_New() passes that on
32 XXX block_new(DEFAULT_BLOCK_SIZE) returns NULL, that's passed on but
33 XXX an exception is not set in that case).
44 * Note that pointers obtained via PyArena_Malloc() must never be passed to
53 * a PyObject* and records it so that it can be DECREFed when the
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyarena.h 17 arena will ensure that the PyObjects stay alive at least until
22 XXX mean that pointers previously obtained via PyArena_Malloc() are
23 XXX no longer valid? (That's clearly true, but not sure that's what
30 XXX internal PyList_New(0) returns NULL, PyArena_New() passes that on
32 XXX block_new(DEFAULT_BLOCK_SIZE) returns NULL, that's passed on but
33 XXX an exception is not set in that case).
44 * Note that pointers obtained via PyArena_Malloc() must never be passed to
53 * a PyObject* and records it so that it can be DECREFed when the
  /art/test/980-redefine-object/
info.txt 3 This tests that we are able to redefine methods/constructors on the
6 This also (indirectly) tests that we correctly handle reading annotations on
7 obsolete methods. This is something that is not normally done since there is no
14 possible that the definition of Object contained in the base64 DEX_BYTES array
16 normal Object dex bytes is that (a) it contains only the bytes of the Object
  /development/samples/CrossCompatibility/
_index.html 1 <p>This sample demonstrates how to design an application that is compatible across different Android versions. Applications
5 <p>In this case, the CrossCompatibility application shows how to use APIs that are not available in all Android versions and
6 still create a single <code>.apk</code> that runs on all Android versions.</p>
10 href="AndroidManifest.html">AndroidManifest.xml</a> file declares that it is backwards compatible with API level 3 devices with attribute <code>minSdkVersion</code> in the <code>uses-sdk</code> tag.
15 is a version independent abstract class which factors out multitouch APIs that differ between platform versions. </li>
  /development/samples/TtsEngine/
_index.html 2 that users can install on their devices.</p>
8 a simple text to speech engine that converts sentences into audio by
18 an activity that checks that all voice related data is installed and
28 <p>Note that this API is supported only on Android 4.0 (API level 13)
  /development/tools/bugreport/src/com/android/bugreport/stacks/
KernelStackFrameSnapshot.java 31 public KernelStackFrameSnapshot(KernelStackFrameSnapshot that) {
32 super(that);
33 this.syscall = that.syscall;
34 this.offset0 = that.offset0;
35 this.offset1 = that.offset1;
NativeStackFrameSnapshot.java 34 final NativeStackFrameSnapshot that = new NativeStackFrameSnapshot(); local
35 that.library = this.library;
36 that.symbol = this.symbol;
37 that.offset = this.offset;
38 return that;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_scriptpackages.py 12 # Check that we can import the package
14 # Test that we can get the main event class
16 # Test that we can instantiate that class
19 # Test that we can get an application object
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
RIGHTS 11 that credit is given to us for developing PCCTS. By "credit", we mean
12 that if you incorporate our source code into one of your programs
13 (commercial product, research project, or otherwise) that you
16 output, please mention that you developed it using PCCTS. In
17 addition, we ask that this header remain intact in our source code.
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
charbuf.h 12 * that credit is given to us for developing PCCTS. By "credit",
13 * we mean that if you incorporate our source code into one of your
14 * programs (commercial product, research project, or otherwise) that you
17 * output, please mention that you developed it using PCCTS. In
18 * addition, we ask that this header remain intact in our source code.
int.h 12 * that credit is given to us for developing PCCTS. By "credit",
13 * we mean that if you incorporate our source code into one of your
14 * programs (commercial product, research project, or otherwise) that you
17 * output, please mention that you developed it using PCCTS. In
18 * addition, we ask that this header remain intact in our source code.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
charbuf.h 12 * that credit is given to us for developing PCCTS. By "credit",
13 * we mean that if you incorporate our source code into one of your
14 * programs (commercial product, research project, or otherwise) that you
17 * output, please mention that you developed it using PCCTS. In
18 * addition, we ask that this header remain intact in our source code.
int.h 12 * that credit is given to us for developing PCCTS. By "credit",
13 * we mean that if you incorporate our source code into one of your
14 * programs (commercial product, research project, or otherwise) that you
17 * output, please mention that you developed it using PCCTS. In
18 * addition, we ask that this header remain intact in our source code.

Completed in 1878 milliseconds

<<71727374757677787980>>