HomeSort by relevance Sort by last modified time
    Searched refs:afm (Results 1 - 25 of 27) sorted by null

1 2

  /external/fonttools/Tests/afmLib/
afmLib_test.py 10 AFM = os.path.join(DATADIR, 'TestAFM.afm')
16 afm = afmLib.AFM(AFM)
17 self.assertEqual(sorted(afm.kernpairs()),
19 self.assertEqual(afm['V', 'A'], -60)
20 self.assertEqual(afm['V', 'd'], 30)
21 self.assertEqual(afm['A'], (65, 668, (8, -25, 660, 666)))
24 afm = afmLib.AFM(AFM
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
ServiceDisabledForSureTest.java 71 final AutofillManager afm = mActivity.getAutofillManager();
72 Helper.assertAutofillEnabled(afm, false);
75 Helper.assertAutofillEnabled(afm, true);
78 Helper.assertAutofillEnabled(afm, false);
ServiceEnabledForSureTest.java 69 final AutofillManager afm = mActivity.getAutofillManager();
70 Helper.assertAutofillEnabled(afm, true);
73 Helper.assertAutofillEnabled(afm, false);
76 Helper.assertAutofillEnabled(afm, true);
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
CreditCardAntiPatternActivity.java 52 AutofillManager afm = getSystemService(AutofillManager.class);
53 if (afm != null) {
54 afm.cancel();
CreditCardActivity.java 56 AutofillManager afm = getSystemService(AutofillManager.class);
57 if (afm != null) {
58 afm.cancel();
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
CreditCardAntiPatternActivity.java 52 AutofillManager afm = getSystemService(AutofillManager.class);
53 if (afm != null) {
54 afm.cancel();
CreditCardActivity.java 56 AutofillManager afm = getSystemService(AutofillManager.class);
57 if (afm != null) {
58 afm.cancel();
AbstractMultipleStepsActivity.java 138 AutofillManager afm = getSystemService(AutofillManager.class); local
139 if (afm != null) {
140 afm.commit();
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/antipatterns/
BadViewStructureCreationSignInActivity.java 64 AutofillManager afm = getSystemService(AutofillManager.class);
65 if (afm != null) {
66 afm.cancel();
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
CreditCardCompoundViewActivity.java 54 AutofillManager afm = getSystemService(AutofillManager.class);
55 if (afm != null) {
56 afm.cancel();
CreditCardDatePickerActivity.java 56 AutofillManager afm = getSystemService(AutofillManager.class);
57 if (afm != null) {
58 afm.cancel();
StandardSignInActivity.java 51 AutofillManager afm = getSystemService(AutofillManager.class);
52 if (afm != null) {
53 afm.cancel();
CreditCardSpinnersActivity.java 97 AutofillManager afm = getSystemService(AutofillManager.class);
98 if (afm != null) {
99 afm.cancel();
StandardAutoCompleteSignInActivity.java 64 AutofillManager afm = getSystemService(AutofillManager.class);
65 if (afm != null) {
66 afm.cancel();
RecyclerViewActivity.java 89 AutofillManager afm = getSystemService(AutofillManager.class);
90 if (afm != null) {
91 afm.cancel();
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/antipatterns/
BadViewStructureCreationSignInActivity.java 64 AutofillManager afm = getSystemService(AutofillManager.class);
65 if (afm != null) {
66 afm.cancel();
CallbackLessAutoCompleteSignInActivity.java 61 AutofillManager afm = getSystemService(AutofillManager.class);
62 if (afm != null) {
63 afm.cancel();
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
CreditCardCompoundViewActivity.java 54 AutofillManager afm = getSystemService(AutofillManager.class);
55 if (afm != null) {
56 afm.cancel();
CreditCardDatePickerActivity.java 56 AutofillManager afm = getSystemService(AutofillManager.class);
57 if (afm != null) {
58 afm.cancel();
StandardSignInActivity.java 51 AutofillManager afm = getSystemService(AutofillManager.class);
52 if (afm != null) {
53 afm.cancel();
CreditCardSpinnersActivity.java 97 AutofillManager afm = getSystemService(AutofillManager.class);
98 if (afm != null) {
99 afm.cancel();
StandardAutoCompleteSignInActivity.java 64 AutofillManager afm = getSystemService(AutofillManager.class);
65 if (afm != null) {
66 afm.cancel();
RecyclerViewActivity.java 89 AutofillManager afm = getSystemService(AutofillManager.class);
90 if (afm != null) {
91 afm.cancel();
  /external/fonttools/Lib/fontTools/
afmLib.py 1 """Module for reading and writing AFM files."""
3 # XXX reads AFM's generated by Fog, not tested with much else.
5 # File Format Specification). Still, it should read most "common" AFM files.
84 class AFM(object):
117 raise error("syntax error in AFM file: " + repr(line))
136 raise error("syntax error in AFM file: " + repr(rest))
148 raise error("syntax error in AFM file: " + repr(rest))
173 raise error("syntax error in AFM file: " + repr(rest))
181 raise error("syntax error in AFM file: " + repr(rest))
289 # all attrs *not* starting with "_" are consider to be AFM keyword
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/augmented/
CtsAugmentedAutofillService.java 137 final AutofillManager afm = getApplication().getSystemService(AutofillManager.class); local
138 if (afm == null) {
142 afm.setAugmentedAutofillWhitelist(packages, /* activities= */ null);

Completed in 972 milliseconds

1 2