/external/lzma/CPP/Windows/ |
FileDir.cpp | 135 bool MyRemoveDirectory(LPCTSTR pathName)
137 if (::RemoveDirectory(pathName))
141 if (GetLongPath(pathName, longPath))
187 bool MyRemoveDirectory(LPCWSTR pathName)
190 return MyRemoveDirectory(GetSysPath(pathName));
191 if (::RemoveDirectoryW(pathName))
195 if (GetLongPath(pathName, longPath))
216 bool MyCreateDirectory(LPCTSTR pathName)
218 if (::CreateDirectory(pathName, NULL))
224 if (GetLongPath(pathName, longPath)) [all...] |
FileDir.h | 28 bool MyRemoveDirectory(LPCTSTR pathName);
29 bool MyCreateDirectory(LPCTSTR pathName);
30 bool CreateComplexDirectory(LPCTSTR pathName);
37 bool MyRemoveDirectory(LPCWSTR pathName);
38 bool MyCreateDirectory(LPCWSTR pathName);
39 bool CreateComplexDirectory(LPCWSTR pathName);
|
FileFind.cpp | 361 HANDLE CFindChangeNotification::FindFirst(LPCTSTR pathName, bool watchSubtree, DWORD notifyFilter)
363 _handle = ::FindFirstChangeNotification(pathName, BoolToBOOL(watchSubtree), notifyFilter);
368 if (GetLongPath(pathName, longPath))
376 HANDLE CFindChangeNotification::FindFirst(LPCWSTR pathName, bool watchSubtree, DWORD notifyFilter)
379 return FindFirst(UnicodeStringToMultiByte(pathName, GetCurrentCodePage()), watchSubtree, notifyFilter);
380 _handle = ::FindFirstChangeNotificationW(pathName, BoolToBOOL(watchSubtree), notifyFilter);
385 if (GetLongPath(pathName, longPath))
|
FileFind.h | 144 HANDLE FindFirst(LPCTSTR pathName, bool watchSubtree, DWORD notifyFilter);
146 HANDLE FindFirst(LPCWSTR pathName, bool watchSubtree, DWORD notifyFilter);
|
/art/test/068-classloader/src/ |
FancyLoader.java | 138 String pathName = CLASS_PATH + name + ".class"; 139 //System.out.println("--- Fancy: looking for " + pathName); 141 File path = new File(pathName); 147 throw new ClassNotFoundException("Not found: " + pathName); 156 throw new ClassNotFoundException("Read error: " + pathName);
|
/external/chromium_org/third_party/skia/tests/ |
PathOpsExtendedTest.h | 52 void ShowPath(const SkPath& path, const char* pathName);
|
PathOpsDebug.cpp | 53 static void showPathContours(SkPath::RawIter& iter, const char* pathName) { 59 SkDebugf(" %s.moveTo(", pathName); 63 SkDebugf(" %s.lineTo(", pathName); 67 SkDebugf(" %s.quadTo(", pathName); 71 SkDebugf(" %s.cubicTo(", pathName); 75 SkDebugf(" %s.close();\n", pathName);
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_ClassLoader.java | 101 private Class<?> loadClassFromFile(String pathName, String className, 107 theFile = new File(pathName, classNameAsFile);
|
/external/chromium_org/third_party/skia/src/ports/ |
SkFontMgr_android.cpp | 66 SkTypeface_AndroidSystem(const SkString pathName, 74 , fPathName(pathName) 150 SkString pathName; 151 get_path_for_sys_fonts(basePath, fontFile.fFileName, &pathName); 153 SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(pathName.c_str())); 155 DEBUG_FONT(("---- SystemFonts[%d] file=%s (NOT EXIST)", i, pathName.c_str())); 165 DEBUG_FONT(("---- SystemFonts[%d] file=%s (INVALID)", i, pathName.c_str())); 183 (pathName, ttcIndex,
|
/external/chromium_org/third_party/skia/src/utils/debugger/ |
SkDebugCanvas.cpp | 669 void SkDebugCanvas::addPathData(const SkPath& path, const char* pathName) { 672 fClipStackData.appendf("%sSkPath %s;<br>", kHTML4SpaceIndent, pathName); 673 fClipStackData.appendf("%s%s.setFillType(SkPath::%s);<br>", kHTML4SpaceIndent, pathName, 681 fClipStackData.appendf("%s%s.moveTo(", kHTML4SpaceIndent, pathName); 685 fClipStackData.appendf("%s%s.lineTo(", kHTML4SpaceIndent, pathName); 689 fClipStackData.appendf("%s%s.quadTo(", kHTML4SpaceIndent, pathName); 693 fClipStackData.appendf("%s%s.conicTo(", kHTML4SpaceIndent, pathName); 697 fClipStackData.appendf("%s%s.cubicTo(", kHTML4SpaceIndent, pathName); 701 fClipStackData.appendf("%s%s.close();<br>", kHTML4SpaceIndent, pathName);
|
SkDebugCanvas.h | 321 void addPathData(const SkPath& path, const char* pathName);
|
/external/deqp/modules/gles31/functional/ |
es31fProgramInterfaceDefinitionUtil.hpp | 167 bool findProgramVariablePathByPathName (std::vector<ProgramInterfaceDefinition::VariablePathComponent>& typePath, const ProgramInterfaceDefinition::Program* program, const std::string& pathName, const ProgramInterfaceDefinition::VariableSearchFilter& filter);
|
es31fProgramInterfaceDefinitionUtil.cpp | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.security_1.0.200.v20100503.jar | |
org.eclipse.equinox.preferences_3.3.0.v20100503.jar | |
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar | |
org.eclipse.pde.core_3.6.1.v20100902_r361.jar | |
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar | |
/external/chromium_org/third_party/libaddressinput/src/java/ |
android.jar | |