HomeSort by relevance Sort by last modified time
    Searched refs:NewPath (Results 1 - 25 of 31) sorted by null

1 2

  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/
Path.c 35 to by NewPath.
37 If Path was not a Mapping Path, then NewPath is set to Path.
40 @param[out] NewPath Pointer to the path portion of a mapping path.
43 @retval PathAbsolute Path is an absolute path. NewPath points to the first '\'.
44 @retval PathRelative Path is a relative path. NewPath = Path.
45 @retval PathMapping Path is a mapping path. NewPath points to the character following ':'.
52 OUT wchar_t ** NewPath,
61 if(NewPath != NULL) {
62 *NewPath = Path; // Setup default condition
87 if(NewPath != NULL) {
    [all...]
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 40 /// \brief Inserts 'NewPath' into this trie. \c ConsumedLength denotes
41 /// the number of \c NewPath's trailing characters already consumed during
54 void insert(StringRef NewPath, unsigned ConsumedLength = 0) {
57 if (llvm::sys::path::is_relative(NewPath))
60 // This is an empty leaf. Store NewPath and return.
61 Path = NewPath;
65 // This is a leaf, ignore duplicate entry if 'Path' equals 'NewPath'.
66 if (NewPath == Path)
74 StringRef(NewPath).drop_back(ConsumedLength)));
75 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1)
    [all...]
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 69 void insert(StringRef NewPath);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Tooling/
FileMatchTrie.h 70 void insert(StringRef NewPath);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Tooling/
FileMatchTrie.h 70 void insert(StringRef NewPath);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Tooling/
FileMatchTrie.h 70 void insert(StringRef NewPath);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/
FileMatchTrie.h 70 void insert(StringRef NewPath);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Tooling/
FileMatchTrie.h 70 void insert(StringRef NewPath);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Tooling/
FileMatchTrie.h 70 void insert(StringRef NewPath);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Tooling/
FileMatchTrie.h 70 void insert(StringRef NewPath);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Tooling/
FileMatchTrie.h 70 void insert(StringRef NewPath);
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Device/
Device.h 91 to by NewPath.
93 If Path was not a Mapping Path, then NewPath is set to Path.
96 @param[out] NewPath Pointer to the path portion of a mapping path.
98 @retval PathAbsolute Path is an absolute path. NewPath points to the first '\'.
99 @retval PathRelative Path is a relative path. NewPath = Path.
100 @retval PathMapping Path is a mapping path. NewPath points to the ':'.
103 PATH_CLASS EFIAPI ClassifyPath(IN wchar_t *Path, OUT wchar_t **NewPath, int * const Length);
  /external/pdfium/core/fxge/
cfx_pathdata.h 56 CFX_PathData* NewPath,
  /external/skia/experimental/go-demo/
main.go 51 path := skia.NewPath()
  /external/pdfium/core/fxge/ge/
cfx_pathdata.cpp 290 CFX_PathData* NewPath,
310 NewPath->AppendPoint(
341 NewPath->Append(&t_path, nullptr);
369 NewPath->AppendPoint(m_Points[pre].m_Point, FXPT_TYPE::MoveTo, false);
370 NewPath->AppendPoint(m_Points[next].m_Point, FXPT_TYPE::LineTo,
384 NewPath->AppendPoint(m_Points[pre].m_Point, FXPT_TYPE::MoveTo, false);
385 NewPath->AppendPoint(m_Points[next].m_Point, FXPT_TYPE::LineTo,
391 NewPath->AppendPoint(m_Points[i - 1].m_Point, FXPT_TYPE::MoveTo,
393 NewPath->AppendPoint(m_Points[i].m_Point, FXPT_TYPE::LineTo, false);
403 size_t new_path_size = NewPath->GetPoints().size()
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
UefiShellCommandLib.c     [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 565 wchar_t *NewPath;
572 Status = ParsePath(path, &NewPath, &Node, &Instance, NULL);
583 free(NewPath);
662 wchar_t *NewPath;
673 Status = ParsePath(path, &NewPath, &Node, &Instance, &MPath);
697 doresult = Node->OpenFunc(Node, filp, Instance, NewPath, MPath);
724 free(NewPath);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/EfiFileLib/
EfiFileLib.c     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
InstallPkg.py 634 # @param NewPath: NewPath
642 def InstallModuleContent(FromPath, NewPath, ModulePath, Module, ContentZipFile,
645 if NewPath.startswith("\\") or NewPath.startswith("/"):
646 NewPath = NewPath[1:]
648 if not IsValidInstallPath(NewPath):
649 Logger.Error("UPT", FORMAT_INVALID, ST.ERR_FILE_NAME_INVALIDE%NewPath)
651 NewModuleFullPath = os.path.normpath(os.path.join(WorkspaceDir, NewPath,
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/UefiShell/
daShell.c 170 wchar_t *NewPath;
174 NewPath = NormalizePath( path);
176 if(NewPath != NULL) {
177 Status = ShellCreateDirectory( NewPath, &FileHandle);
194 free(NewPath);
  /external/clang/lib/Basic/
FileManager.cpp 397 SmallString<128> NewPath(FileSystemOpts.WorkingDir);
398 llvm::sys::path::append(NewPath, pathRef);
399 path = NewPath;
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
dpath.c 334 EFI_DEVICE_PATH *Src, *Dest, *NewPath;
359 NewPath = AllocateZeroPool (Size);
360 if (NewPath) {
362 ASSERT (((UINTN)NewPath) % MIN_ALIGNMENT_SIZE == 0);
369 Dest = NewPath;
386 return NewPath;
  /external/llvm/lib/Support/
Path.cpp 542 SmallString<256> NewPath;
543 path::append(NewPath, NewPrefix);
544 path::append(NewPath, RelPath);
545 Path.swap(NewPath);
    [all...]
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 329 SmallString<128> NewPath(Path);
330 llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
331 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
337 return NewPath.str();
  /external/skia/experimental/go-skia/
skia.go 158 func NewPath() *Path {

Completed in 585 milliseconds

1 2