/external/chromium/crypto/ |
nss_util.cc | 73 FilePath dir = file_util::GetHomeDir(); local 74 if (dir.empty()) { 76 return dir; 78 dir = dir.AppendASCII(".pki").AppendASCII("nssdb"); 79 if (!file_util::CreateDirectory(dir)) { 81 dir.clear(); 83 return dir;
|
/external/chromium_org/base/ |
file_util_win.cc | 197 HANDLE dir = local 201 if (dir == INVALID_HANDLE_VALUE) 204 CloseHandle(dir); 257 FILE* CreateAndOpenTemporaryFileInDir(const FilePath& dir, FilePath* path) { 259 if (!CreateTemporaryFileInDir(dir, path)) { 268 bool CreateTemporaryFileInDir(const FilePath& dir, FilePath* temp_file) { 273 if (!GetTempFileName(dir.value().c_str(), L"", 0, temp_name)) { 275 << UTF16ToUTF8(dir.value()); 636 bool GetCurrentDirectory(FilePath* dir) { 648 *dir = FilePath(dir_str).StripTrailingSeparators() [all...] |
/external/chromium_org/base/files/ |
file_path.cc | 247 FilePath dir = current.DirName(); local 248 StringType::size_type letter = FindDriveLetter(dir.value()); 250 ret_val.push_back(StringType(dir.value(), 0, letter + 1)); [all...] |
/external/chromium_org/base/nix/ |
mime_util_xdg.cc | 367 std::string dir; local 369 TrimWhitespaceASCII(dirs.substr(pos, epos - pos), TRIM_ALL, &dir); 370 if (dir.length() == 0) { 374 subdirs_[dir] = num++; 377 TrimWhitespaceASCII(dirs.substr(pos), TRIM_ALL, &dir); 378 if (dir.length() == 0) { 382 subdirs_[dir] = num++; 387 bool CheckDirExistsAndGetMtime(const FilePath& dir, Time* last_modified) { 388 if (!DirectoryExists(dir)) 391 if (!GetFileInfo(dir, &file_info) [all...] |
/external/chromium_org/chrome/browser/sync/glue/ |
session_model_associator.cc | 75 syncer::syncable::Directory* dir = trans->GetWrappedWriteTrans()->directory(); local 77 machine_tag.append(dir->cache_guid()); [all...] |
/external/chromium_org/content/browser/fileapi/ |
copy_or_move_operation_delegate_unittest.cc | 307 FileSystemURL dir = directories.front(); local 309 ASSERT_EQ(base::PLATFORM_FILE_OK, ReadDirectory(dir, &entries)); 312 dir.origin(), 313 dir.mount_type(), 314 dir.virtual_path().Append(entries[i].name));
|
/external/chromium_org/content/browser/net/ |
sqlite_persistent_cookie_store.cc | 560 const base::FilePath dir = path_.DirName(); local 561 if (!base::PathExists(dir) && !base::CreateDirectory(dir)) { [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
DateTimeEditElement.cpp | 407 Direction dir = direction(text[0]); local 408 if (dir == SegmentSeparator || dir == WhiteSpaceNeutral || dir == OtherNeutral)
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/ |
HarfBuzzShaper.cpp | 89 hb_direction_t dir; member in struct:WebCore::CachedShapingResults 103 , dir(dirData) 671 if (cachedResults->dir == props.direction && cachedResults->font == *m_font) { [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
BidiResolver.h | 116 BidiCharacterRun(int start, int stop, BidiContext* context, WTF::Unicode::Direction dir) 123 if (dir == WTF::Unicode::OtherNeutral) 124 dir = context->dir(); 130 if (dir == WTF::Unicode::LeftToRight || dir == WTF::Unicode::ArabicNumber || dir == WTF::Unicode::EuropeanNumber) 133 if (dir == WTF::Unicode::RightToLeft) 135 else if (dir == WTF::Unicode::ArabicNumber || dir == WTF::Unicode::EuropeanNumber 198 WTF::Unicode::Direction dir() const { return m_direction; } function in class:WebCore::BidiResolver [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
PopupListBox.cpp | 754 int dir = delta > 0 ? 1 : -1; local 766 testIndex += dir;
|
/external/chromium_org/third_party/freetype/src/autofit/ |
afhints.c | 82 AF_Direction dir, 124 if ( edge[-1].fpos == fpos && dir == axis->major_dir ) 135 edge->dir = (FT_Char)dir; 148 af_dir_str( AF_Direction dir ) 153 switch ( dir ) 269 FT_TRACE7(( " [ index | pos | dir | from" 283 af_dir_str( (AF_Direction)seg->dir ), 390 FT_TRACE7(( " [ index | pos | dir | link" 400 af_dir_str( (AF_Direction)edge->dir ), 485 AF_Direction dir; \/* candidate direction *\/ local [all...] |
afhints.h | 270 FT_Char dir; /* segment direction */ member in struct:AF_SegmentRec_ 298 FT_Char dir; /* edge direction */ member in struct:AF_EdgeRec_ 410 AF_Direction dir,
|
/external/chromium_org/third_party/icu/source/common/ |
ucase.c | 620 * (dir determines looking forward/backward) 625 isFollowedByCasedLetter(const UCaseProps *csp, UCaseContextIterator *iter, void *context, int8_t dir) { 632 for(/* dir!=0 sets direction */; (c=iter(context, dir))>=0; dir=0) { 651 int8_t dir; local 657 for(dir=-1; (c=iter(context, dir))>=0; dir=0) { 708 int8_t dir; local 732 int8_t dir; local 755 int8_t dir; local [all...] |
ucase.h | 148 * @param dir If <0 then start iterating backward from the character; 154 UCaseContextIterator(void *context, int8_t dir); 164 int8_t dir; member in struct:UCaseContext
|
uts46.cpp | 976 UCharDirection dir=u_charDirection(c); local [all...] |
/external/chromium_org/third_party/leveldatabase/src/util/ |
env_posix.cc | 222 std::string dir; local 224 dir = "."; 227 dir = std::string(f, sep - f); 232 int fd = open(dir.c_str(), O_RDONLY); 234 s = IOError(dir, errno); 237 s = IOError(dir, errno); 359 virtual Status GetChildren(const std::string& dir, 362 DIR* d = opendir(dir.c_str()); 364 return IOError(dir, errno) [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkStroke.cpp | 562 SkPath::Direction dir; local 563 if (src.isRect(&isClosed, &dir) && isClosed) { 564 this->strokeRect(src.getBounds(), dst, dir); 656 static SkPath::Direction reverse_direction(SkPath::Direction dir) { 657 SkASSERT(SkPath::kUnknown_Direction != dir); 658 return SkPath::kCW_Direction == dir ? SkPath::kCCW_Direction : SkPath::kCW_Direction; 661 static void addBevel(SkPath* path, const SkRect& r, const SkRect& outer, SkPath::Direction dir) { 664 if (SkPath::kCW_Direction == dir) { 687 SkPath::Direction dir) const { 699 dir = reverse_direction(dir) [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkMorphologyImageFilter.cpp | 312 static GrEffectRef* Create(GrTexture* tex, Direction dir, int radius, MorphologyType type) { 313 AutoEffectUnref effect(SkNEW_ARGS(GrMorphologyEffect, (tex, dir, radius, type))); 487 Direction dir = random->nextBool() ? kX_Direction : kY_Direction; local 493 return GrMorphologyEffect::Create(textures[texIdx], dir, radius, type);
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrAAConvexPathRenderer.cpp | 114 SkPath::Direction dir, 122 if (dir == SkPath::kCCW_Direction) { 210 static inline bool get_direction(const SkPath& path, const SkMatrix& m, SkPath::Direction* dir) { 211 if (!path.cheapComputeDirection(dir)) { 219 *dir = SkPath::OppositeDirection(*dir); 257 SkPath::Direction dir, 261 GrPathUtils::convertCubicToQuads(pts, SK_Scalar1, true, dir, &quads); 284 SkPath::Direction dir; local 286 if (!get_direction(path, m, &dir)) { [all...] |
GrAARectRenderer.cpp | 612 SkVector dir = { combinedMatrix[SkMatrix::kMSkewX], combinedMatrix[SkMatrix::kMScaleY] }; local 613 dir.normalize(); 641 verts[i].fDir = dir; [all...] |
/external/chromium_org/ui/shell_dialogs/ |
select_file_dialog_win.cc | 796 // Define the dir in here to keep the string buffer pointer pointed to 799 base::FilePath dir; local 805 dir = path->DirName(); 806 ofn.lpstrInitialDir = dir.value().c_str(); [all...] |
/external/e2fsprogs/e2fsck/ |
rehash.c | 70 struct ext2_dir_entry *dir; member in struct:hash_entry 90 char *dir; local 102 dir = (fd->buf+offset); 104 memset(dir, 0, fs->blocksize); 105 dirent = (struct ext2_dir_entry *) dir; 108 fd->err = ext2fs_read_dir_block(fs, *block_nr, dir); 119 dirent = (struct ext2_dir_entry *) (dir + dir_offset); 150 ent->dir = dirent; 185 min_len = he_a->dir->name_len; 186 if (min_len > he_b->dir->name_len 492 struct ext2_dir_entry *dir; local 530 struct ext2_dir_entry *dir; local 643 char *dir; local 824 struct dir_info *dir; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ComponentsView.java | 386 String dir = this.viewState.getString(IPerformancesConstants.PRE_WRITE_RESULTS_DIR); local 387 if (dir != null) { 388 this.resultsDir = new File(dir);
|
/external/emma/core/java12/com/vladium/emma/report/ |
ReportProperties.java | 257 // renormalize the out dir and file combination: 263 final File dir = fullOutFile.getParentFile (); local 264 if (dir != null) result.setOutDir (dir); 362 final int dir; local 368 dir = +1; 375 dir = -1; 382 dir = +1; 395 _sort.add (dir); // sort direction
|