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

<<81828384858687888990>>

  /frameworks/base/cmds/statsd/src/
FieldValue.h 47 * Field is a wrapper class for 2 integers that represents the field of a log element in its Atom
67 * The first bit of each 8bits field is reserved to mark if the item is the last item at that level
164 inline bool operator==(const Field& that) const {
165 return mTag == that.getTag() && mField == that.getField();
168 inline bool operator!=(const Field& that) const {
169 return mTag != that.getTag() || mField != that.getField();
172 bool operator<(const Field& that) const {
173 if (mTag != that.getTag())
    [all...]
FieldValue.cpp 167 bool Value::operator==(const Value& that) const {
168 if (type != that.getType()) return false;
172 return int_value == that.int_value;
174 return long_value == that.long_value;
176 return float_value == that.float_value;
178 return str_value == that.str_value;
184 bool Value::operator!=(const Value& that) const {
185 if (type != that.getType()) return true;
188 return int_value != that.int_value;
190 return long_value != that.long_value
    [all...]
  /art/runtime/
cha.h 38 * virtual methods isn't overridden, a virtual call for that method can be
49 * also register a dependency that the compiled code depends on the
50 * assumption that method A has single-implementation status.
54 * code that depends on the assumption that method A has single-implementation
55 * status need to be invalidated. Method entrypoints that have this dependency
59 * For live compiled code that's on stack, deoptmization will be initiated
65 * checkpoint that walks the stack and for any compiled code on the stack
66 * that should be deoptimized, set the hidden local variable value to be true.
86 // We will also deoptimize frames that are currently executing the code o
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
gc_weakref.txt 5 for that matter) during cyclic gc:
10 If that can happen, then the Python code can resurrect unreachable objects
11 too, and gc can't detect that without starting over. Since gc eventually
21 OTOH, it's OK to run Python-level code that can't access unreachable
22 objects, and sometimes that's necessary. The chief example is the callback
26 so it's also safe to invoke the callback (although that's trickier than it
40 The primary thing it missed is that when a weakref to a piece of cyclic
42 materializing a strong reference to that weakref's CT referent, and so
44 will call before it's done --tp_clear()). It's not even necessarily that a
47 too, and they can do ordinary things with weakrefs that end up resurrecting
    [all...]
  /external/googletest/googlemock/test/
gmock-nice-strict_test.cc 5 // modification, are permitted provided that the following conditions are
109 MOCK_METHOD2(That, std::string(int, bool));
119 // Tests that a raw mock generates warnings for uninteresting calls.
135 // Tests that a raw mock generates warnings for uninteresting calls
136 // that delete the mock object.
154 // Tests that a raw mock generates informational logs for
169 // Tests that a nice mock generates no warning for uninteresting calls.
179 // Tests that a nice mock generates no warning for uninteresting calls
180 // that delete the mock object.
192 // Tests that a nice mock generates informational logs fo
    [all...]
  /external/python/cpython2/Modules/
gc_weakref.txt 5 for that matter) during cyclic gc:
10 If that can happen, then the Python code can resurrect unreachable objects
11 too, and gc can't detect that without starting over. Since gc eventually
21 OTOH, it's OK to run Python-level code that can't access unreachable
22 objects, and sometimes that's necessary. The chief example is the callback
26 so it's also safe to invoke the callback (although that's trickier than it
40 The primary thing it missed is that when a weakref to a piece of cyclic
42 materializing a strong reference to that weakref's CT referent, and so
44 will call before it's done --tp_clear()). It's not even necessarily that a
47 too, and they can do ordinary things with weakrefs that end up resurrectin
    [all...]
  /external/python/cpython3/Modules/
gc_weakref.txt 5 for that matter) during cyclic gc:
10 If that can happen, then the Python code can resurrect unreachable objects
11 too, and gc can't detect that without starting over. Since gc eventually
21 OTOH, it's OK to run Python-level code that can't access unreachable
22 objects, and sometimes that's necessary. The chief example is the callback
26 so it's also safe to invoke the callback (although that's trickier than it
40 The primary thing it missed is that when a weakref to a piece of cyclic
42 materializing a strong reference to that weakref's CT referent, and so
44 will call before it's done --tp_clear()). It's not even necessarily that a
47 too, and they can do ordinary things with weakrefs that end up resurrectin
    [all...]
  /packages/providers/DownloadProvider/ui/res/values/
strings.xml 17 <!-- The name of the application that appears in the launcher [CHAR LIMIT=15] -->
19 <!-- The title that appears at the top of the activity listing downloads sorted by date [CHAR LIMIT=40] -->
21 <!-- The title that appears at the top of the activity listing downloads sorted by size [CHAR LIMIT=40] -->
39 <!-- Status indicating that the download has been queued to start in the future. Appears for an
42 <!-- Status indicating that the system is currently downloading the file. Appears for an
45 <!-- Status indicating that the download has completed successfully. Appears for an individual
48 <!-- Status indicating that the download has ended without completing successfully. Appears for
54 <!-- Title of dialog that is shown when the user clicks a download for which no file is
58 <!-- Text for dialog when user clicks on a download that failed [CHAR LIMIT=200] -->
61 <!-- Title for dialog when user clicks on a download that has not yet begun, but will be starte
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/
_index.html 1 <p>This is a demo application highlighting how to advertise and discover local services that are Wi-Fi peer to peer network capable with
2 the Wi-Fi Direct Service Discovery APIs. Service discovery on Wi-Fi direct allows applications to discover and enagage with peers that support a certain service.
3 As an example, a gaming application can find and associate with devices that support the game. This application allows you to chat with a peer after a succesful connection.</p>
11 &mdash; the main <code>Activity</code> that contains two fragments to handle app's UI. It advertises and discovers services and also registers a broadcast receiver for Wi-Fi Direct related events.</li> <li><a
14 that listens for Wi-Fi Direct related events and passes them to
17 &mdash; a <code>ListFragment</code> that displays available services, peers and their status. </li>
19 &mdash; a <code>Fragment</code> that displays handles chat UI </li>
21 &mdash; a <code>Runnable</code> that continously performs Socket I/O.</li>
23 &mdash; a <code>Thread</code> that implements a server side Socket handler and spawns a client socket per connection.</li> </ul>
25 &mdash; a <code>Thread</code> that implements a client side Socket handler.</li> </ul
    [all...]
  /external/libchrome/base/
sequenced_task_runner.h 2 // Use of this source code is governed by a BSD-style license that can be
15 // A SequencedTaskRunner is a subclass of TaskRunner that provides
16 // additional guarantees on the order that tasks are started, as well
31 // within tasks. A non-nestable task is one that is guaranteed to not
33 // task (the default) is a task that can be run from within an
59 // Note that SequencedTaskRunner does not guarantee that tasks are run
62 // guarantee that tasks are run on a single dedicated thread, see
85 // - A SequencedTaskRunner that wraps a regular TaskRunner but makes
86 // sure that only one task at a time is posted to the TaskRunner
    [all...]
  /frameworks/base/core/java/android/os/
IStatsManager.aidl 25 * Tell the stats daemon that the android system server is up and running.
30 * Tell the stats daemon that the StatsCompanionService is up and running.
31 * Two-way binder call so that caller knows message received.
36 * Tells statsd that an anomaly may have occurred, so statsd can check whether this is so and
38 * Two-way binder call so that caller's method (and corresponding wakelocks) will linger.
43 * Tells statsd that it is time to poll some stats. Statsd will be responsible for determing
45 * Two-way binder call so that caller's method (and corresponding wakelocks) will linger.
50 * Tells statsd that it is time to handle periodic alarms. Statsd will be responsible for
52 * Two-way binder call so that caller's method (and corresponding wakelocks) will linger.
57 * Tells statsd that the device is about to shutdown
    [all...]
  /build/make/core/
sdk_check.mk 2 # Enforcement checks that LOCAL_SDK_VERSION and LOCAL_PRIVATE_PLATFORM_APIS are
4 # Should be included by java targets that allow specifying LOCAL_SDK_VERSION.
6 # be set to a particular module class to enable warnings and errors for that
  /compatibility/cdd/9_security-model/
9_12_data-deletion.md 6 * [C-0-2] MUST delete all user-generated data. That is, all data except for
10 * [C-0-3] MUST delete the data in such a way that will satisfy relevant
16 * MAY provide a fast data wipe option that conducts only a logical data erase
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
ModifyInstallerPackageTest.java 31 * Tests that one application can and can not modify the installer package
51 * Test that we can set the installer package name.
66 * Test that we fail if trying to set an installer package with an unknown
74 // That's what we want!
79 * Test that we fail if trying to set an installer package with an unknown
87 // That's what we want!
93 * Test that we fail if trying to set an installer package that is not
104 // That's what we want!
111 * Test that we fail if trying to set an installer package that is no
    [all...]
  /development/samples/USB/MissileLauncher/
_index.html 1 <p>MissileLauncher is a simple program that controls Dream Cheeky USB missile launchers.
8 <li>Sending control requests on endpoint zero that contain data</li>
9 <li>Receiving packets on an interrupt endpoint using a thread that calls
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
longintrepr.h 18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
19 and that overflow is handled by taking the result modulo 2**N for some N >
23 - long_pow() requires that PyLong_SHIFT be divisible by 5
25 - PyLong_{As,From}ByteArray require that PyLong_SHIFT be at least 8
27 - long_hash() requires that PyLong_SHIFT is *strictly* less than the number
31 - the long <-> size_t/Py_ssize_t conversion functions expect that
34 - the marshal code currently expects that PyLong_SHIFT is a multiple of 15
50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
58 #define _PyLong_DECIMAL_SHIFT 4 /* max(e such that 10**e fits in a digit) */
72 #error "longobject.c requires that PyLong_SHIFT be divisible by 5"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
longintrepr.h 18 PyLong_BASE*PyLong_BASE-1. x_sub assumes that 'digit' is an unsigned type,
19 and that overflow is handled by taking the result modulo 2**N for some N >
23 - long_pow() requires that PyLong_SHIFT be divisible by 5
25 - PyLong_{As,From}ByteArray require that PyLong_SHIFT be at least 8
27 - long_hash() requires that PyLong_SHIFT is *strictly* less than the number
31 - the long <-> size_t/Py_ssize_t conversion functions expect that
34 - the marshal code currently expects that PyLong_SHIFT is a multiple of 15
50 #define _PyLong_DECIMAL_SHIFT 9 /* max(e such that 10**e fits in a digit) */
58 #define _PyLong_DECIMAL_SHIFT 4 /* max(e such that 10**e fits in a digit) */
72 #error "longobject.c requires that PyLong_SHIFT be divisible by 5"
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
sample_doctest.py 1 """This is a sample module that doesn't really test anything all that
6 It's important that the numbers remain constant as another test is
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/SmmBaseHelper/
PageFaultHandler.c 2 Page fault handler that does nothing.
16 The dummy handler that does nothing.
18 The function is only used by systems that don't use paging but need
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Include/Guid/
HdBootVariable.h 6 the terms and conditions of the BSD License that accompanies this distribution.
19 /// This GUID is used for an EFI Variable that stores the front device pathes
20 /// for a partial device path that starts with the HD node.
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/
HwErrRecSupport.h 2 Set the level of support for Hardware Error Record Persistence that is
22 Set the HwErrRecSupport variable contains a binary UINT16 that supplies the
23 level of support for Hardware Error Record Persistence that is implemented
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/
VgaClassDxe.uni 2 // VGA Class Driver that managers VGA devices and produces Simple Text Output Protocol.
4 // The VGA Class Driver that manages VGA devices and produces Simple Text Output Protocol.
21 #string STR_MODULE_DESCRIPTION #language en-US "The VGA Class Driver that manages VGA devices and produces Simple Text Output Protocol."
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/
PeiSmbusLibSmbusPpi.uni 2 // SMBUS library that layers on top of the SMBUS PPI.
4 // The SMBUS library that layers on top of the SMBUS PPI.
20 #string STR_MODULE_DESCRIPTION #language en-US "The SMBUS library that layers on top of the SMBUS PPI."
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/
ComponentName.c 21 // UEFI drivers that follow the UEFI Driver Model. Refer to the Driver Writer's
34 Retrieves a Unicode string that is the user readable name of the UEFI Driver.
38 This is the language of the driver name that that the caller
73 Retrieves a Unicode string that is the user readable name of the controller
74 that is being managed by an UEFI Driver.
77 @param DeviceHandle The handle of a controller that the driver specified by
81 of. This is an optional parameter that may be NULL. It
83 for a bus drivers that wish to retrieve the name of the
85 that wishes to retrieve the name of a child controller.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
DxePrintLibPrint2Protocol.uni 2 // Library instance that implements Print Library class based on protocol gEfiPrint2ProtocolGuid.
4 // Library instance that implements Print Library class based on protocol gEfiPrint2ProtocolGuid.
20 #string STR_MODULE_DESCRIPTION #language en-US "Library instance that implements Print Library class based on protocol gEfiPrint2ProtocolGuid."

Completed in 1945 milliseconds

<<81828384858687888990>>