Home
last modified time | relevance | path

Searched refs:complex (Results 1 – 20 of 20) sorted by relevance

/frameworks/base/libs/protoutil/tests/
DProtoOutputStream_test.cpp204 ComplexProto complex; in TEST() local
205 ASSERT_TRUE(complex.ParseFromString(iterateToString(&proto))); in TEST()
206 EXPECT_EQ(complex.ints_size(), 3); in TEST()
207 EXPECT_EQ(complex.ints(0), 23); in TEST()
208 EXPECT_EQ(complex.ints(1), 101); in TEST()
209 EXPECT_EQ(complex.ints(2), -72); in TEST()
210 EXPECT_EQ(complex.logs_size(), 2); in TEST()
211 ComplexProto::Log log1 = complex.logs(0); in TEST()
215 ComplexProto::Log log2 = complex.logs(1); in TEST()
243 ComplexProto complex; in TEST() local
[all …]
/frameworks/rs/script_api/include/
Drs_object_info.rsh53 * Elements can be grouped together into complex Elements, creating the equivalent of
62 * To create complex Elements, use the Element.Builder Java class.
227 * more complex numerical type (e.g. RS_TYPE_UNSIGNED_5_6_5 and RS_TYPE_MATRIX_4X4).
234 * functions to explore this complex Element.
242 * rsElementGetSubElement: Sub-element of a complex Element
262 * rsElementGetSubElementArraySize: Array size of a sub-element of a complex Element
264 * For complex Elements, sub-elements can be statically sized arrays. This function
284 * sub-elements for complex Elements.
299 * For complex Elements, this function returns the name of the sub-element at the
318 * For complex Elements, this function returns the length of the name of the sub-element
Drs_object_types.rsh138 RS_TYPE_NONE = 0, // Element is a complex type, i.e. a struct.
/frameworks/base/core/java/android/util/
DTypedValue.java284 public static float complexToFloat(int complex) in complexToFloat() argument
286 return (complex&(TypedValue.COMPLEX_MANTISSA_MASK in complexToFloat()
288 * RADIX_MULTS[(complex>>TypedValue.COMPLEX_RADIX_SHIFT) in complexToFloat()
/frameworks/base/core/tests/coretests/src/android/util/
DTypedValueTest.kt41 val complex = TypedValue.floatToComplex(value) in <lambda>() constant
44 assertEquals(value, TypedValue.complexToFloat(complex), delta) in <lambda>()
47 val actualRadix = ((complex shr TypedValue.COMPLEX_RADIX_SHIFT) in <lambda>()
/frameworks/base/ravenwood/
Dapi-maintainers.md51 ## Replace a complex method when under Ravenwood
79 Since this approach requires potentially complex re-implementation, it should only be considered fo…
81 When a pure-Java implementation grows too large or complex to host within the original class, the `…
/frameworks/compile/slang/tests/P_warnings_rsSetElementAt/
Dsetelementat.rscript35 // No warnings for complex data types
/frameworks/base/packages/SystemUI/docs/
Dkotlin-in-sysui.md12 - Only use extension functions for keeping complex code locality: Don't use
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
DFastDataTest.java148 final String complex = new String(buf); in testUTF_Bounds() local
149 assertThrows(IOException.class, () -> out.writeUTF(complex)); in testUTF_Bounds()
150 assertThrows(IOException.class, () -> out.writeInternedUTF(complex)); in testUTF_Bounds()
/frameworks/base/startop/apps/test/
DREADME.md18 This activity inflates a reasonably complex layout to see the impact of layout
/frameworks/av/media/libeffects/dynamicsproc/dsp/
DRDsp.h26 using ComplexVec = std::vector<std::complex<float>>;
/frameworks/base/tools/aapt2/
Dreadme.md79 - aapt2 optimize now understands map (complex) values under the type `id`. It ignores their
146 - Added support for inline complex XML resources. See
147 https://developer.android.com/guide/topics/resources/complex-xml-resources.html
/frameworks/av/services/camera/virtualcamera/util/
DEglProgram.cc247 const std::complex<float> c(std::sin(time) * 0.78f, std::cos(time) * 0.78f); in draw()
/frameworks/base/
DOWNERS.md8 it's evolved into a complex interleaved structure over the years. Because of
DAndroid.bp471 // we are unfortunately building the turbine jar twice, but more efficient and less complex
/frameworks/proto_logging/stats/atoms/credentials/
Dcredentials_extension_atoms.proto432 * Not all APIs are complex, and so this allows capturing simpler APIs.
433 * It also allows a simpler query form, so existing complex APIs can also
436 * complex cases when the UI stays up, but the purpose is not to capture
/frameworks/base/services/permission/java/com/android/server/permission/access/immutable/
DImmutable.md7 implementation of complex state transitions in a readable and maintainable way.
181 Persistent data structure is also much more complex than a plain mutable data structure, both in
/frameworks/native/services/surfaceflinger/FrontEnd/
Dreadme.md93 to implement mirroring without cloning Layers and maintaining complex hierarchies.
/frameworks/compile/slang/
DREADME.rst315 use more complex types. Simple structures composed of the types in
/frameworks/base/libs/androidfw/
DResourceTypes.cpp7571 static void print_complex(uint32_t complex, bool isFraction) in print_complex() argument
7580 float value = (complex&(Res_value::COMPLEX_MANTISSA_MASK in print_complex()
7582 * RADIX_MULTS[(complex>>Res_value::COMPLEX_RADIX_SHIFT) in print_complex()
7587 switch ((complex>>Res_value::COMPLEX_UNIT_SHIFT)&Res_value::COMPLEX_UNIT_MASK) { in print_complex()
7597 switch ((complex>>Res_value::COMPLEX_UNIT_SHIFT)&Res_value::COMPLEX_UNIT_MASK) { in print_complex()