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

1 2 3

  /frameworks/base/rs/java/android/renderscript/
Font.java 160 static public Font createFromFile(RenderScript rs, Resources res, String path, float pointSize) {
176 static public Font createFromFile(RenderScript rs, Resources res, File path, float pointSize) {
177 return createFromFile(rs, res, path.getAbsolutePath(), pointSize);
243 return createFromFile(rs, res, fontPath, pointSize);
FileA3D.java 253 static public FileA3D createFromFile(RenderScript rs, String path) {
273 static public FileA3D createFromFile(RenderScript rs, File path) {
274 return createFromFile(rs, path.getAbsolutePath());
  /frameworks/support/compat/java/android/support/v4/graphics/
TypefaceCompatBaseImpl.java 95 return Typeface.createFromFile(tmpFile.getPath());
97 // This was thrown from Typeface.createFromFile when a Typeface could not be loaded,
166 return Typeface.createFromFile(tmpFile.getPath());
168 // This was thrown from Typeface.createFromFile when a Typeface could not be loaded.
TypefaceCompatApi21Impl.java 80 return Typeface.createFromFile(file);
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
BusinessLogicHostTestBase.java 54 mBusinessLogic = BusinessLogicFactory.createFromFile(businessLogicFile);
  /external/skia/include/ports/
SkFontMgr.h 125 SkTypeface* createFromFile(const char path[], int ttcIndex = 0) const;
  /cts/tests/tests/graphics/src/android/graphics/cts/
TypefaceTest.java 175 Typeface.createFromFile((File) null);
181 Typeface typeface = Typeface.createFromFile(file);
188 Typeface.createFromFile(file);
194 Typeface.createFromFile((String) null);
200 Typeface.createFromFile("/invalid/path");
205 Typeface typeface = Typeface.createFromFile(obtainPath());
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
BusinessLogicTestCase.java 52 mBusinessLogic = BusinessLogicFactory.createFromFile(businessLogicFile);
  /frameworks/base/apct-tests/perftests/core/src/android/graphics/perftests/
TypefaceCreatePerfTest.java 101 Typeface face = Typeface.createFromFile(outFile);
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
LayoutPullParser.java 45 public static LayoutPullParser createFromFile(@NonNull File layoutFile)
LayoutLibTestCallback.java 150 return LayoutPullParser.createFromFile(new File(layoutResource.getValue()));
  /cts/common/util/tests/src/com/android/compatibility/common/util/
BusinessLogicTest.java 133 BusinessLogic bl = BusinessLogicFactory.createFromFile(file);
236 BusinessLogic bl = BusinessLogicFactory.createFromFile(file);
  /external/llvm/include/llvm/LTO/legacy/
LTOModule.h 94 createFromFile(LLVMContext &Context, const char *path,
  /frameworks/base/libs/androidfw/include/androidfw/
Asset.h 160 static Asset* createFromFile(const char* fileName, AccessMode mode);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOModule.h 98 createFromFile(LLVMContext &Context, StringRef path,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOModule.h 98 createFromFile(LLVMContext &Context, StringRef path,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOModule.h 98 createFromFile(LLVMContext &Context, StringRef path,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOModule.h 98 createFromFile(LLVMContext &Context, StringRef path,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOModule.h 98 createFromFile(LLVMContext &Context, StringRef path,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOModule.h 98 createFromFile(LLVMContext &Context, StringRef path,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOModule.h 98 createFromFile(LLVMContext &Context, StringRef path,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/LTO/legacy/
LTOModule.h 98 createFromFile(LLVMContext &Context, StringRef path,
  /cts/common/util/src/com/android/compatibility/common/util/
BusinessLogicFactory.java 60 public static BusinessLogic createFromFile(File f) {
  /external/skia/src/core/
SkFontMgr.cpp 159 SkTypeface* SkFontMgr::createFromFile(const char path[], int ttcIndex) const {
  /external/skia/src/fonts/
SkFontMgr_indirect.cpp 166 return fImpl->createFromFile(path, ttcIndex);

Completed in 566 milliseconds

1 2 3