Home
last modified time | relevance | path

Searched full:behavior (Results 1 – 25 of 18036) sorted by relevance

12345678910>>...722

/aosp_15_r20/external/cronet/base/android/java/src/org/chromium/base/cached_flags/
H A DCachedFlagsSafeMode.java52 Behavior.UNKNOWN,
53 Behavior.NOT_ENGAGED_BELOW_THRESHOLD,
54 Behavior.ENGAGED_WITH_SAFE_VALUES,
55 Behavior.ENGAGED_IGNORING_OUTDATED_SAFE_VALUES,
56 Behavior.ENGAGED_WITHOUT_SAFE_VALUES
58 @interface Behavior { annotation in CachedFlagsSafeMode
68 private AtomicInteger mBehavior = new AtomicInteger(Behavior.UNKNOWN);
89 if (mBehavior.get() != Behavior.UNKNOWN) return; in onFlagChecked()
93 int behavior; in onFlagChecked() local
95 behavior = Behavior.ENGAGED_WITHOUT_SAFE_VALUES; in onFlagChecked()
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/detective/src/main/resources/codegen-resources/
H A Dservice-2.json29 …e data to a behavior graph. This operation can only be called by an invited member account. </p> <…
45 "documentation":"<p>Gets data source package information for the behavior graph.</p>"
77behavior graph for the calling account, and sets that account as the administrator account. This o…
94behavior graph, the Detective administrator account uses <code>CreateMembers</code> to enable orga…
109behavior graph and queues it to be deleted. This operation removes the behavior graph from each me…
126behavior graph. The removed accounts no longer contribute data to the behavior graph. This operati…
142 …"documentation":"<p>Returns information about the configuration for the organization behavior grap…
156 …e administrator account in the current Region. Deletes the organization behavior graph.</p> <p>Can…
172behavior graph. This operation can only be called by an invited member account that has the <code>…
187 …tive enabled, then enables Detective for that account and creates a new behavior graph.</p> <p>Can…
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/lite/nnapi/sl/public/
H A DNeuralNetworksSupportLibraryImpl.h177 * to the model cache may affect the driver's execution behavior, and a
631 * Behavior, arguments, and outputs match NNAPI Runtime function
640 * Behavior, arguments, and outputs match NNAPI Runtime function
648 * ANeuralNetworksCompilation_createForDevices}. Behavior, arguments, and
659 * Behavior, arguments, and outputs match NNAPI Runtime function
668 * Behavior, arguments, and outputs match NNAPI Runtime function
677 * ANeuralNetworksCompilation_getPreferredMemoryAlignmentForInput}. Behavior,
688 * ANeuralNetworksCompilation_getPreferredMemoryAlignmentForOutput}. Behavior,
699 * ANeuralNetworksCompilation_getPreferredMemoryPaddingForInput}. Behavior,
710 * ANeuralNetworksCompilation_getPreferredMemoryPaddingForOutput}. Behavior,
[all …]
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/framework/interfaces/face/
H A Dutilities.py46 def unary_unary_inline(behavior): argument
47 """Creates an face.MethodImplementation for the given behavior.
50 behavior: The implementation of a unary-unary RPC method as a callable value
55 An face.MethodImplementation derived from the given behavior.
60 behavior,
71 def unary_stream_inline(behavior): argument
72 """Creates an face.MethodImplementation for the given behavior.
75 behavior: The implementation of a unary-stream RPC method as a callable
80 An face.MethodImplementation derived from the given behavior.
86 behavior,
[all …]
/aosp_15_r20/packages/modules/NeuralNetworks/shim_and_sl/public/
DNeuralNetworksSupportLibraryImpl.h168 * execution behavior, and a malicious client could make use of this to execute beyond the granted
632 * Behavior, arguments, and outputs match NNAPI Runtime function
641 * Behavior, arguments, and outputs match NNAPI Runtime function
649 * Behavior, arguments, and outputs match NNAPI Runtime function
660 * Behavior, arguments, and outputs match NNAPI Runtime function
668 * Behavior, arguments, and outputs match NNAPI Runtime function
676 * ANeuralNetworksCompilation_getPreferredMemoryAlignmentForInput}. Behavior, arguments, and
686 * ANeuralNetworksCompilation_getPreferredMemoryAlignmentForOutput}. Behavior, arguments, and
696 * ANeuralNetworksCompilation_getPreferredMemoryPaddingForInput}. Behavior, arguments, and
706 * ANeuralNetworksCompilation_getPreferredMemoryPaddingForOutput}. Behavior, arguments, and
[all …]
/aosp_15_r20/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp228 const Behavior* behavior = getKeyBehavior(keyCode, metaState); in getCharacter() local
229 if (behavior != nullptr) { in getCharacter()
230 result = behavior->character; in getCharacter()
244 const Behavior* behavior = getKeyBehavior(keyCode, metaState); in getFallbackAction() local
245 if (behavior != nullptr) { in getFallbackAction()
246 if (behavior->fallbackKeyCode) { in getFallbackAction()
247 outFallbackAction->keyCode = behavior->fallbackKeyCode; in getFallbackAction()
248 outFallbackAction->metaState = metaState & ~behavior->metaState; in getFallbackAction()
266 // Try to find the most general behavior that maps to this character. in getMatch()
267 // For example, the base key behavior will usually be last in the list. in getMatch()
[all …]
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DSystemUi.java35 * status bar and navigation bar behavior e.g. in your test setup:
56 * behavior, but if necessary custom system bar and navigation bar behaviors can be defined by
60 // TODO: Make public when we're happy with the implementation/api/behavior
62 /** Default status bar behavior which renders a 0 height status bar. */
65 /** Standard Android status bar behavior which behaves similarly to real Android. */
68 /** Default navigation bar behavior which renders a 0 height navigation bar. */
71 /** Standard Android gestural navigation bar behavior. */
75 /** Standard Android three button navigation bar behavior. */
120 /** Returns the status bar behavior. The default status bar behavior is {@link #NO_STATUS_BAR}. */
126 * Sets the status bar behavior.
[all …]
/aosp_15_r20/external/cronet/base/android/junit/src/org/chromium/base/cached_flags/
H A DCachedFeatureFlagsSafeModeUnitTest.java23 import org.chromium.base.cached_flags.CachedFlagsSafeMode.Behavior;
91 Behavior.NOT_ENGAGED_BELOW_THRESHOLD, in testTwoCrashesInARow_engageSafeMode()
111 Behavior.NOT_ENGAGED_BELOW_THRESHOLD, in testTwoCrashesInARow_engageSafeMode()
131 Behavior.NOT_ENGAGED_BELOW_THRESHOLD, in testTwoCrashesInARow_engageSafeMode()
144 Behavior.NOT_ENGAGED_BELOW_THRESHOLD, in testTwoCrashesInARow_engageSafeMode()
158 Behavior.ENGAGED_WITH_SAFE_VALUES, in testTwoCrashesInARow_engageSafeMode()
178 Behavior.ENGAGED_WITH_SAFE_VALUES, in testTwoCrashesInARow_engageSafeMode()
197 Behavior.NOT_ENGAGED_BELOW_THRESHOLD, in testTwoCrashesInARow_engageSafeMode()
208 Behavior.NOT_ENGAGED_BELOW_THRESHOLD, in testSafeModeFetchesBadConfig_keepsStreak()
214 Behavior.NOT_ENGAGED_BELOW_THRESHOLD, in testSafeModeFetchesBadConfig_keepsStreak()
[all …]
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
H A DDecimalFormatTest.java1077 // This test serves as a regression test for Android's behavior.
2226 // behavior in test_format_withRoundingMode()
2229 assertEquals("Incorrect RoundingMode behavior: RoundingMode.HALF_DOWN", "11", result); in test_format_withRoundingMode()
2232 assertEquals("Incorrect RoundingMode behavior: RoundingMode.HALF_DOWN", "11", result); in test_format_withRoundingMode()
2235 assertEquals("Incorrect RoundingMode behavior: RoundingMode.HALF_DOWN", "12", result); in test_format_withRoundingMode()
2238 // behavior in test_format_withRoundingMode()
2241 assertEquals("Incorrect RoundingMode behavior: RoundingMode.CEILING", "12", result); in test_format_withRoundingMode()
2244 assertEquals("Incorrect RoundingMode behavior: RoundingMode.CEILING", "-11", result); in test_format_withRoundingMode()
2247 // behavior in test_format_withRoundingMode()
2250 assertEquals("Incorrect RoundingMode behavior: RoundingMode.DOWN", "11", result); in test_format_withRoundingMode()
[all …]
/aosp_15_r20/external/jemalloc_new/test/integration/
H A Dxallocx.c129 "Unexpected xallocx() behavior"); in TEST_BEGIN()
133 "Unexpected xallocx() behavior"); in TEST_BEGIN()
137 "Unexpected xallocx() behavior"); in TEST_BEGIN()
139 "Unexpected xallocx() behavior"); in TEST_BEGIN()
158 "Unexpected xallocx() behavior"); in TEST_BEGIN()
160 "Unexpected xallocx() behavior"); in TEST_BEGIN()
164 "Unexpected xallocx() behavior"); in TEST_BEGIN()
166 "Unexpected xallocx() behavior"); in TEST_BEGIN()
168 "Unexpected xallocx() behavior"); in TEST_BEGIN()
170 "Unexpected xallocx() behavior"); in TEST_BEGIN()
[all …]
/aosp_15_r20/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/
H A D_time.py29 for behavior in behaviors:
31 behavior()
33 _LOGGER.exception('Exception calling behavior "%r"!', behavior)
86 def __init__(self, state, behavior, time): argument
88 self._behavior = behavior
166 def _call_at(self, behavior, time): argument
168 self._state.times_to_behaviors[time].append(behavior)
175 return _Future(self._state, behavior, time)
180 def call_in(self, behavior, delay): argument
181 return self._call_at(behavior, _time.time() + delay)
[all …]
/aosp_15_r20/external/sdk-platform-java/java-common-protos/proto-google-common-protos/src/main/java/com/google/api/
H A DSystemParameterRule.java139 * names are used the behavior is implementation-dependent.
140 * If none of the specified names are present the behavior is
156 * names are used the behavior is implementation-dependent.
157 * If none of the specified names are present the behavior is
174 * names are used the behavior is implementation-dependent.
175 * If none of the specified names are present the behavior is
191 * names are used the behavior is implementation-dependent.
192 * If none of the specified names are present the behavior is
208 * names are used the behavior is implementation-dependent.
209 * If none of the specified names are present the behavior is
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/metrics/
Ddoc.go233 /godebug/non-default-behavior/asynctimerchan:events
237 /godebug/non-default-behavior/execerrdot:events
241 /godebug/non-default-behavior/gocachehash:events
245 /godebug/non-default-behavior/gocachetest:events
249 /godebug/non-default-behavior/gocacheverify:events
253 /godebug/non-default-behavior/gotypesalias:events
257 /godebug/non-default-behavior/http2client:events
261 /godebug/non-default-behavior/http2server:events
265 /godebug/non-default-behavior/httplaxcontentlength:events
270 /godebug/non-default-behavior/httpmuxgo121:events
[all …]
/aosp_15_r20/external/grpc-grpc/src/python/grpcio/grpc/framework/foundation/
H A Dcallable_util.py54 def _call_logging_exceptions(behavior, message, *args, **kwargs): argument
57 Outcome.Kind.RETURNED, behavior(*args, **kwargs), None
64 def with_exceptions_logged(behavior, message): argument
68 behavior: Any callable.
69 message: A string to log if the behavior raises an exception.
72 A callable that when executed invokes the given behavior. The returned
73 callable takes the same arguments as the given behavior but returns a
74 future.Outcome describing whether the given behavior returned a value or
78 @functools.wraps(behavior)
80 return _call_logging_exceptions(behavior, message, *args, **kwargs)
[all …]
/aosp_15_r20/external/clang/test/SemaObjC/
H A Dobjc-literal-comparison.m39 …/ expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{…
40 …/ expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{…
41 …/ expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{…
42 …/ expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{…
44 …/ expected-warning{{direct comparison of an array literal has undefined behavior}} expected-note{{…
45 …pected-warning{{direct comparison of a dictionary literal has undefined behavior}} expected-note{{…
46 … expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{…
47 … expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{…
48 … expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{…
49 …expected-warning{{direct comparison of a boxed expression has undefined behavior}} expected-note{{…
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/modules/Permission/PermissionController/role-controller/role-controller/android_common/turbine/
Drole-controller.jar.rsp1behavior/AssistantRoleBehavior.java packages/modules/Permission/PermissionController/role-controll…
/aosp_15_r20/out/soong/.intermediates/packages/modules/Permission/PermissionController/role-controller/role-controller/android_common_apex30/turbine/
Drole-controller.jar.rsp1behavior/AssistantRoleBehavior.java packages/modules/Permission/PermissionController/role-controll…
/aosp_15_r20/out/soong/.intermediates/packages/modules/Permission/PermissionController/role-controller/role-controller/android_common_apex30/javac/
Drole-controller.jar.rsp1behavior/AssistantRoleBehavior.java packages/modules/Permission/PermissionController/role-controll…
/aosp_15_r20/packages/modules/HealthFitness/tests/unittests/src/com/android/server/healthconnect/migration/
DMigrationStateManagerTest.java152 * Tests on package install method if the package is migration aware. Expected behavior: Move to
167 * Tests on package install method if the package is migration unaware. Expected behavior: Move
182 /** Expected behavior: No state change. */
194 /** Expected behavior: Move to allowed state. */
209 * unaware, there shouldn't be any state change. Expected behavior: No state change.
226 * behavior: No state change.
240 * behavior: No state change.
254 * behavior: No state change.
268 * behavior: No state change.
280 /** Expected behavior: No state change. */
[all …]
/aosp_15_r20/external/coreboot/tests/console/
H A Drouting-test.c14 int behavior; member
16 {.log_lvl = -1, .msg_lvl = BIOS_ERR, .behavior = CONSOLE_LOG_NONE},
17 {.log_lvl = -1, .msg_lvl = BIOS_SPEW, .behavior = CONSOLE_LOG_NONE},
19 {.log_lvl = BIOS_DEBUG, .msg_lvl = BIOS_ERR, .behavior = CONSOLE_LOG_ALL},
20 {.log_lvl = BIOS_DEBUG, .msg_lvl = BIOS_DEBUG, .behavior = CONSOLE_LOG_ALL},
21 {.log_lvl = BIOS_DEBUG, .msg_lvl = BIOS_SPEW, .behavior = CONSOLE_LOG_NONE},
23 {.log_lvl = BIOS_SPEW, .msg_lvl = BIOS_ERR, .behavior = CONSOLE_LOG_ALL},
24 {.log_lvl = BIOS_SPEW, .msg_lvl = BIOS_DEBUG, .behavior = CONSOLE_LOG_ALL},
25 {.log_lvl = BIOS_SPEW, .msg_lvl = BIOS_SPEW, .behavior = CONSOLE_LOG_ALL},
28 {.log_lvl = BIOS_WARNING, .msg_lvl = BIOS_ERR, .behavior = CONSOLE_LOG_ALL},
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Ddns_v1.responsePolicyRules.html117 { # A Response Policy Rule is a selector that applies its behavior to queries that match the select…
118 …&quot;behavior&quot;: &quot;A String&quot;, # Answer this query with a behavior rather than DNS da…
121 …directly with DNS data. These ResourceRecordSets override any other DNS behavior for the matched n…
149 …{ # A Response Policy Rule is a selector that applies its behavior to queries that match the selec…
150 …&quot;behavior&quot;: &quot;A String&quot;, # Answer this query with a behavior rather than DNS da…
153 …directly with DNS data. These ResourceRecordSets override any other DNS behavior for the matched n…
206 …{ # A Response Policy Rule is a selector that applies its behavior to queries that match the selec…
207 …&quot;behavior&quot;: &quot;A String&quot;, # Answer this query with a behavior rather than DNS da…
210 …directly with DNS data. These ResourceRecordSets override any other DNS behavior for the matched n…
253 …{ # A Response Policy Rule is a selector that applies its behavior to queries that match the selec…
[all …]
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/net/
H A Dsrv6_end_next_csid_l3vpn_test.sh7 # End behavior.
19 # ii) The SRv6 End behavior [1] advances the active SID in the SID List
26 # The NEXT-C-SID is provided as a "flavor" of the SRv6 End behavior
29 # When no more C-SIDs are available in the Argument, the SRv6 End behavior
32 # iv) The SRv6 End.DT46 behavior [1] is used for removing the SRv6 Policy and,
33 # thus, it terminates the VPN tunnel. Such a behavior is capable of
82 # | End.DT46 behavior |
85 # | of SRv6 End behavior |
88 # | behavior when NEXT-C-SID compression is turned on |
144 # H.Encaps.Red behavior which avoids the presence of the SRH at all, since it
[all …]
/aosp_15_r20/platform_testing/libraries/device-collectors/src/test/java/android/device/collectors/
H A DPerfettoListenerTest.java147 // Test run start behavior in testPerfettoPerTestSuccessFlow()
150 // Test test start behavior in testPerfettoPerTestSuccessFlow()
175 // Test run start behavior in testPerfettoPerTestFailureFlowDefault()
178 // Test test start behavior in testPerfettoPerTestFailureFlowDefault()
203 // Test run start behavior in testPerfettoPerTestFailureFlowWithSkipMmetrics()
206 // Test test start behavior in testPerfettoPerTestFailureFlowWithSkipMmetrics()
228 // Test run start behavior in testPerfettoDefaultStartWaitTime()
231 // Test test start behavior in testPerfettoDefaultStartWaitTime()
255 // Test run start behavior in testPerfettoCustomStartWaitTime()
258 // Test test start behavior in testPerfettoCustomStartWaitTime()
[all …]
/aosp_15_r20/external/protobuf/benchmarks/util/
H A Dresult_parser.py69 behavior = benchmark["name"][len(data_filename) + 1:]
75 "behavior": behavior,
105 "behavior": "synthetic",
116 # behavior: results,
134 for behavior in result["benchmarks"]:
138 "behavior": behavior,
139 "throughput": result["benchmarks"][behavior]
193 "behavior": result["scenario"]["benchmarkSpec"]["methodName"],
227 behavior = behavior_with_suffix
229 behavior = behavior_with_suffix[:last_dash]
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/benchmarks/util/
H A Dresult_parser.py69 behavior = benchmark["name"][len(data_filename) + 1:]
75 "behavior": behavior,
105 "behavior": "synthetic",
116 # behavior: results,
134 for behavior in result["benchmarks"]:
138 "behavior": behavior,
139 "throughput": result["benchmarks"][behavior]
193 "behavior": result["scenario"]["benchmarkSpec"]["methodName"],
227 behavior = behavior_with_suffix
229 behavior = behavior_with_suffix[:last_dash]
[all …]

12345678910>>...722