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

1 2 3 4 5

  /cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
DocletRunner.java 43 args.add("-sourcepath");
73 List<String> sourcePath = new ArrayList<String>();
74 sourcePath.add("./frameworks/base/core/java");
75 sourcePath.add("./frameworks/base/test-runner/src");
76 sourcePath.add("./external/junit/src");
77 sourcePath.add("./development/tools/hosttestlib/src");
78 sourcePath.add("./libcore/dalvik/src/main/java");
79 sourcePath.add("./cts/tests/src");
80 sourcePath.add("./cts/libs/commonutil/src");
81 sourcePath.add("./cts/libs/deviceutil/src")
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_icu.h 16 const char *sourcePath, const char *addList, icu::Package *pkg,
pkg_icu.cpp 154 writePackageDatFile(const char *outFilename, const char *outComment, const char *sourcePath, const char *addList, Package *pkg, char outType) {
165 addListPkg = readList(sourcePath, addList, TRUE, NULL);
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.h 16 const char *sourcePath, const char *addList, icu::Package *pkg,
pkg_icu.cpp 154 writePackageDatFile(const char *outFilename, const char *outComment, const char *sourcePath, const char *addList, Package *pkg, char outType) {
165 addListPkg = readList(sourcePath, addList, TRUE, NULL);
  /cts/common/host-side/java-scanner/src/com/android/compatibility/common/scanner/
JavaScanner.java 66 args.add("-sourcepath");
96 final ArrayList<String> sourcePath = new ArrayList<String>(Arrays.asList(SOURCE_PATHS));
97 sourcePath.add(sourceDir.toString());
98 return join(sourcePath, ":");
135 final String sourcePath = argsMap.get("-s");
137 if (sourcePath == null || docletPath == null) {
140 System.exit(new JavaScanner(new File(sourcePath), new File(docletPath)).scan());
  /external/chromium_org/third_party/angle/util/
shader_utils.h 24 GLuint CompileShaderFromFile(GLenum type, const std::string &sourcePath);
shader_utils.cpp 61 GLuint CompileShaderFromFile(GLenum type, const std::string &sourcePath)
63 std::string source = ReadFileToString(sourcePath);
  /frameworks/base/tools/aapt/
CrunchCache.h 32 CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff);
40 * It goes through all the files found in the sourcePath and compares
CrunchCache.cpp 18 CrunchCache::CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff)
19 : mSourcePath(sourcePath), mDestPath(destPath), mSourceFiles(0), mDestFiles(0), mFileFinder(ff)
42 // and offset our beginning pointer to the length of the sourcePath
  /build/tools/atree/
files.h 26 string sourcePath;
atree.cpp 316 it->sourcePath.c_str(), it->sourceMod,
320 err = copy_file(it->sourcePath, it->outPath);
348 escape_filename(it->sourcePath).c_str());
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Data.java 172 void setSymlink(String sourcePath, String destinationPath);
177 void setSymlink(String sourcePath, Data destination);
UnmodifiableData.java 87 public void setSymlink(String sourcePath, Data destination) {
92 public void setSymlink(String sourcePath, String destinationPath) {
DelegatedData.java 211 public void setSymlink(String sourcePath, String destinationPath) {
212 getDelegate().setSymlink(sourcePath, destinationPath);
216 public void setSymlink(String sourcePath, Data destination) {
218 getDelegate().setSymlink(sourcePath, destination);
NestedMapData.java 379 public void setSymlink(String sourcePath, String destinationPath) {
380 setSymlink(sourcePath, createChild(destinationPath));
386 public void setSymlink(String sourcePath, Data destination) {
387 createChild(sourcePath).setSymlink(destination);
DefaultDataContext.java 340 public void setSymlink(String sourcePath, String destinationPath) {
344 public void setSymlink(String sourcePath, Data destination) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoringTest.java 152 IPath sourcePath = file.getProjectRelativePath();
153 fileToGolden.put(sourcePath, basename);
154 IPath newPath = sourcePath.removeLastSegments(1).append(layoutName + DOT_XML);
  /external/chromium_org/third_party/icu/source/tools/icupkg/
icupkg.cpp 257 const char *pname, *sourcePath, *destPath, *inFilename, *outFilename, *outComment;
303 sourcePath=options[OPT_SOURCEDIR].value;
306 sourcePath=NULL;
330 pkg->addFile(sourcePath, inFilename);
344 isModified=(UBool)(sourcePath!=destPath);
455 if(readList(sourcePath, options[OPT_ADD_LIST].value, TRUE, addListPkg)) {
  /external/icu/icu4c/source/tools/icupkg/
icupkg.cpp 257 const char *pname, *sourcePath, *destPath, *inFilename, *outFilename, *outComment;
303 sourcePath=options[OPT_SOURCEDIR].value;
306 sourcePath=NULL;
330 pkg->addFile(sourcePath, inFilename);
344 isModified=(UBool)(sourcePath!=destPath);
455 if(readList(sourcePath, options[OPT_ADD_LIST].value, TRUE, addListPkg)) {
  /external/chromium_org/third_party/angle/src/compiler/translator/
ParseContext.h 28 TParseContext(TSymbolTable& symt, TExtensionBehavior& ext, TIntermediate& interm, sh::GLenum type, ShShaderSpec spec, int options, bool checksPrecErrors, const char* sourcePath, TInfoSink& is) :
34 sourcePath(sourcePath),
54 const char* sourcePath; // Path of source file or NULL.
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
ShaderD3D.cpp 194 std::string sourcePath;
197 sourcePath = getTempPath();
198 writeFile(sourcePath.c_str(), source.c_str(), source.length());
203 if (sourcePath.empty())
216 sourcePath.c_str(),
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 379 private void copyFile(String sourcePath, IParcelFileDescriptorFactory target, String targetName)
381 Slog.d(TAG, "Copying " + sourcePath + " to " + targetName);
385 in = new FileInputStream(sourcePath);
395 private void copyFile(String sourcePath, File targetDir, String targetName,
397 final File sourceFile = new File(sourcePath);
  /development/tools/idegen/src/
Configuration.java 231 String sourcePath = sourceRoot.getPath() + "/";
234 if (file.getPath().startsWith(sourcePath)) {
  /external/chromium_org/third_party/skia/src/animator/
SkMatrixParts.cpp 242 SkPath& sourcePath = source->getPath();
243 int srcPts = sourcePath.getPoints(src, 4);

Completed in 1490 milliseconds

1 2 3 4 5