/external/skia/tools/ |
skimage_main.cpp | 429 * @param srcPath The path to the file, for recreating the length-less stream. 430 * @param codec The SkImageDecoder originally used to decode srcPath, which will be used 435 static void test_stream_without_length(const char srcPath[], SkImageDecoder* codec, 441 SkASSERT(srcPath); 443 FILEStreamWithoutLength stream(srcPath); 450 srcPath); 456 "a digest\n", srcPath); 461 "that uses getLength\n", srcPath); 481 static void decodeFileAndWrite(const char srcPath[], const SkString* writePath) { 483 SkFILEStream stream(srcPath); [all...] |
/developers/build/ |
build.gradle | 110 def srcPath = "${inputPath}/src/${input}/${filetype[0]}" 112 from(srcPath) 149 def srcPath = "${inputPath}/${samplegen.targetSampleModule()}/src/${input}/${filetype}" 151 from(srcPath) 198 srcDirs.each { srcPath -> 199 println srcPath; 201 def javaPath = "${srcPath}/java"; 214 from("${srcPath}/res") 216 into(".") {from("${srcPath}/AndroidManifest.xml")}
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebFileSystem.h | 82 // Moves a file or directory at |srcPath| to |destPath|. 85 virtual void move(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); } 87 // Copies a file or directory at |srcPath| to |destPath|. 90 virtual void copy(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); }
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
regextst.h | 53 const UnicodeString &input, const char *srcPath, int32_t line);
|
dcfmtest.cpp | 182 const char *srcPath; 189 srcPath=getPath(tdd, "dcfmtest.txt"); 190 if(srcPath==NULL) { 195 UChar *testData = ReadAndConvertFile(srcPath, len, status);
|
regextst.cpp | [all...] |
/external/icu4c/test/intltest/ |
regextst.h | 57 const UnicodeString &input, const char *srcPath, int32_t line);
|
dcfmtest.cpp | 182 const char *srcPath; 189 srcPath=getPath(tdd, "dcfmtest.txt"); 190 if(srcPath==NULL) { 195 UChar *testData = ReadAndConvertFile(srcPath, len, status);
|
regextst.cpp | [all...] |
/frameworks/native/cmds/rawbu/ |
backup.cpp | 256 static int backup_dir(FILE* fh, const char* srcPath) 261 int srcLen = strlen(srcPath); 265 dir = opendir(srcPath); 269 srcPath, strerror(errno)); 291 strcpy(fullPath, srcPath); 503 static int restore_data(const char* srcPath) 507 FILE* fh = fopen(srcPath, "r"); 510 srcPath, strerror(errno)); 527 backupFilePath = strdup(srcPath); 534 printf("Restoring from %s to /data...\n", srcPath); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
api_path.c | 123 void vegaAppendPath(VGPath dstPath, VGPath srcPath) 128 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) { 132 src = handle_to_path(srcPath); 221 void vegaTransformPath(VGPath dstPath, VGPath srcPath) 226 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) { 230 src = handle_to_path(srcPath);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
api_path.c | 123 void vegaAppendPath(VGPath dstPath, VGPath srcPath) 128 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) { 132 src = handle_to_path(srcPath); 221 void vegaTransformPath(VGPath dstPath, VGPath srcPath) 226 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) { 230 src = handle_to_path(srcPath);
|
/external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/ |
Antlr3Mojo.java | 483 String srcPath = sourceDirectory.getPath() + File.separator; 485 if (!grammarFileName.startsWith(srcPath)) { 489 File unprefixedGrammarFileName = new File(grammarFileName.substring(srcPath.length()));
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
VideoUtils.java | 117 * @param srcPath the path of source video file. 127 private static void genVideoUsingMuxer(String srcPath, String dstPath, 132 extractor.setDataSource(srcPath); 174 retrieverSrc.setDataSource(srcPath);
|
/frameworks/base/services/java/com/android/server/pm/ |
Installer.java | 214 public int movedex(String srcPath, String dstPath) { 217 builder.append(srcPath);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
LibraryClasspathContainerInitializer.java | 240 File srcPath = getFile(jarFile, value); 242 if (srcPath.exists()) { 243 sourceAttachmentPath = new Path(srcPath.getAbsolutePath());
|
/external/chromium_org/third_party/skia/src/effects/ |
SkDashPathEffect.cpp | 104 static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec, 112 if (!srcPath.isLine(pts)) {
|
/external/skia/src/effects/ |
SkDashPathEffect.cpp | 104 static bool cull_path(const SkPath& srcPath, const SkStrokeRec& rec, 112 if (!srcPath.isLine(pts)) {
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Path_Delegate.java | 531 private static void addPath(int destPath, int srcPath, AffineTransform transform) { 537 Path_Delegate srcPathDelegate = sManager.getDelegate(srcPath);
|
Paint_Delegate.java | 763 Path_Delegate srcPath = Path_Delegate.getDelegate(src); 764 if (srcPath == null) { 774 Shape strokeShape = stroke.createStrokedShape(srcPath.getJavaShape()); [all...] |
/external/chromium_org/third_party/mesa/src/include/VG/ |
openvg.h | 593 VG_API_CALL void VG_API_ENTRY vgAppendPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT; 601 VG_API_CALL void VG_API_ENTRY vgTransformPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT; [all...] |
/external/chromium_org/third_party/skia/include/gpu/gl/ |
GrGLFunctions.h | 196 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLCopyPathProc)(GrGLuint resultPath, GrGLuint srcPath); 198 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLTransformPathProc)(GrGLuint resultPath, GrGLuint srcPath, GrGLenum transformType, const GrGLfloat *transformValues);
|
/external/mesa3d/include/VG/ |
openvg.h | 593 VG_API_CALL void VG_API_ENTRY vgAppendPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT; 601 VG_API_CALL void VG_API_ENTRY vgTransformPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT; [all...] |
/external/skia/include/gpu/gl/ |
GrGLFunctions.h | 196 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLCopyPathProc)(GrGLuint resultPath, GrGLuint srcPath); 198 typedef GrGLvoid (GR_GL_FUNCTION_TYPE* GrGLTransformPathProc)(GrGLuint resultPath, GrGLuint srcPath, GrGLenum transformType, const GrGLfloat *transformValues);
|
/frameworks/base/core/tests/coretests/src/android/content/pm/ |
PackageManagerTests.java | 410 String srcPath = srcDir.getParent(); 421 SECURE_CONTAINERS_PREFIX, srcPath); 436 assertEquals(srcPath, appInstallPath); 473 SECURE_CONTAINERS_PREFIX, srcPath); [all...] |