Searched refs:Path (Results 176 - 200 of 481) sorted by relevance

1234567891011>>

/external/chromium_org/ui/views/window/
H A Dwindow_shape.cc12 void GetDefaultWindowMask(const gfx::Size &size, gfx::Path *window_mask) {
/external/clang/include/clang/Lex/
H A DModuleLoader.h82 /// \param Path The identifiers (and their locations) of the module
95 ModuleIdPath Path,
/external/llvm/lib/Transforms/Instrumentation/
H A DDebugIR.h62 /// Run pass on M and set Path to the source file path in the output module.
63 bool runOnModule(llvm::Module &M, std::string &Path);
/external/skia/src/animator/
H A DSkDrawPath.h19 DECLARE_DRAW_MEMBER_INFO(Path);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
H A Dfuse_fs.cc60 Error FuseFs::OpenWithMode(const Path& path, int open_flags, mode_t mode,
140 Error FuseFs::Unlink(const Path& path) {
153 Error FuseFs::Mkdir(const Path& path, int perm) {
166 Error FuseFs::Rmdir(const Path& path) {
179 Error FuseFs::Remove(const Path& path) {
199 Error FuseFs::Rename(const Path& path, const Path& newpath) {
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
H A Djs_fs.cc394 Error JsFs::OpenWithMode(const Path& path, int open_flags, mode_t t,
421 Error JsFs::Unlink(const Path& path) {
432 Error JsFs::Mkdir(const Path& path, int perm) {
445 Error JsFs::Rmdir(const Path& path) {
456 Error JsFs::Remove(const Path& path) {
467 Error JsFs::Rename(const Path& path, const Path& newpath) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGShape.cpp51 , m_needsShapeUpdate(true) // Default is true, so we grab a Path object once from SVGGraphicsElement.
63 m_path = adoptPtr(new Path);
81 Path* usePath = m_path.get();
97 Path* usePath = nonScalingStrokePath(m_path.get(), nonScalingTransform);
163 Path* RenderSVGShape::nonScalingStrokePath(const Path* path, const AffineTransform& strokeTransform) const
165 DEFINE_STATIC_LOCAL(Path, tempPath, ());
391 Path* usePath = nonScalingStrokePath(m_path.get(), nonScalingTransform);
/external/clang/lib/Basic/
H A DFileManager.cpp26 #include "llvm/Support/Path.h"
127 void FileManager::addAncestorsAsVirtualDirs(StringRef Path) { argument
128 StringRef DirName = llvm::sys::path::parent_path(Path);
451 bool FileManager::getStatValue(const char *Path, FileData &Data, bool isFile, argument
456 return FileSystemStatCache::get(Path, Data, isFile, F,StatCache.get(), *FS);
458 SmallString<128> FilePath(Path);
465 bool FileManager::getNoncachedStatValue(StringRef Path, argument
467 SmallString<128> FilePath(Path);
/external/clang/lib/Frontend/
H A DCacheTokens.cpp29 #include "llvm/Support/Path.h"
61 union { const FileEntry* FE; const char* Path; }; member in union:__anon17910::PTHEntryKeyVariant::__anon17911
69 : Path(path), Kind(IsDE), Data(new FileData(*Data)) {}
72 : Path(path), Kind(IsNoExist), Data(nullptr) {}
77 return Kind == IsFE ? FE->getName() : Path;
542 LookupResult getStat(const char *Path, FileData &Data, bool isFile,
545 LookupResult Result = statChained(Path, Data, isFile, F, FS);
548 PM.insert(PTHEntryKeyVariant(Path), PTHEntry());
551 if (llvm::sys::path::is_relative(Path))
554 PM.insert(PTHEntryKeyVariant(&Data, Path), PTHEntr
[all...]
/external/chromium_org/net/cookies/
H A Dcanonical_cookie_unittest.cc56 EXPECT_EQ("/test", cookie.Path());
74 EXPECT_EQ("", cookie2.Path());
91 EXPECT_EQ("/test", cookie->Path());
100 EXPECT_EQ("/", cookie->Path());
130 EXPECT_EQ("/test", cookie->Path());
140 EXPECT_EQ("/test", cookie->Path());
339 cookie.reset(CanonicalCookie::Create(url, "A=2; Path=/foo/bar", creation_time,
H A Dcanonical_cookie.h77 const std::string& Path() const { return path_; } function in class:net::CanonicalCookie
104 && path_ == ecc.Path());
/external/clang/include/clang/AST/
H A DAPValue.h142 APValue(LValueBase B, const CharUnits &O, ArrayRef<LValuePathEntry> Path, argument
145 MakeLValue(); setLValue(B, O, Path, OnePastTheEnd, CallIndex);
158 ArrayRef<const CXXRecordDecl*> Path) : Kind(Uninitialized) {
159 MakeMemberPointer(Member, IsDerivedMember, Path);
379 ArrayRef<LValuePathEntry> Path, bool OnePastTheEnd,
442 ArrayRef<const CXXRecordDecl*> Path);
157 APValue(const ValueDecl *Member, bool IsDerivedMember, ArrayRef<const CXXRecordDecl*> Path) argument
/external/clang/lib/Lex/
H A DPPLexerChange.cpp24 #include "llvm/Support/Path.h"
219 StringRef Path = FilePath; local
220 while (!Path.empty()) {
221 if (const DirectoryEntry *CurDir = FM.getDirectory(Path)) {
223 Result = FilePath.substr(Path.size());
230 Path = llvm::sys::path::parent_path(Path);
H A DHeaderMap.cpp205 SmallString<1024> Path; local
206 StringRef Dest = lookupFilename(Filename, Path);
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp25 setupMemoryBuffer(std::string Path, std::unique_ptr<MemoryBuffer> &Buffer) { argument
27 MemoryBuffer::getFileOrSTDIN(Path);
43 InstrProfReader::create(std::string Path, argument
47 if (std::error_code EC = setupMemoryBuffer(Path, Buffer))
65 std::string Path, std::unique_ptr<IndexedInstrProfReader> &Result) {
68 if (std::error_code EC = setupMemoryBuffer(Path, Buffer))
64 create( std::string Path, std::unique_ptr<IndexedInstrProfReader> &Result) argument
/external/llvm/tools/bugpoint/
H A DExecutionDriver.cpp204 std::string Path = SafeInterpreterPath; local
205 if (Path.empty())
206 Path = getToolName();
215 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
226 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
239 SafeInterpreter = AbstractInterpreter::createLLC(Path.c_str(), Message,
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DHitRegion.cpp48 void HitRegion::removePixels(const Path& clearArea)
98 Path clearArea;
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.h55 const Path*, BackgroundBleedAvoidance, bool includeLogicalLeftEdge, bool includeLogicalRightEdge, bool antialias, const Color* overrideColor = 0);
59 static void drawBoxSideFromPath(GraphicsContext*, const LayoutRect&, const Path&, const BorderEdge[],
/external/chromium_org/ui/aura/test/
H A Dtest_window_delegate.cc96 void TestWindowDelegate::GetHitTestMask(gfx::Path* mask) const {
134 void MaskedWindowDelegate::GetHitTestMask(gfx::Path* mask) const {
H A Dtest_window_delegate.h62 virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE;
102 virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE;
/external/chromium_org/ui/views/win/
H A Dhwnd_message_handler_delegate.h13 class Path;
60 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* mask) = 0;
/external/clang/examples/clang-interpreter/
H A Dmain.cpp26 #include "llvm/Support/Path.h"
71 std::string Path = GetExecutablePath(argv[0]); local
78 Driver TheDriver(Path, llvm::sys::getProcessTriple(), Diags);
/external/clang/unittests/Tooling/
H A DRefactoringTest.cpp28 #include "llvm/Support/Path.h"
228 SmallString<1024> Path; local
230 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
237 const FileEntry *File = Context.Files.getFile(Path);
240 StringRef Found = TemporaryFiles.GetOrCreateValue(Name, Path.str()).second;
241 assert(Found == Path);
247 std::string Path = TemporaryFiles.lookup(Name); local
248 assert(!Path.empty());
255 Context.Files.getBufferForFile(Path, nullptr));
/external/nanopb-c/extra/
H A Dnanopb.mk4 # Path to the nanopb root directory
/external/nist-pkits/
H A Dextract-pkits-tests.pl135 if ($_ =~ /^\s*4 Certification Path Validation Tests$/) {
193 if ($_ =~ /^\s*Certification Path:/) {

Completed in 660 milliseconds

1234567891011>>