Home
last modified time | relevance | path

Searched full:smart (Results 1 – 25 of 1036) sorted by relevance

12345678910>>...42

/external/tensorflow/tensorflow/lite/g3doc/examples/smart_reply/
Doverview.md1 # Smart reply
7 Our smart reply model generates reply suggestions based on chat messages. The
16 There is a TensorFlow Lite sample application that demonstrates the smart reply
40 <img alt="Animation showing smart reply" src="images/smart_reply.gif" style="max-width: 300px"/>
52 …<li><a href="https://www.blog.google/products/gmail/save-time-with-smart-reply-in-gmail/">Gmail</a…
55 …<li><a href="https://research.googleblog.com/2017/02/on-device-machine-intelligence.html">Smart Re…
/external/libtextclassifier/java/src/com/android/textclassifier/common/logging/
DTextClassifierEvent.java53 * Smart selection
112 /** Smart selection triggered for a single token (word). */
114 /** Smart selection triggered spanning multiple tokens (words). */
118 /** Smart actions shown to the user. */
132 /** User clicked on a Smart action. */
142 /** User reset the smart selection. */
388 * // 3 smart actions are shown at index 0, 1, 2 respectively in response to a link click.
396 * // Smart action at index 1 is activated.
439 * This class represents events that are related to the smart text selection feature.
450 * // System smart-selects a recognized entity. e.g. "New York City".
[all …]
/external/snakeyaml/src/test/java/examples/collections/
DTypeSafeMap2Test.java206 private boolean smart; field in TypeSafeMap2Test.SuperMan
212 private SuperMan(String name, String role, boolean smart) { in SuperMan() argument
214 this.smart = smart; in SuperMan()
218 return smart; in isSmart()
221 public void setSmart(boolean smart) { in setSmart() argument
222 this.smart = smart; in setSmart()
/external/sfntly/doc/
Dsmart_pointer_usage.md1 Usage of smart pointers in sfntly C++ port
4 In sfntly C++ port, an object ref-counting and smart pointer mechanism
9 QueryInterface). Ptr&lt;&gt; is a smart pointer class like
41 - Virtual inherit from RefCount interface in base class if smart
53 > In this case the smart pointer is pretty dumb and dont count on it to
62 - Smart pointers here are very bad candidates for function parameters
79 > difference between assignment and attachment with ATL smart
97 > The implementation of COM-like ref-counting and smart pointer remedies
/external/sfntly/cpp/src/sfntly/port/
Drefcount.h17 // Object reference count and smart pointer implementation.
19 // Smart pointer usage in sfntly:
21 // sfntly carries a smart pointer implementation like COM. Ref-countable object
23 // IUnknown (but no QueryInterface). Use a Ptr<> based smart pointer to hold
42 // 1. Virtual inherit from RefCount interface in base class if smart pointers
49 // In this case the smart pointer is pretty dumb and don't count on it to
54 // 4. Smart pointers here are very bad candidates for function parameters. Use
175 // semi-smart pointer for RefCount derived objects, similar to CComPtr
/external/icu/libicu/cts_headers/unicode/
Dlocalpointer.h24 * \brief C++ API: "Smart pointers" for use with and in ICU4C C++ code.
31 * but none of those provide for all of the goals for ICU smart pointers:
32 * - Smart pointer owns the object and releases it when it goes out of scope.
50 * "Smart pointer" base class; do not use directly: use LocalPointer etc.
52 * Base class for smart pointer classes that do not throw exceptions.
173 * "Smart pointer" class, deletes objects via the standard C++ delete operator.
221 * @param src source smart pointer
251 * @param src source smart pointer
277 * @param other other smart pointer
348 * "Smart pointer" class, deletes objects via the C++ array delete[] operator.
[all …]
/external/cronet/third_party/icu/source/common/unicode/
Dlocalpointer.h24 * \brief C++ API: "Smart pointers" for use with and in ICU4C C++ code.
31 * but none of those provide for all of the goals for ICU smart pointers:
32 * - Smart pointer owns the object and releases it when it goes out of scope.
50 * "Smart pointer" base class; do not use directly: use LocalPointer etc.
52 * Base class for smart pointer classes that do not throw exceptions.
173 * "Smart pointer" class, deletes objects via the standard C++ delete operator.
221 * @param src source smart pointer
251 * @param src source smart pointer
277 * @param other other smart pointer
348 * "Smart pointer" class, deletes objects via the C++ array delete[] operator.
[all …]
/external/icu/icu4c/source/common/unicode/
Dlocalpointer.h24 * \brief C++ API: "Smart pointers" for use with and in ICU4C C++ code.
31 * but none of those provide for all of the goals for ICU smart pointers:
32 * - Smart pointer owns the object and releases it when it goes out of scope.
50 * "Smart pointer" base class; do not use directly: use LocalPointer etc.
52 * Base class for smart pointer classes that do not throw exceptions.
173 * "Smart pointer" class, deletes objects via the standard C++ delete operator.
221 * @param src source smart pointer
251 * @param src source smart pointer
277 * @param other other smart pointer
348 * "Smart pointer" class, deletes objects via the C++ array delete[] operator.
[all …]
/external/python/pybind11/docs/advanced/
Dsmart_ptrs.rst1 Smart pointers
40 It is possible to switch to other types of reference counting wrappers or smart
91 1. For types that are managed by a smart pointer class, never use raw pointers
116 Custom smart pointers
120 box. For any other custom smart pointer, transparent conversions can be enabled
148 By default, pybind11 assumes that your custom smart pointer has a standard
/external/tensorflow/tensorflow/compiler/xla/pjrt/c/
Dpjrt_c_api_helpers.h29 // Pass in an API pointer; receive a custom deleter for smart pointers.
35 // Pass in an API pointer; receive a custom deleter for smart pointers.
41 // Pass in an API pointer; receive a custom deleter for smart pointers.
61 // Pass in an API pointer; receive a custom deleter for smart pointers.
/external/llvm/include/llvm/ADT/
DIntrusiveRefCntPtr.h1 //== llvm/ADT/IntrusiveRefCntPtr.h - Smart Refcounting Pointer ---*- C++ -*-==//
11 // implements a "smart" pointer for objects that maintain their own
37 /// typically handled with IntrusiveRefCntPtr "smart pointers" (see below)
97 /// \c IntrusiveRefCntPtr "smart pointers" which automatically handle the
118 /// IntrusiveRefCntPtr - A template class that implements a "smart pointer"
121 /// IntrusivePtrAddRef/IntrusivePtrRelease. The smart pointers
123 /// smart pointer the reference count of the wrapped object is
124 /// incremented and upon destruction of the smart pointer the
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DIntrusiveRefCntPtr.h1 //== llvm/ADT/IntrusiveRefCntPtr.h - Smart Refcounting Pointer ---*- C++ -*-==//
11 // implements a "smart" pointer for objects that maintain their own
34 /// typically handled with IntrusiveRefCntPtr "smart pointers" (see below)
95 /// \c IntrusiveRefCntPtr "smart pointers" which automatically handle the
116 /// IntrusiveRefCntPtr - A template class that implements a "smart pointer"
119 /// IntrusivePtrAddRef/IntrusivePtrRelease. The smart pointers
121 /// smart pointer the reference count of the wrapped object is
122 /// incremented and upon destruction of the smart pointer the
/external/python/google-api-python-client/docs/dyn/
Dhomegraph_v1.devices.html85 …ts device state and optionally sends device notifications. Called by your smart home Action when t…
88 …/developers.google.com/assistant/smarthome/reference/intent/sync) to your smart home Action to upd…
130 …hApiService.Query) call. This should follow the same format as the Google smart home `action.devic…
144 …<pre>Reports device state and optionally sends device notifications. Called by your smart home Act…
182 …/developers.google.com/assistant/smarthome/reference/intent/sync) to your smart home Action to upd…
226 …phApiService.Sync) call. This should follow the same format as the Google smart home `action.devic…
234 …;: { # Custom device attributes stored in Home Graph and provided to your smart home Action in eac…
244 … # Identifiers used to describe the device. # Names given to this device by your smart home Action.
253 …cates whether your smart home Action will report notifications to Google for this device via Repor…
256 &quot;agentId&quot;: &quot;A String&quot;, # Project ID for your smart home Action.
[all …]
Ddialogflow_v2beta1.projects.locations.conversations.participants.suggestions.html88 <p class="firstline">Gets smart replies for a participant based on specific historical messages.</p>
188 <pre>Gets smart replies for a participant based on specific historical messages.
197 …estion for. This provides a way for user to get follow up smart reply suggestion after a smart rep…
215 …&quot;smartReplyAnswers&quot;: [ # Output only. Multiple reply options provided by smart reply ser…
216 { # Represents a smart reply answer.
218 …&quot;confidence&quot;: 3.14, # Smart reply confidence. The system&#x27;s confidence score that th…
/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dhomegraph.v1.json111 …"description": "Unlinks the given third-party user from your smart home Action. All data related t…
163 …ts device state and optionally sends device notifications. Called by your smart home Action when t…
181 …/developers.google.com/assistant/smarthome/reference/intent/sync) to your smart home Action to upd…
238 "description": "Project ID for your smart home Action.",
265 …"description": "Custom device attributes stored in Home Graph and provided to your smart home Acti…
278 "description": "Names given to this device by your smart home Action."
281 …cates whether your smart home Action will report notifications to Google for this device via Repor…
311 …"description": "Indicates whether your smart home Action will report state of this device to Googl…
419 …hApiService.Query) call. This should follow the same format as the Google smart home `action.devic…
560 …phApiService.Sync) call. This should follow the same format as the Google smart home `action.devic…
/external/python/cpython2/Lib/idlelib/
Dconfig-keys.def47 smart-backspace=<Key-BackSpace>
49 smart-indent=<Key-Tab>
98 smart-backspace=<Key-BackSpace>
100 smart-indent=<Key-Tab>
149 smart-backspace=<Key-BackSpace>
151 smart-indent=<Key-Tab>
187 smart-backspace = <Key-BackSpace>
190 smart-indent = <Key-Tab>
/external/python/cpython3/Lib/idlelib/
Dconfig-keys.def47 smart-backspace=<Key-BackSpace>
49 smart-indent=<Key-Tab>
107 smart-backspace=<Key-BackSpace>
109 smart-indent=<Key-Tab>
167 smart-backspace = <Key-BackSpace>
169 smart-indent = <Key-Tab>
227 smart-backspace=<Key-BackSpace>
229 smart-indent=<Key-Tab>
274 smart-backspace = <Key-BackSpace>
277 smart-indent = <Key-Tab>
/external/libtextclassifier/native/actions/
Dactions_model.fbs86 // int, the number of smart replies to produce.
273 // Lower bound thresholds for the smart reply model prediction output.
276 // Maximum sensitive score for which actions and smart replies are shown.
311 // Smart reply thresholds.
329 // Text of a smart reply action.
439 // If true, suppresses smart replies if other smart actions are suggested.
559 // Default number of smart reply predictions.
/external/sfntly/cpp/src/sample/chromium/
Dsubsetter_impl.h30 // Smart pointer usage in sfntly:
32 // sfntly carries a smart pointer implementation like COM. Ref-countable object
34 // IUnknown (but no QueryInterface). Use a Ptr<> based smart pointer to hold
/external/autotest/client/site_tests/hardware_StorageWearoutDetect/
Dhardware_StorageWearoutDetect.py13 Check wear out status for storage device available in SMART for SSD and
18 - At least one SMART variable has value under its threshold
20 - Percentage Used reported by SMART for NVMe or SATA is above 90
37 # Example "SMART/Health Information (NVMe Log 0x02, NSID 0xffffffff)"
Dcontrol.non_cache14 This test check wear out status for storage device available in SMART for SSD
17 SMART value is failing or eMMC wear out is in 90-100% band or higher.
Dcontrol21 This test check wear out status for storage device available in SMART for SSD
24 SMART value is failing or eMMC wear out is in 90-100% band or higher.
/external/pigweed/pw_intrusive_ptr/
Ddocs.rst9 ``pw::IntrusivePtr`` is a smart shared pointer that relies on the pointed-at
61 ``pw::Recyclable`` is a mixin that can be used with supported smart pointers
82 ``Recyclable`` can be used to avoid heap allocation when using smart pointers,
/external/angle/third_party/abseil-cpp/absl/base/internal/
Dnullability_impl.h57 "Template argument must be a raw or supported smart pointer "
65 "Template argument must be a raw or supported smart pointer "
73 "Template argument must be a raw or supported smart pointer "
/external/snakeyaml/src/test/resources/examples/
Dmap-bean-13.yaml8 smart: false
20 smart: true

12345678910>>...42