/aosp_15_r20/frameworks/minikin/tests/unittest/ |
H A D | LayoutCoreTest.cpp | 43 static LayoutPiece buildLayout(const std::string& text, std::shared_ptr<FontCollection> fc) { in buildLayout() 50 const std::string& text, std::shared_ptr<FontCollection> fc) { in buildLayoutAndBounds() 60 static LayoutPiece buildLayout(const std::string& text, std::shared_ptr<FontCollection> fc, in buildLayout() 91 auto fc = makeFontCollection({"LayoutTestFont.ttf"}); in TEST() local 104 auto fc = makeFontCollection({"LayoutTestFont.ttf"}); in TEST() local 121 auto fc = makeFontCollection({"LayoutTestFont.ttf"}); in TEST() local 149 auto fc = makeFontCollection({"LayoutTestFont.ttf", "Hiragana.ttf"}); in TEST() local 166 auto fc = makeFontCollection({"LayoutTestFont.ttf", "Hiragana.ttf"}); in TEST() local 190 auto fc = makeFontCollection({"Ligature.ttf"}); in TEST() local 204 auto fc = makeFontCollection({"Ligature.ttf"}); in TEST() local [all …]
|
H A D | MinikinPaintTest.cpp | 26 auto fc = buildFontCollection("Ascii.ttf"); in TEST() local 32 auto fc = buildFontCollection("Ascii.ttf"); in TEST() local 41 auto fc = buildFontCollection("Ascii.ttf"); in TEST() local 51 auto fc = buildFontCollection("Ascii.ttf"); in TEST() local
|
H A D | SystemFontsTest.cpp | 47 const std::shared_ptr<FontCollection>& fc) { in registerFallback() 51 void registerDefault(const std::shared_ptr<FontCollection>& fc) { registerDefaultInternal(fc); } in registerDefault() 56 auto fc = buildFontCollection("Ascii.ttf"); in TEST() local 63 auto fc = buildFontCollection("Ascii.ttf"); in TEST() local
|
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/nio/channels/ |
H A D | FileChannelTest.java | 55 FileChannel fc = new FileInputStream(tmp).getChannel(); in testReadOnlyByteArrays() local 90 FileChannel fc = new FileOutputStream(tmp).getChannel(); in test_readv() local 110 FileChannel fc = new FileOutputStream(tmp).getChannel(); in test_writev() local 124 FileChannel fc = fos.getChannel(); in test_append() local 140 FileChannel fc = createFileContainingBytes(initialBytes); in test_position_writeAddsPadding() local 160 FileChannel fc = createFileContainingBytes(initialBytes); in test_truncate_greaterThanSizeWithPositionChange() local 182 FileChannel fc = createFileContainingBytes(initialBytes); in test_truncate_greaterThanSizeWithoutPositionChange() local 202 FileChannel fc = createFileContainingBytes(initialBytes); in test_truncate_lessThanSizeWithPositionChange() local 222 FileChannel fc = createFileContainingBytes(initialBytes); in test_truncate_lessThanSizeWithoutPositionChange() local 250 FileChannel fc = fosFromFd.getChannel(); in test_close_fromFileDescriptor() local [all …]
|
/aosp_15_r20/cts/tests/tests/content/src/android/content/res/cts/ |
H A D | AssetFileDescriptor_AutoCloseInputStreamTest.java | 265 FileChannel fc = input.getChannel(); in testGetChannel() local 273 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelSize() local 280 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelReadBuffer() local 299 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelReadBuffers() local 317 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelReadBufferFromPosition() local 334 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelTransferTo() local 364 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelMap() local 380 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelWriteBuffer() local 394 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelWriteBuffers() local 410 FileChannel fc = input.getChannel(); in testOffsetCorrectFileChannelWriteBufferFromPosition() local [all …]
|
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/nio/file/ |
H A D | DefaultFileSystemProvider2Test.java | 433 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions); in test_newFileChannel() local 443 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions); in test_newFileChannel() local 453 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions); in test_newFileChannel() local 465 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions); in test_newFileChannel() local 479 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions); in test_newFileChannel() local 492 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions); in test_newFileChannel() local 579 FileChannel fc = provider.newFileChannel(filesSetup.getDataFilePath(), openOptions, in test_newFileChannel_withFileAttributes() local 658 String readFromFileChannel(FileChannel fc) throws IOException { in readFromFileChannel() 664 void writeToFileChannel(FileChannel fc, String data) throws IOException { in writeToFileChannel()
|
/aosp_15_r20/cts/tests/fragment/src/android/fragment/cts/ |
H A D | FragmentLifecycleTest.java | 319 final FragmentController fc = FragmentTestUtil.createController(mActivityRule); in fragmentDestroyedOnFinish() local 416 final FragmentController fc = FragmentTestUtil.createController(mActivityRule); in noPrematureStateChange() local 453 FragmentController fc = FragmentTestUtil.createController(mActivityRule); in testIsStateSaved() local 489 FragmentController fc = FragmentTestUtil.createController(mActivityRule); in testSetArgumentsLifecycle() local 776 FragmentController fc = FragmentTestUtil.createController(mActivityRule); in restoreNonConfig() local 823 FragmentController fc = FragmentTestUtil.createController(mActivityRule); in retainedFragmentInBackstack() local 871 FragmentController fc = FragmentTestUtil.createController(mActivityRule); in saveRemovedFragment() local 910 FragmentController fc = FragmentTestUtil.createController(mActivityRule); in nullNonConfig() local 932 FragmentController fc = FragmentTestUtil.createController(mActivityRule); in runTransactionsOnChange() local 968 FragmentController fc = FragmentTestUtil.createController(mActivityRule); in optionsMenu() local [all …]
|
/aosp_15_r20/external/tcpdump/ |
H A D | print-802_11.c | 164 #define FC_VERSION(fc) ((fc) & 0x3) argument 165 #define FC_TYPE(fc) (((fc) >> 2) & 0x3) argument 166 #define FC_SUBTYPE(fc) (((fc) >> 4) & 0xF) argument 167 #define FC_TO_DS(fc) ((fc) & 0x0100) argument 168 #define FC_FROM_DS(fc) ((fc) & 0x0200) argument 169 #define FC_MORE_FLAG(fc) ((fc) & 0x0400) argument 170 #define FC_RETRY(fc) ((fc) & 0x0800) argument 171 #define FC_POWER_MGMT(fc) ((fc) & 0x1000) argument 172 #define FC_MORE_DATA(fc) ((fc) & 0x2000) argument 173 #define FC_PROTECTED(fc) ((fc) & 0x4000) argument [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/quiche/src/ |
D | flowcontrol.rs | 135 let fc = FlowControl::new(100, 20, 100); in max_data() localVariable 142 let mut fc = FlowControl::new(100, 20, 100); in should_update_max_data() localVariable 153 let mut fc = FlowControl::new(100, 20, 100); in max_data_next() localVariable 164 let mut fc = FlowControl::new(100, 20, 100); in update_max_data() localVariable 181 let mut fc = FlowControl::new(100, w, 100); in autotune_window() localVariable 210 let mut fc = FlowControl::new(100, w, 100); in ensure_window_lower_bound() localVariable
|
/aosp_15_r20/external/rust/crates/quiche/src/ |
D | flowcontrol.rs | 135 let fc = FlowControl::new(100, 20, 100); in max_data() localVariable 142 let mut fc = FlowControl::new(100, 20, 100); in should_update_max_data() localVariable 153 let mut fc = FlowControl::new(100, 20, 100); in max_data_next() localVariable 164 let mut fc = FlowControl::new(100, 20, 100); in update_max_data() localVariable 181 let mut fc = FlowControl::new(100, w, 100); in autotune_window() localVariable 210 let mut fc = FlowControl::new(100, w, 100); in ensure_window_lower_bound() localVariable
|
/aosp_15_r20/external/clang/test/Sema/ |
H A D | overloadable-complex.c | 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() 14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() 23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() 33 void test_promote_or_convert(float f, float _Complex fc) { in test_promote_or_convert() 41 void test_promote_or_convert2(float _Complex fc) { in test_promote_or_convert2()
|
/aosp_15_r20/external/trusty/musl/src/stdio/ |
D | fopencookie.c | 16 struct fcookie fc; member 22 struct fcookie *fc = f->cookie; in cookieread() local 56 struct fcookie *fc = f->cookie; in cookiewrite() local 75 struct fcookie *fc = f->cookie; in cookieseek() local 93 struct fcookie *fc = f->cookie; in cookieclose() local
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | complex-overload.cpp | 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() 14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() 23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() 33 void test_promote_or_convert(float f, float _Complex fc) { in test_promote_or_convert() 41 void test_promote_or_convert2(float _Complex fc) { in test_promote_or_convert2()
|
/aosp_15_r20/external/musl/src/stdio/ |
H A D | fopencookie.c | 16 struct fcookie fc; member 22 struct fcookie *fc = f->cookie; in cookieread() local 56 struct fcookie *fc = f->cookie; in cookiewrite() local 75 struct fcookie *fc = f->cookie; in cookieseek() local 93 struct fcookie *fc = f->cookie; in cookieclose() local
|
/aosp_15_r20/external/mesa3d/src/amd/common/ |
H A D | ac_vcn_dec.c | 55 rvcn_av1_frame_context_t *fc = (rvcn_av1_frame_context_t *)prob; in ac_vcn_av1_init_mode_probs() local 119 rvcn_av1_frame_context_t *fc = (rvcn_av1_frame_context_t *)prob; in ac_vcn_av1_init_mv_probs() local 176 rvcn_av1_frame_context_t *fc = (rvcn_av1_frame_context_t *)prob; in ac_vcn_av1_default_coef_probs() local 198 rvcn_av1_vcn4_frame_context_t *fc = (rvcn_av1_vcn4_frame_context_t *)prob; in ac_vcn_vcn4_av1_init_mode_probs() local 262 rvcn_av1_vcn4_frame_context_t *fc = (rvcn_av1_vcn4_frame_context_t *)prob; in ac_vcn_vcn4_av1_init_mv_probs() local 319 rvcn_av1_vcn4_frame_context_t *fc = (rvcn_av1_vcn4_frame_context_t *)prob; in ac_vcn_vcn4_av1_default_coef_probs() local
|
/aosp_15_r20/frameworks/minikin/include/minikin/ |
H A D | SystemFonts.h | 39 const std::shared_ptr<FontCollection>& fc) { in registerFallback() 43 static void registerDefault(const std::shared_ptr<FontCollection>& fc) { in registerDefault() 65 const std::shared_ptr<FontCollection>& fc) { in registerFallbackInternal() 70 void registerDefaultInternal(const std::shared_ptr<FontCollection>& fc) { in registerDefaultInternal()
|
/aosp_15_r20/external/skia/resources/skottie/ |
H A D | skottie-text-valign-2.json | 1680 "fc": [0, 0.971, 0.039], array 1695 "fc": [0, 0.971, 0.039], array 1710 "fc": [0, 0.971, 0.039], array 1725 "fc": [0, 0.971, 0.039], array 1740 "fc": [0, 0.971, 0.039], array 1755 "fc": [0, 0.971, 0.039], array 1770 "fc": [0, 0.971, 0.039], array 1785 "fc": [0, 0.971, 0.039], array 1800 "fc": [0, 0.971, 0.039], array 1815 "fc": [0, 0.971, 0.039], array [all …]
|
H A D | skottie-text-valign-visual-scaletofit.json | 1680 "fc": [0, 0.971, 0.039], array 1696 "fc": [0, 0.971, 0.039], array 1712 "fc": [0, 0.971, 0.039], array 1728 "fc": [0, 0.971, 0.039], array 1744 "fc": [0, 0.971, 0.039], array 1760 "fc": [0, 0.971, 0.039], array 1776 "fc": [0, 0.971, 0.039], array 1792 "fc": [0, 0.971, 0.039], array 1808 "fc": [0, 0.971, 0.039], array 1824 "fc": [0, 0.971, 0.039], array [all …]
|
H A D | skottie-text-valign-visual-2.json | 1680 "fc": [0, 0.971, 0.039], array 1695 "fc": [0, 0.971, 0.039], array 1710 "fc": [0, 0.971, 0.039], array 1725 "fc": [0, 0.971, 0.039], array 1740 "fc": [0, 0.971, 0.039], array 1755 "fc": [0, 0.971, 0.039], array 1770 "fc": [0, 0.971, 0.039], array 1785 "fc": [0, 0.971, 0.039], array 1800 "fc": [0, 0.971, 0.039], array 1815 "fc": [0, 0.971, 0.039], array [all …]
|
H A D | skottie-text-valign-scaletofit.json | 1680 "fc": [0, 0.971, 0.039], array 1696 "fc": [0, 0.971, 0.039], array 1712 "fc": [0, 0.971, 0.039], array 1728 "fc": [0, 0.971, 0.039], array 1744 "fc": [0, 0.971, 0.039], array 1760 "fc": [0, 0.971, 0.039], array 1776 "fc": [0, 0.971, 0.039], array 1792 "fc": [0, 0.971, 0.039], array 1808 "fc": [0, 0.971, 0.039], array 1824 "fc": [0, 0.971, 0.039], array [all …]
|
/aosp_15_r20/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/ |
D | ImsServiceControllerTest.java | 1430 ImsFeatureContainer fc = in validateMmTelFeatureContainerExists() local 1439 ImsFeatureContainer fc = in validateMmTelFeatureContainerExistsWithEmergency() local 1448 ImsFeatureContainer fc = in validateFeatureContainerExistsWithSipDelegate() local 1455 ImsFeatureContainer fc = in validateFeatureContainerDoesNotHaveSipDelegate() local 1470 ImsFeatureContainer fc = in validateRcsFeatureContainerExists() local 1478 ImsFeatureContainer fc = in validateMmTelFeatureContainerDoesntExist() local 1484 ImsFeatureContainer fc = in validateRcsFeatureContainerDoesntExist() local
|
/aosp_15_r20/frameworks/opt/net/ims/tests/src/com/android/ims/ |
D | ImsFeatureBinderRepositoryTest.java | 89 ImsFeatureContainer fc = in testGetInterfaceExists() local 102 ImsFeatureContainer fc = in testGetInterfaceDoesntExist() local 111 ImsFeatureContainer fc = in testGetInterfaceRemoveDoesntExist() local 359 ImsFeatureContainer fc) throws Exception { in verifyFeatureCreatedCalled()
|
/aosp_15_r20/external/javasqlite/src/main/java/SQLite/ |
H A D | Function.java | 40 public void function(FunctionContext fc, String args[]); in function() 49 public void step(FunctionContext fc, String args[]); in step() 57 public void last_step(FunctionContext fc); in last_step()
|
/aosp_15_r20/libcore/luni/src/test/java/tests/support/ |
H A D | MockFunction.java | 35 public void function(FunctionContext fc, String args[]) { in function() 42 public void step(FunctionContext fc, String args[]) { in step() 50 public void last_step(FunctionContext fc) { in last_step()
|
/aosp_15_r20/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/default/ |
H A D | fully_connected_selector.cc | 35 FullyConnected fc = CreateFullyConnected(gpu_info, op_def, attr); in SelectFullyConnected() local 43 FullyConnected fc = CreateFullyConnected(gpu_info, op_def, attr); in SelectFullyConnected() local 50 FullyConnected fc = CreateFullyConnected(gpu_info, op_def, attr); in SelectFullyConnected() local
|