Home
last modified time | relevance | path

Searched full:engine (Results 1 – 25 of 12319) sorted by relevance

12345678910>>...493

/aosp_15_r20/external/pdfium/xfa/fde/
H A Dcfde_texteditengine_unittest.cpp56 CFDE_TextEditEngine* engine() const { return engine_.get(); } in engine() function in CFDE_TextEditEngineTest
64 EXPECT_STREQ(L"", engine()->GetText().c_str()); in TEST_F()
66 engine()->Insert(0, L""); in TEST_F()
67 EXPECT_STREQ(L"", engine()->GetText().c_str()); in TEST_F()
68 EXPECT_EQ(0U, engine()->GetLength()); in TEST_F()
70 engine()->Insert(0, L"Hello"); in TEST_F()
71 EXPECT_STREQ(L"Hello", engine()->GetText().c_str()); in TEST_F()
72 EXPECT_EQ(5U, engine()->GetLength()); in TEST_F()
74 engine()->Insert(5, L" World"); in TEST_F()
75 EXPECT_STREQ(L"Hello World", engine()->GetText().c_str()); in TEST_F()
[all …]
/aosp_15_r20/out/soong/.intermediates/external/apache-velocity-engine/apache-velocity-engine-core/android_common_apex33/javac/
Dapache-velocity-engine-core.jar.rsp1engine/velocity-engine-core/src/main/java/org/apache/velocity/Template.java external/apache-veloci…
/aosp_15_r20/out/soong/.intermediates/external/apache-velocity-engine/apache-velocity-engine-core/android_common_apex33/turbine/
Dapache-velocity-engine-core.jar.rsp1engine/velocity-engine-core/src/main/java/org/apache/velocity/Template.java external/apache-veloci…
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/audio/aidl/default/config/audioPolicy/engine/audio_policy_engine_configuration_aidl_default.docs/android_common/everything/api/
Dcurrent.txt2 package android.audio.policy.engine.configuration {
6 …method @Nullable public java.util.List<android.audio.policy.engine.configuration.AttributesType> g…
7 … method @Nullable public android.audio.policy.engine.configuration.BundleType getBundle_optional();
8 …method @Nullable public android.audio.policy.engine.configuration.ContentTypeType getContentType_o…
9 method @Nullable public android.audio.policy.engine.configuration.FlagsType getFlags_optional();
10 … method @Nullable public android.audio.policy.engine.configuration.SourceType getSource_optional();
11 method @Nullable public android.audio.policy.engine.configuration.Stream getStreamType();
12 method @Nullable public android.audio.policy.engine.configuration.UsageType getUsage_optional();
14 …method public void setBundle_optional(@Nullable android.audio.policy.engine.configuration.BundleTy…
15 …method public void setContentType_optional(@Nullable android.audio.policy.engine.configuration.Con…
[all …]
/aosp_15_r20/hardware/interfaces/audio/aidl/default/config/audioPolicy/engine/api/
H A Dcurrent.txt2 package android.audio.policy.engine.configuration {
6 …method @Nullable public java.util.List<android.audio.policy.engine.configuration.AttributesType> g…
7 … method @Nullable public android.audio.policy.engine.configuration.BundleType getBundle_optional();
8 …method @Nullable public android.audio.policy.engine.configuration.ContentTypeType getContentType_o…
9 method @Nullable public android.audio.policy.engine.configuration.FlagsType getFlags_optional();
10 … method @Nullable public android.audio.policy.engine.configuration.SourceType getSource_optional();
11 method @Nullable public android.audio.policy.engine.configuration.Stream getStreamType();
12 method @Nullable public android.audio.policy.engine.configuration.UsageType getUsage_optional();
14 …method public void setBundle_optional(@Nullable android.audio.policy.engine.configuration.BundleTy…
15 …method public void setContentType_optional(@Nullable android.audio.policy.engine.configuration.Con…
[all …]
/aosp_15_r20/external/pdfium/core/fpdfapi/page/
H A Dcpdf_psengine_unittest.cpp14 float DoOperator0(CPDF_PSEngine* engine, PDF_PSOP op) { in DoOperator0() argument
15 EXPECT_EQ(0u, engine->GetStackSize()); in DoOperator0()
16 engine->DoOperator(op); in DoOperator0()
17 float ret = engine->Pop(); in DoOperator0()
18 EXPECT_EQ(0u, engine->GetStackSize()); in DoOperator0()
22 float DoOperator1(CPDF_PSEngine* engine, float v1, PDF_PSOP op) { in DoOperator1() argument
23 EXPECT_EQ(0u, engine->GetStackSize()); in DoOperator1()
24 engine->Push(v1); in DoOperator1()
25 engine->DoOperator(op); in DoOperator1()
26 float ret = engine->Pop(); in DoOperator1()
[all …]
/aosp_15_r20/out/soong/.intermediates/hardware/interfaces/audio/aidl/default/config/audioPolicy/engine/audio_policy_engine_configuration_aidl_default/gen/cpp/include/
Dandroid_audio_policy_engine_configuration_enums.h12 namespace engine {
187 } // engine
198 …::array<::android::audio::policy::engine::configuration::Version, 1> xsdc_enum_values<::android::a…
199 ::android::audio::policy::engine::configuration::Version::_1_0,
201 …::array<::android::audio::policy::engine::configuration::Stream, 13> xsdc_enum_values<::android::a…
202 ::android::audio::policy::engine::configuration::Stream::AUDIO_STREAM_DEFAULT,
203 ::android::audio::policy::engine::configuration::Stream::AUDIO_STREAM_VOICE_CALL,
204 ::android::audio::policy::engine::configuration::Stream::AUDIO_STREAM_SYSTEM,
205 ::android::audio::policy::engine::configuration::Stream::AUDIO_STREAM_RING,
206 ::android::audio::policy::engine::configuration::Stream::AUDIO_STREAM_MUSIC,
[all …]
/aosp_15_r20/external/abseil-cpp/absl/random/
H A Dbenchmarks.cc60 // random engine to speed initialization in the benchmarks.
92 // use_default_initialization<T> indicates whether the random engine
102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
105 // Initialize the random engine using the seed sequence SSeq, which in make_engine()
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
114 // Initialize the random engine using the default constructor. in make_engine()
115 return Engine(); in make_engine()
[all …]
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/random/
H A Dbenchmarks.cc60 // random engine to speed initialization in the benchmarks.
92 // use_default_initialization<T> indicates whether the random engine
102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
105 // Initialize the random engine using the seed sequence SSeq, which in make_engine()
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
114 // Initialize the random engine using the default constructor. in make_engine()
115 return Engine(); in make_engine()
[all …]
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/random/
H A Dbenchmarks.cc60 // random engine to speed initialization in the benchmarks.
92 // use_default_initialization<T> indicates whether the random engine
102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
105 // Initialize the random engine using the seed sequence SSeq, which in make_engine()
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
114 // Initialize the random engine using the default constructor. in make_engine()
115 return Engine(); in make_engine()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/
Dbenchmarks.cc60 // random engine to speed initialization in the benchmarks.
92 // use_default_initialization<T> indicates whether the random engine
102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
105 // Initialize the random engine using the seed sequence SSeq, which in make_engine()
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
114 // Initialize the random engine using the default constructor. in make_engine()
115 return Engine(); in make_engine()
[all …]
/aosp_15_r20/external/angle/third_party/abseil-cpp/absl/random/
H A Dbenchmarks.cc60 // random engine to speed initialization in the benchmarks.
92 // use_default_initialization<T> indicates whether the random engine
102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
105 // Initialize the random engine using the seed sequence SSeq, which in make_engine()
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
114 // Initialize the random engine using the default constructor. in make_engine()
115 return Engine(); in make_engine()
[all …]
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/random/
H A Dbenchmarks.cc60 // random engine to speed initialization in the benchmarks.
92 // use_default_initialization<T> indicates whether the random engine
102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
105 // Initialize the random engine using the seed sequence SSeq, which in make_engine()
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
114 // Initialize the random engine using the default constructor. in make_engine()
115 return Engine(); in make_engine()
[all …]
/aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/random/
H A Dbenchmarks.cc60 // random engine to speed initialization in the benchmarks.
92 // use_default_initialization<T> indicates whether the random engine
102 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
103 typename absl::enable_if_t<!use_default_initialization<Engine>::value, Engine>
105 // Initialize the random engine using the seed sequence SSeq, which in make_engine()
108 return Engine(seq); in make_engine()
111 template <typename Engine, typename SSeq = PrecompiledSeedSeq>
112 typename absl::enable_if_t<use_default_initialization<Engine>::value, Engine>
114 // Initialize the random engine using the default constructor. in make_engine()
115 return Engine(); in make_engine()
[all …]
/aosp_15_r20/external/webrtc/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c44 struct engine { struct
63 static int engine_init_display(struct engine* engine) { in engine_init_display() argument
99 ANativeWindow_setBuffersGeometry(engine->app->window, 0, 0, format); in engine_init_display()
101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL); in engine_init_display()
112 engine->display = display; in engine_init_display()
113 engine->context = context; in engine_init_display()
114 engine->surface = surface; in engine_init_display()
115 engine->width = w; in engine_init_display()
116 engine->height = h; in engine_init_display()
117 engine->state.angle = 0; in engine_init_display()
[all …]
/aosp_15_r20/external/deqp-deps/amber/src/
Dexecutor_test.cc23 #include "src/engine.h"
31 class EngineStub : public Engine {
33 EngineStub() : Engine() {} in EngineStub()
36 // Engine
207 std::unique_ptr<Engine> MakeEngine() { return MakeUnique<EngineStub>(); } in MakeEngine()
208 std::unique_ptr<Engine> MakeAndInitializeEngine( in MakeAndInitializeEngine()
212 std::unique_ptr<Engine> engine = MakeUnique<EngineStub>(); in MakeAndInitializeEngine() local
213 engine->Initialize(nullptr, nullptr, features, instance_extensions, in MakeAndInitializeEngine()
215 return engine; in MakeAndInitializeEngine()
217 EngineStub* ToStub(Engine* engine) { in ToStub() argument
[all …]
/aosp_15_r20/external/jazzer-api/src/test/java/com/code_intelligence/jazzer/junit/
H A DRegressionTestTest.java19 import static org.junit.platform.engine.discovery.DiscoverySelectors.selectPackage;
20 import static org.junit.platform.testkit.engine.EventConditions.container;
21 import static org.junit.platform.testkit.engine.EventConditions.displayName;
22 import static org.junit.platform.testkit.engine.EventConditions.event;
23 import static org.junit.platform.testkit.engine.EventConditions.finishedSuccessfully;
24 import static org.junit.platform.testkit.engine.EventConditions.finishedWithFailure;
25 import static org.junit.platform.testkit.engine.EventConditions.test;
26 import static org.junit.platform.testkit.engine.EventConditions.type;
27 import static org.junit.platform.testkit.engine.EventConditions.uniqueIdSubstrings;
28 import static org.junit.platform.testkit.engine.EventType.DYNAMIC_TEST_REGISTERED;
[all …]
/aosp_15_r20/external/googleapis/google/cloud/discoveryengine/v1alpha/
H A Dengine.proto34 // [Engine][google.cloud.discoveryengine.v1alpha.Engine].
35 message Engine { message
37 type: "discoveryengine.googleapis.com/Engine"
38 pattern: "projects/{project}/locations/{location}/collections/{collection}/engines/{engine}"
41 // Configurations for a Search Engine.
43 // The search feature tier of this engine.
53 // The add-on that this search engine enables.
57 // Additional config specs for a `similar-items` engine.
60 // Additional config specs for a Media Recommendation engine.
73 // The training state of the engine.
[all …]
H A Dengine_service.proto23 import "google/cloud/discoveryengine/v1alpha/engine.proto";
38 // Service for managing [Engine][google.cloud.discoveryengine.v1alpha.Engine]
45 // Creates a [Engine][google.cloud.discoveryengine.v1alpha.Engine].
49 body: "engine"
51 option (google.api.method_signature) = "parent,engine,engine_id";
53 response_type: "google.cloud.discoveryengine.v1alpha.Engine"
58 // Deletes a [Engine][google.cloud.discoveryengine.v1alpha.Engine].
70 // Updates an [Engine][google.cloud.discoveryengine.v1alpha.Engine]
71 rpc UpdateEngine(UpdateEngineRequest) returns (Engine) {
73 patch: "/v1alpha/{engine.name=projects/*/locations/*/collections/*/engines/*}"
[all …]
/aosp_15_r20/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_searchengine.py41 engine = se.get(root)
42 self.assertIsInstance(engine, se.SearchEngine)
43 self.assertIs(root._searchengine, engine)
44 self.assertIs(se.get(root), engine)
109 self.engine = se.SearchEngine(root=None)
110 # Engine.root is only used to create error message boxes.
114 engine = self.engine
117 Equal(engine.getpat(), '')
118 engine.setpat('hello')
119 Equal(engine.getpat(), 'hello')
[all …]
/aosp_15_r20/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_searchengine.py40 engine = se.get(root)
41 self.assertIsInstance(engine, se.SearchEngine)
42 self.assertIs(root._searchengine, engine)
43 self.assertIs(se.get(root), engine)
108 self.engine = se.SearchEngine(root=None)
109 # Engine.root is only used to create error message boxes.
113 engine = self.engine
116 Equal(engine.getpat(), '')
117 engine.setpat('hello')
118 Equal(engine.getpat(), 'hello')
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/skrifa-0.15.5/src/outline/glyf/hint/engine/
H A Dgraphics_state.rs11 Engine, HintErrorKind, OpResult,
14 impl<'a> Engine<'a> { impl
844 let mut engine = mock.engine(); in set_vectors_to_coord_axis() localVariable
846 engine.op_svtca(0x00).unwrap(); in set_vectors_to_coord_axis()
847 assert_eq!(engine.graphics_state.freedom_vector, Y_AXIS); in set_vectors_to_coord_axis()
848 assert_eq!(engine.graphics_state.proj_vector, Y_AXIS); in set_vectors_to_coord_axis()
850 engine.op_svtca(0x01).unwrap(); in set_vectors_to_coord_axis()
851 assert_eq!(engine.graphics_state.freedom_vector, X_AXIS); in set_vectors_to_coord_axis()
852 assert_eq!(engine.graphics_state.proj_vector, X_AXIS); in set_vectors_to_coord_axis()
854 engine.op_svtca(0x02).unwrap(); in set_vectors_to_coord_axis()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/base64/src/engine/
Dtests.rs17 engine::{
18 general_purpose, naive, Config, DecodeEstimate, DecodeMetadata, DecodePaddingMode, Engine,
56 let engine = E::standard(); in rfc_test_vectors_std_alphabet() localVariable
83 // if there was any padding originally, the no padding engine won't decode it in rfc_test_vectors_std_alphabet()
97 let encode_len = engine.internal_encode(orig.as_bytes(), &mut encode_buf[..]); in rfc_test_vectors_std_alphabet()
106 let decode_len = engine in rfc_test_vectors_std_alphabet()
116 // if there was (canonical) padding, and we remove it, the standard engine won't decode in rfc_test_vectors_std_alphabet()
120 engine.decode(encoded_without_padding) in rfc_test_vectors_std_alphabet()
138 let engine = E::random(&mut rng); in roundtrip_random() localVariable
145 &engine, in roundtrip_random()
[all …]
/aosp_15_r20/external/googleapis/google/cloud/discoveryengine/v1beta/
H A Dengine_service.proto23 import "google/cloud/discoveryengine/v1beta/engine.proto";
38 // Service for managing [Engine][google.cloud.discoveryengine.v1beta.Engine]
45 // Creates a [Engine][google.cloud.discoveryengine.v1beta.Engine].
49 body: "engine"
51 option (google.api.method_signature) = "parent,engine,engine_id";
53 response_type: "google.cloud.discoveryengine.v1beta.Engine"
58 // Deletes a [Engine][google.cloud.discoveryengine.v1beta.Engine].
70 // Updates an [Engine][google.cloud.discoveryengine.v1beta.Engine]
71 rpc UpdateEngine(UpdateEngineRequest) returns (Engine) {
73 patch: "/v1beta/{engine.name=projects/*/locations/*/collections/*/engines/*}"
[all …]
/aosp_15_r20/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java69 * to release the native resources used by the TextToSpeech engine.
72 * TextToSpeech.Engine#INTENT_ACTION_TTS_SERVICE} in the {@code queries} elements of their
117 * Denotes a failure of a TTS engine to synthesize the given input.
148 * @see Engine#KEY_FEATURE_NOT_INSTALLED
203 * Note that this notifies callers when the <b>engine</b> has finished has
214 * TextToSpeech engine initialization.
218 * Called to signal the completion of the TextToSpeech engine initialization.
228 * has an utterance ID (see {@link TextToSpeech.Engine#KEY_PARAM_UTTERANCE_ID}).
247 * Intents to ask engine to install data or check its data and
248 * extras for a TTS engine's check data activity.
[all …]

12345678910>>...493