Searched refs:spec (Results 1 - 22 of 22) sorted by relevance

/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DHeader.java51 final DecoderChainSpec<DictionaryHeader> spec =
54 if (null == spec) {
59 final DictionaryHeader header = spec.mResult;
64 System.out.println("Packaging : " + spec.describeChain());
H A DBinaryDictOffdeviceUtils.java99 * Returns the next sequential spec. If exhausted, return null.
226 @Nonnull DecoderChainSpec spec = new DecoderChainSpec();
227 while (null != spec) {
229 final InputStream input = spec.getStream(src);
230 spec.mResult = processor.process(input);
243 return spec;
246 // of these exceptions. In our case, that means we should try the next spec,
250 spec = spec.next();
256 * Get a decoder chain spec wit
[all...]
/packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
H A Darguments_parser.cpp54 const OptionSpec &spec = option.second; local
56 if (spec.needsValue()) {
57 printf(" <%s>", spec.getValueName().c_str());
75 const OptionSpec &spec = option.second; local
77 if (spec.needsValue()) {
78 printf(" <%s>", spec.getValueName().c_str());
80 printf("\t\t\t%s", spec.getDescription().c_str());
81 if (spec.needsValue() && !spec.getDefaultValue().empty()) {
82 printf("\tdefault: %s", spec
[all...]
/packages/apps/ExactCalculator/src/com/android/calculator2/
H A DCalculatorScrollView.java43 private static int getChildMeasureSpecCompat(int spec, int padding, int childDimension) { argument
44 if (MeasureSpec.getMode(spec) == UNSPECIFIED
46 final int size = Math.max(0, MeasureSpec.getSize(spec) - padding);
49 return ViewGroup.getChildMeasureSpec(spec, padding, childDimension);
/packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/
H A DTvSettingsRobolectricTestRunner.java73 private static ResourcePath resourcePath(@NonNull String spec) { argument
75 return new ResourcePath(null, Fs.fromURL(new URL(spec)), null);
/packages/services/Car/tests/robotests/src/com/android/car/
H A DCarServiceRobolectricTestRunner.java63 private static ResourcePath resourcePath(@NonNull String spec) { argument
65 return new ResourcePath(null, Fs.fromURL(new URL(spec)), null);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DPunctuationSuggestions.java60 for (String spec : punctuationSpecs) {
61 punctuationList.add(newHardCodedWordInfo(spec));
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DAlbumLabelMaker.java51 public AlbumLabelMaker(Context context, AlbumSetSlotRenderer.LabelSpec spec) { argument
53 mSpec = spec;
54 mTitlePaint = getTextPaint(spec.titleFontSize, spec.titleColor, false);
55 mCountPaint = getTextPaint(spec.countFontSize, spec.countColor, false);
H A DSlotView.java91 public SlotView(AbstractGalleryActivity activity, Spec spec) { argument
95 setSlotSpec(spec);
144 public void setSlotSpec(Spec spec) { argument
145 mLayout.setSlotSpec(spec);
417 public void setSlotSpec(Spec spec) { argument
418 mSpec = spec;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
H A DActualKeyboardBuilder.java103 public String stringize(final MoreKeySpec spec) { argument
104 if (spec == null) {
107 return toString(spec.mLabel, spec.mIconId, spec.mOutputText, spec.mCode);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
H A DMoreKeySpecTests.java36 final MoreKeySpec spec = new MoreKeySpec(
38 assertEquals(message + " [label]", expectedLabel, spec.mLabel);
39 assertEquals(message + " [ouptputText]", expectedOutputText, spec.mOutputText);
42 KeyboardIconsSet.getIconName(spec.mIconId));
45 Constants.printableCode(spec.mCode));
50 assertParserError("Null spec", null,
52 assertParserError("Empty spec", "",
/packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/
H A DBinaryDictOffdeviceUtilsTests.java110 assertEquals("Wrong decode spec", "raw > compression", decodeSpec.describeChain());
197 final DecoderChainSpec<DictionaryHeader> spec =
200 assertNotNull("Can't decode a dictionary we just wrote : " + file, spec);
201 final DictionaryHeader header = spec.mResult;
203 spec.describeChain());
/packages/apps/Gallery2/src/com/android/gallery3d/anim/
H A DStateTransitionAnimation.java107 public StateTransitionAnimation(Spec spec, RawTexture oldScreen) { argument
108 mTransitionSpec = spec != null ? spec : Spec.OUTGOING;
/packages/apps/Settings/src/com/android/settings/shortcut/
H A DCreateShortcut.java125 int spec = MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY);
126 view.measure(spec, spec);
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
H A DTestCertActivity.java44 import java.security.spec.InvalidKeySpecException;
45 import java.security.spec.X509EncodedKeySpec;
/packages/apps/KeyChain/src/com/android/keychain/
H A DKeyChainService.java134 final KeyGenParameterSpec spec = parcelableSpec.getSpec();
135 final String alias = spec.getKeystoreAlias();
138 if (TextUtils.isEmpty(alias) || spec.getUid() != KeyStore.UID_SELF) {
143 if (spec.getAttestationChallenge() != null) {
154 generator.initialize(spec);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DMoreKeysKeyboard.java321 for (final MoreKeySpec spec : parentKey.getMoreKeys()) {
322 final String label = spec.mLabel;
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DCredentialHelper.java51 import java.security.spec.InvalidKeySpecException;
52 import java.security.spec.PKCS8EncodedKeySpec;
/packages/apps/Gallery/src/com/android/camera/
H A DGridViewSpecial.java747 GridViewSpecial.LayoutSpec spec,
754 mSpec = spec;
744 ImageBlockManager(Handler handler, Runnable redrawCallback, IImageList imageList, ImageLoader loader, GridViewSpecial.DrawAdapter adapter, GridViewSpecial.LayoutSpec spec, int columns, int blockWidth, Bitmap outline) argument
/packages/apps/Launcher2/src/com/android/launcher2/
H A DAppsCustomizePagedView.java1227 GridLayout.spec(iy, GridLayout.START),
1228 GridLayout.spec(ix, GridLayout.TOP));
/packages/apps/Car/Radio/libs/android-arch/room/
H A Dcompiler-1.1.0-beta3.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/arch/ android/arch/persistence/ android/arch/persistence/room/ ...
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 616 milliseconds