/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
dict_file_writing_utils.h | 38 static bool flushBufferToFileWithSuffix(const char *const basePath, const char *const suffix,
|
dict_file_writing_utils.cpp | 82 /* static */ bool DictFileWritingUtils::flushBufferToFileWithSuffix(const char *const basePath, 84 const int filePathBufSize = FileUtils::getFilePathWithSuffixBufSize(basePath, suffix); 86 FileUtils::getFilePathWithSuffix(basePath, suffix, filePathBufSize, filePath);
|
/external/skia/src/ports/ |
SkFontMgr_android_parser.h | 87 FontFamily(const SkString& basePath, bool isFallbackFont) 91 , fBasePath(basePath) 110 const SkString& basePath,
|
/external/libvncserver/libvncserver/tightvnc-filetransfer/ |
filetransfermsg.c | 171 char *basePath, *pChar; 187 basePath = malloc(pathLen + 3); 188 memcpy(basePath, path, pathLen); 190 basePath[basePathLength] = '\\'; 191 basePath[basePathLength + 1] = '*'; 192 basePath[basePathLength + 2] = '\0'; 198 basePath[basePathLength] = '\0'; /* Restore to a basePath + \ */ 200 for(pChar = basePath; *pChar; pChar++) { 214 strncpy_s(fullpath, PATH_MAX, basePath, basePathLength) [all...] |
/build/soong/common/ |
paths.go | 278 type basePath struct { 283 func (p basePath) Ext() string { 289 basePath 298 ret := SourcePath{basePath{p, pathConfig(ctx)}} 324 ret := SourcePath{basePath{p, pathConfig(ctx)}} 361 path := SourcePath{basePath{p, pathConfig(ctx)}} 461 basePath 472 return OutputPath{basePath{path, pathConfig(ctx)}} 501 basePath 515 return ModuleSrcPath{basePath{path, ctx.AConfig()}, PathForSource(ctx, ctx.ModuleDir(), path), ctx.ModuleDir() [all...] |
/external/clang/include/clang/AST/ |
Mangle.h | 187 ArrayRef<const CXXRecordDecl *> BasePath, 194 ArrayRef<const CXXRecordDecl *> BasePath, 234 ArrayRef<const CXXRecordDecl *> BasePath,
|
VTableBuilder.h | 399 typedef SmallVector<const CXXRecordDecl *, 1> BasePath; 421 BasePath MangledPath; 430 BasePath ContainingVBases; 435 BasePath PathToBaseWithVPtr;
|
/external/clang/lib/AST/ |
ExprCXX.cpp | 584 const CXXCastPath *BasePath, 589 unsigned PathSize = (BasePath ? BasePath->size() : 0); 595 if (PathSize) E->setCastPath(*BasePath); 609 const CXXCastPath *BasePath, 614 unsigned PathSize = (BasePath ? BasePath->size() : 0); 620 if (PathSize) E->setCastPath(*BasePath); 667 const CXXCastPath *BasePath, 671 unsigned PathSize = (BasePath ? BasePath->size() : 0) [all...] |
/external/deqp/scripts/ |
make_release.py | 48 def removeLeadingPath (path, basePath): 51 assert os.path.normpath(basePath) == basePath 52 return path[len(basePath) + 1:] 60 def getFileList (basePath): 62 basePath = os.path.normpath(basePath) 63 for root, dirs, files in os.walk(basePath): 65 relPath = removeLeadingPath(os.path.normpath(os.path.join(root, file)), basePath)
|
/cts/hostsidetests/appsecurity/test-apps/MultiUserStorageApp/src/com/android/cts/multiuserstorageapp/ |
MultiUserStorageTest.java | 132 final File basePath = myPath.getParentFile(); 136 final File otherPath = new File(basePath, String.valueOf(i));
|
/platform_testing/tests/androidbvt/src/com/android/androidbvt/ |
SysUIMultiUserTests.java | 109 final File basePath = myPath.getParentFile(); 115 final File otherPath = new File(basePath, String.valueOf(i));
|
/external/clang/lib/Sema/ |
SemaCast.cpp | 71 CXXCastPath BasePath; 159 CXXCastPath &BasePath, 166 CXXCastPath &BasePath); 172 CXXCastPath &BasePath); 179 CXXCastPath &BasePath); 186 CXXCastPath &BasePath); 199 CXXCastPath &BasePath, 272 &Op.BasePath, DestTInfo, 297 &Op.BasePath, DestTInfo, 690 &BasePath)) { [all...] |
/external/skia/tools/ |
skdiff_main.cpp | 415 SkString basePath(baseDir); 425 basePath.append(*baseFiles[i]); 429 drp->fBase.fFullPath = basePath; 443 basePath.append(*comparisonFiles[j]); 447 drp->fBase.fFullPath = basePath; 461 basePath.append(*baseFiles[i]); 465 drp->fBase.fFullPath = basePath;
|
/developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/model/ |
MusicProvider.java | 250 private MediaMetadata buildFromJSON(JSONObject json, String basePath) throws JSONException { 265 source = basePath + source; 268 iconUrl = basePath + iconUrl;
|
/developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/model/ |
MusicProvider.java | 250 private MediaMetadata buildFromJSON(JSONObject json, String basePath) throws JSONException { 265 source = basePath + source; 268 iconUrl = basePath + iconUrl;
|
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/model/ |
MusicProvider.java | 250 private MediaMetadata buildFromJSON(JSONObject json, String basePath) throws JSONException { 265 source = basePath + source; 268 iconUrl = basePath + iconUrl;
|
/frameworks/base/core/java/com/android/internal/util/ |
FileRotator.java | 91 * @param basePath Directory under which all files will be placed. 98 public FileRotator(File basePath, String prefix, long rotateAgeMillis, long deleteAgeMillis) { 99 mBasePath = Preconditions.checkNotNull(basePath);
|
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/model/ |
MusicProvider.java | 252 private MediaMetadataCompat buildFromJSON(JSONObject json, String basePath) throws JSONException { 267 source = basePath + source; 270 iconUrl = basePath + iconUrl;
|
/external/deqp/executor/tools/ |
xeExtractShaderPrograms.cpp | 70 const string basePath = string(de::FilePath::join(cmdLine.dstPath, casePath).getPath()) + "." + de::toString(programNdx); 75 const string shaderPath = basePath + "." + getShaderTypeSuffix(shader.shaderType);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_tools.py | 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable 25 scriptsdir = os.path.join(basepath, 'scripts')
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_tools.py | 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable 25 scriptsdir = os.path.join(basepath, 'scripts')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_tools.py | 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable 25 scriptsdir = os.path.join(basepath, 'scripts')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_tools.py | 23 basepath = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), variable 25 scriptsdir = os.path.join(basepath, 'scripts')
|
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-docs.js | 316 var basePath = getBaseUri(location.pathname); 317 var section = basePath.substring(1,basePath.indexOf("/",1)); 373 var basePath = getBaseUri(location.pathname); 374 var section = basePath.substring(1,basePath.indexOf("/",1));
|
/external/autotest/frontend/client/src/autotest/afe/ |
JobDetailView.java | 582 String basePath = jobId + "-" + owner + "/" + executionSubdir + "/"; 585 return new HTML(getLogsLinkHtml(basePath + "debug", "Debug logs")); 587 return new HTML(getLogsLinkHtml(basePath + "status.log", "Status log"));
|