HomeSort by relevance Sort by last modified time
    Searched defs:FileName (Results 1 - 25 of 307) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Drivers/PciPlatform/
PciPlatform.h 35 EFI_GUID FileName;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/SmmBaseHelper/
SmramProfileRecord.c 74 EFI_GUID *FileName;
85 FileName = GetFileNameFromFilePath (FilePath);
100 CopyMem (&CommRegisterImage->FileName, FileName, sizeof(EFI_GUID));
133 EFI_GUID *FileName;
144 FileName = GetFileNameFromFilePath (FilePath);
159 CopyMem (&CommUnregisterImage->FileName, FileName, sizeof(EFI_GUID));
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/FileInfo/
FileInfo.h 44 CHAR16 FileName[1];
48 // The FileName field of the EFI_FILE_INFO data structure is variable length.
50 // be the size of the data structure without the FileName field. The following macro
51 // computes this size correctly no matter how big the FileName array is declared.
54 #define SIZE_OF_EFI_FILE_INFO EFI_FIELD_OFFSET (EFI_FILE_INFO, FileName)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GuidChk/
FileSearch.h 55 INT8 FileName[MAX_PATH]; // for portability
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
FileInfo.h 27 /// The size of the EFI_FILE_INFO structure, including the Null-terminated FileName string.
57 CHAR16 FileName[1];
61 /// The FileName field of the EFI_FILE_INFO data structure is variable length.
63 /// be the size of the data structure without the FileName field. The following macro
64 /// computes this size correctly no matter how big the FileName array is declared.
67 #define SIZE_OF_EFI_FILE_INFO OFFSET_OF (EFI_FILE_INFO, FileName)
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Pci/Dxe/PciPlatform/
PciPlatform.h 43 EFI_GUID FileName;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Attrib.c 52 CONST CHAR16 *FileName;
126 FileName = ShellCommandLineGetRawValue(Package, ParamNumberCount);
128 if (FileName == NULL && ParamNumberCount == 1) {
129 FileName = (CHAR16*)AllFiles;
130 } else if (FileName == NULL) {
134 Status = ShellOpenFileMetaArg((CHAR16*)FileName, EFI_FILE_MODE_READ, &ListOfFiles);
154 FileNode->FileName
184 FileName = ShellCommandLineGetRawValue(Package, ParamNumberCount);
186 if (FileName == NULL) {
206 Status = ShellOpenFileMetaArg((CHAR16*)FileName, EFI_FILE_MODE_READ, &ListOfFiles);
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PciPlatform/
PciPlatform.h 48 EFI_GUID FileName;
  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
60 /// Source locations are of the form filename:line:column.
76 if (Val.FileName.empty()) {
78 << "source location must be of the form filename:line:column\n";
  /external/clang/lib/Frontend/
DependencyGraph.cpp 50 StringRef FileName, bool IsAngled,
70 StringRef FileName,
116 StringRef FileName = AllFiles[I]->getName();
117 if (FileName.startswith(SysRoot))
118 FileName = FileName.substr(SysRoot.size());
120 OS << DOT::EscapeString(FileName)
  /external/clang/test/CodeGen/
types.c 3 struct FileName {
4 struct FileName *next;
  /external/clang/unittests/Format/
SortImportsTestJS.cpp 24 StringRef FileName = "input.js";
29 applyAllReplacements(Code, sortIncludes(Style, Code, Ranges, FileName));
32 *Sorted, reformat(Style, *Sorted, Ranges, FileName));
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 30 std::string FileName;
36 : FileName("<invalid>"), FunctionName("<invalid>"), Line(0), Column(0) {}
40 FileName == RHS.FileName && FunctionName == RHS.FunctionName;
  /external/swiftshader/third_party/LLVM/include/llvm/DebugInfo/
DIContext.h 28 const char *FileName;
32 DILineInfo() : FileName("<invalid>"), Line(0), Column(0) {}
33 DILineInfo(const char *fileName, uint32_t line, uint32_t column)
34 : FileName(fileName), Line(line), Column(column) {}
36 const char *getFileName() const { return FileName; }
42 std::strcmp(FileName, RHS.FileName) == 0;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
60 /// Source locations are of the form filename:line:column.
76 if (Val.FileName.empty()) {
78 << "source location must be of the form filename:line:column\n";
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/
DIContext.h 33 std::string FileName;
42 DILineInfo() : FileName("<invalid>"), FunctionName("<invalid>") {}
46 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
53 return std::tie(FileName, FunctionName, Line, Column, StartLine,
55 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
60 /// Source locations are of the form filename:line:column.
76 if (Val.FileName.empty()) {
78 << "source location must be of the form filename:line:column\n";
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/
DIContext.h 33 std::string FileName;
42 DILineInfo() : FileName("<invalid>"), FunctionName("<invalid>") {}
46 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
53 return std::tie(FileName, FunctionName, Line, Column, StartLine,
55 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
60 /// Source locations are of the form filename:line:column.
76 if (Val.FileName.empty()) {
78 << "source location must be of the form filename:line:column\n";
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/
DIContext.h 33 std::string FileName;
42 DILineInfo() : FileName("<invalid>"), FunctionName("<invalid>") {}
46 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
53 return std::tie(FileName, FunctionName, Line, Column, StartLine,
55 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/
DIContext.h 33 std::string FileName;
42 DILineInfo() : FileName("<invalid>"), FunctionName("<invalid>") {}
46 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
53 return std::tie(FileName, FunctionName, Line, Column, StartLine,
55 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/
DIContext.h 33 std::string FileName;
42 DILineInfo() : FileName("<invalid>"), FunctionName("<invalid>") {}
46 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
53 return std::tie(FileName, FunctionName, Line, Column, StartLine,
55 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/
DIContext.h 33 std::string FileName;
42 DILineInfo() : FileName("<invalid>"), FunctionName("<invalid>") {}
46 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
53 return std::tie(FileName, FunctionName, Line, Column, StartLine,
55 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/
DIContext.h 33 std::string FileName;
42 DILineInfo() : FileName("<invalid>"), FunctionName("<invalid>") {}
46 FileName == RHS.FileName && FunctionName == RHS.FunctionName &&
53 return std::tie(FileName, FunctionName, Line, Column, StartLine,
55 std::tie(RHS.FileName, RHS.FunctionName, RHS.Line, RHS.Column,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
CommandLineSourceLoc.h 26 std::string FileName;
31 /// Construct a parsed source location from a string; the Filename is empty on
42 PSL.FileName = LineSplit.first;
46 if (PSL.FileName == "-")
47 PSL.FileName = "<stdin>";
60 /// Source locations are of the form filename:line:column.
76 if (Val.FileName.empty()) {
78 << "source location must be of the form filename:line:column\n";

Completed in 1376 milliseconds

1 2 3 4 5 6 7 8 91011>>