/external/chromium/chrome/browser/ |
platform_util_win.cc | 33 FilePath dir = full_path.DirName(); local 35 if (dir.value() == L"" || !file_util::EnsureEndsWithSeparator(&dir)) 64 ShellExecute(NULL, L"open", dir.value().c_str(), NULL, NULL, SW_SHOW); 75 const_cast<wchar_t *>(dir.value().c_str()), 99 ShellExecute(NULL, L"open", dir.value().c_str(), NULL, NULL, SW_SHOW);
|
/external/chromium/chrome/common/ |
zip.cc | 68 FilePath dir = dest_file.DirName(); local 69 if (!file_util::CreateDirectory(dir))
|
/external/chromium_org/chrome/browser/ui/gtk/tab_contents/ |
render_view_context_menu_gtk.cc | 154 blink::WebTextDirection dir = blink::WebTextDirectionLeftToRight; local 156 dir = blink::WebTextDirectionRightToLeft; 157 view_host->UpdateTextDirection(dir);
|
/external/chromium_org/chrome/common/net/ |
url_fixer_upper_unittest.cc | 222 // dir = "c:\foo" 224 static bool MakeTempFile(const base::FilePath& dir, 227 *full_path = dir.Append(file_name); 369 base::FilePath dir; local 371 ASSERT_TRUE(PathService::Get(chrome::DIR_APP, &dir)); 373 dir, 466 base::FilePath full_path, dir; local 469 ASSERT_TRUE(PathService::Get(chrome::DIR_APP, &dir)); 470 ASSERT_TRUE(MakeTempFile(dir, file_part, &full_path)); 479 URLFixerUpper::FixupRelativeFile(dir, input).possibly_invalid_spec()) [all...] |
/external/chromium_org/chrome/test/mini_installer_test/ |
installer_path_provider.cc | 210 std::vector<base::FilePath>::const_iterator dir; local 211 for (dir = paths.begin(); dir != paths.end(); ++dir) { 212 base::FilePath windir = dir->Append(
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
mount_http_test.cc | 273 ScopedMountNode dir; local 274 EXPECT_EQ(0, mnt.FindOrCreateDir(Path("/mydir"), &dir)); 275 ASSERT_NE((MountNode*)NULL, dir.get()); 276 EXPECT_EQ(1, dir->ChildCount());
|
/external/chromium_org/sync/engine/ |
download.cc | 34 syncable::Directory* dir) { 40 syncable::ReadTransaction trans(FROM_HERE, dir); 41 syncable::NigoriHandler* nigori_handler = dir->GetNigoriHandler(); 75 syncable::Directory* dir = context->directory(); local 76 syncable::ReadTransaction trans(FROM_HERE, dir); 77 syncable::NigoriHandler* nigori_handler = dir->GetNigoriHandler(); 374 syncable::Directory* dir = session->context()->directory(); local 376 HandleGetEncryptionKeyResponse(update_response, dir));
|
get_commit_ids.cc | 58 syncable::Directory* dir = trans->directory(); local 68 Cryptographer* cryptographer = dir->GetCryptographer(trans); 70 encrypted_types = dir->GetNigoriHandler()->GetEncryptedTypes(trans);
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
ConsoleBase.cpp | 71 void ConsoleBase::dir(ScriptState* state, PassRefPtr<ScriptArguments> arguments) function in class:WebCore::ConsoleBase
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderMarquee.cpp | 95 TextDirection dir = style()->direction(); local 99 result = (dir == LTR) ? MRIGHT : MLEFT; 101 result = (dir == LTR) ? MLEFT : MRIGHT; 117 int RenderMarquee::computePosition(EMarqueeDirection dir, bool stopAtContentEdge) 129 if (dir == MRIGHT) { 145 if (dir == MUP) {
|
/external/chromium_org/third_party/leveldatabase/ |
env_chromium_unittest.cc | 83 base::ScopedTempDir dir; local 84 dir.CreateUniqueTempDir(); 85 base::FilePath dir_path = dir.path(); 115 int CountFilesWithExtension(const base::FilePath& dir, 119 dir, false, base::FileEnumerator::FILES); 128 bool GetFirstLDBFile(const base::FilePath& dir, base::FilePath* ldb_file) { 130 dir, false, base::FileEnumerator::FILES); 148 base::FilePath dir = scoped_temp_dir.path(); local 151 Status status = DB::Open(options, dir.AsUTF8Unsafe(), &db); 158 int ldb_files = CountFilesWithExtension(dir, FPL(".ldb")) 193 base::FilePath dir = scoped_temp_dir.path(); local 205 base::FilePath dir = scoped_temp_dir.path(); local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_clip_unfilled.c | 94 brw_MUL(p, c->reg.dir, c->reg.dir, vec4(e)); 114 get_element(c->reg.dir, 2), 151 get_element(c->reg.dir, 2), 187 GLfloat iz = 1.0 / dir.z; 188 GLfloat ac = dir.x * iz; 189 GLfloat bc = dir.y * iz; 198 struct brw_reg dir = c->reg.dir; local 200 brw_math_invert(p, get_element(off, 2), get_element(dir, 2)) [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkStrokerPriv.cpp | 129 SkRotationDirection dir = kCW_SkRotationDirection; local 136 dir = kCCW_SkRotationDirection; 143 int count = SkBuildQuadArc(before, after, dir, &matrix, pts);
|
/external/chromium_org/third_party/tlslite/scripts/ |
tls.py | 39 def clientTest(address, dir): 195 x509Cert = X509().parse(open(os.path.join(dir, "clientX509Cert.pem")).read()) 197 s = open(os.path.join(dir, "clientX509Key.pem")).read() 230 cryptoIDChain = CertChain().parse(open(os.path.join(dir, "serverCryptoIDChain.xml"), "r").read()) 231 cryptoIDKey = parseXMLKey(open(os.path.join(dir, "serverCryptoIDKey.xml"), "r").read(), private=True) 284 htmlBody = open(os.path.join(dir, "index.html")).read() 313 htmlBody = open(os.path.join(dir, "index.html")).read() 409 def serverTest(address, dir): 445 #verifierDB = tlslite.VerifierDB(os.path.join(dir, "verifierDB")) 475 x509Cert = X509().parse(open(os.path.join(dir, "serverX509Cert.pem")).read() 816 dir = args.getLast(3) variable [all...] |
/external/chromium_org/ui/base/ime/ |
input_method_win.cc | 61 base::i18n::TextDirection dir; local 62 if (ui::IMM32Manager::IsCtrlShiftPressed(&dir)) 63 pending_requested_direction_ = dir;
|
/external/chromium_org/webkit/browser/fileapi/ |
native_file_util_unittest.cc | 246 base::FilePath dir = Path("dir"); local 248 NativeFileUtil::CreateDirectory(dir, false, false)); 249 ASSERT_TRUE(base::DirectoryExists(dir)); 250 base::FilePath to_dir_file = dir.AppendASCII("file"); 268 dir, Path("file"), FileSystemOperation::OPTION_NONE, nosync)); 272 from_file, dir, FileSystemOperation::OPTION_NONE, nosync)); 312 base::FilePath dir = Path("dir"); local 314 NativeFileUtil::CreateDirectory(dir, false, false)) [all...] |
/external/e2fsprogs/intl/ |
l10nflist.c | 342 char *dir = NULL; local 344 while ((dir = __argz_next ((char *) dirlist, dirlist_len, dir)) 347 = _nl_make_l10nflist (l10nfile_list, dir, strlen (dir) + 1,
|
localcharset.c | 119 const char *dir = relocate (LIBDIR); local 123 /* Concatenate dir and base into freshly allocated file_name. */ 125 size_t dir_len = strlen (dir); 127 int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1])); 131 memcpy (file_name, dir, dir_len);
|
/external/e2fsprogs/lib/ext2fs/ |
ext2fsP.h | 48 ext2_ino_t dir; member in struct:dir_context 51 int (*func)(ext2_ino_t dir,
|
/external/emma/core/java12/com/vladium/emma/report/ |
SourcePathCache.java | 44 final File dir = new File (sourcepath [i]); local 46 if (! removeNonExistent || (dir.isDirectory () && dir.exists ())) 47 _sourcepath.add (dir); 66 final File dir = sourcepath [i]; local 68 if (! removeNonExistent || (dir.isDirectory () && dir.exists ())) 69 _sourcepath.add (dir); 193 private Set /* String */ faultListing (final File dir, final String packageVMName) 195 if ($assert.ENABLED) $assert.ASSERT (dir != null, "dir = null") [all...] |
/external/icu4c/layout/ |
GlyphPositionAdjustments.cpp | 90 le_int32 start = 0, end = fGlyphCount, dir = 1; local 103 dir = -1; 106 for (le_int32 i = start; i != end; i += dir) { 144 le_int32 limit = lastExitPoint /*+ dir*/; 148 limit += dir; 151 for (le_int32 j = firstExitPoint; j != limit; j += dir) {
|
/external/iproute2/ip/ |
ipnetns.c | 74 DIR *dir; local 76 dir = opendir(NETNS_RUN_DIR); 77 if (!dir) 80 while ((entry = readdir(dir)) != NULL) { 87 closedir(dir); 97 DIR *dir; local 100 dir = opendir(etc_netns_path); 101 if (!dir) [all...] |
iptuntap.c | 273 DIR *dir; local 277 dir = opendir("/sys/class/net"); 278 if (!dir) { 282 while ((d = readdir(dir))) { 301 closedir(dir);
|
/external/iproute2/misc/ |
lnstat_util.c | 208 DIR *dir; local 215 dir = opendir(path); 216 if (!dir) { 251 while ((de = readdir(dir))) { 273 closedir(dir);
|
/external/ipsec-tools/src/racoon/ |
policy.h | 61 u_int8_t dir; /* direction of packet flow, see blow */ member in struct:policyindex 115 (idx)->dir = (_dir); \ 128 (idx)->dir = (_dir); \
|