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

1 2 3 4

  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/cal10n_dummy/
Months.java 27 import ch.qos.cal10n.BaseName;
31 @BaseName("months")
Production.java 29 import ch.qos.cal10n.BaseName;
31 @BaseName("production")
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
FWVolume.h 49 char *BaseName,
MultiThread.h 35 INT8 *BaseName;
74 INT8 *BaseName,
90 INT8 *BaseName,
FWVolume.c 67 char *BaseName; // only needed for duplicate basename check
68 char *Processor; // only needed for duplicate basename check
96 // name is GUID-BASENAME.DXE
285 char *BaseName,
382 if ((Ptr->BaseName != NULL) && (BaseName != NULL) && (_stricmp (BaseName, Ptr->BaseName) == 0)) {
384 Error (NULL, 0, 0, BaseName, "duplicate base name specified");
    [all...]
MultiThread.c 34 INT8 *BaseName,
47 BaseName - base name of the new module
67 NewBuildItem->BaseName = _strdup (BaseName);
127 INT8 *BaseName,
140 BaseName - dependency module base name
157 if ((_stricmp (TempBuildItem->BaseName, BaseName) == 0) &&
222 free (TempBuildItem->BaseName);
627 sprintf (LogFile, "%s\\%s_%s_%d.txt", mLogDir, CurrentBuildItem->BaseName,
    [all...]
  /external/libchrome/base/files/
file_enumerator.cc 14 FilePath::StringType basename = path.BaseName().value(); local
15 return basename == FILE_PATH_LITERAL(".") ||
16 (basename == FILE_PATH_LITERAL("..") &&
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 137 char* BaseName = 0;
145 BaseName = ExeName;
159 BaseName = ExeName + Idx + 1;
166 if (BaseName != 0 && (!strcmp("oprofiled", BaseName) ||
167 !strcmp("operf", BaseName))) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 138 char* BaseName = 0;
146 BaseName = ExeName;
160 BaseName = ExeName + Idx + 1;
167 if (BaseName != 0 && (!strcmp("oprofiled", BaseName) ||
168 !strcmp("operf", BaseName))) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StringDB.h 104 INT8 *BaseName,
113 INT8 *BaseName
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
StrGather.py 142 # @param BaseName: The basename of strings
146 def CreateHFileHeader(BaseName):
150 Str = WriteLine(Str, '#ifndef _' + BaseName.upper() + '_STRINGS_DEFINE_H_')
151 Str = WriteLine(Str, '#define _' + BaseName.upper() + '_STRINGS_DEFINE_H_')
158 # @param BaseName: The basename of strings
165 def CreateHFileContent(BaseName, UniObjectClass, IsCompatibleMode, UniGenCFlag):
199 Str = WriteLine(Str, 'extern unsigned char ' + BaseName + 'Strings[];')
206 # @param BaseName: The basename of strings
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Demangle/
PartialDemangleTest.cpp 16 const char *ContextName, *BaseName, *ReturnType, *Params;
77 EXPECT_STREQ(Buf, N.BaseName);
  /external/libbrillo/brillo/
osrelease_reader.cc 50 store_.SetString(path.BaseName().value(), content);
  /external/libbrillo/policy/
resilient_policy_util.cc 26 default_policy_path.BaseName().value();
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 107 StringRef BaseName = F->getName();
108 if (BaseName[0] == '\1')
109 return (void*)Dyld.getSymbolAddress(BaseName.substr(1));
111 + BaseName).str());
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StringDB.h 217 INT8 *BaseName,
233 INT8 *BaseName
  /external/libchrome/mojo/core/test/
test_support_impl.cc 71 names.push_back(name.BaseName().AsUTF8Unsafe());
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
VpdInfoFile.py 230 FileName = os.path.basename(VpdFileName)
231 BaseName, ext = os.path.splitext(FileName)
232 OutputMapFileName = os.path.join(OutputDir, "%s.map" % BaseName)
233 OutputBinFileName = os.path.join(OutputDir, "%s.bin" % BaseName)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
IniToXml.py 123 [], [['BaseName', DistMap['BaseName']]])
236 # @param BaseName: BaseName
238 def __ValidateDistHeaderBaseName(BaseName):
239 if not BaseName:
241 # if CheckLen and len(BaseName) < 2:
243 if not BaseName[0].isalnum() and BaseName[0] != '_':
245 for Char in BaseName[1:]:
    [all...]
  /device/linaro/bootloader/edk2/FatPkg/FatPei/
FatLiteAccess.c 458 CHAR16 BaseName[9];
498 EngFatToStr (8, DirEntry.FileName, BaseName);
503 CopyMem ((UINT8 *) Pos, (UINT8 *) BaseName, 2 * (StrLen (BaseName) + 1));
506 Pos += StrLen (BaseName);
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfDefineObject.py 186 self.BaseName = None
212 # @param BaseName: BaseName
214 def SetBaseName(self, BaseName, Comments):
218 if self.BaseName != None:
222 if not (BaseName == '' or BaseName == None):
223 if IsValidWord(BaseName) and not BaseName.startswith("_"):
224 self.BaseName = InfDefMember()
    [all...]
  /external/libbrillo/brillo/daemons/
daemon.cc 110 if (!base::CreateSymbolicLink(log_file.BaseName(), latest_log_symlink)) {
  /external/libchrome/base/process/
process_iterator_linux.cc 141 entry_.exe_file_ = GetProcessExecutablePath(pid).BaseName().value();
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 326 SSAUpdater &S, StringRef BaseName) : SSA(S) {
335 if (BaseName.empty())
336 BaseName = SomeVal->getName();
337 SSA.Initialize(SomeVal->getType(), BaseName);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SSAUpdater.cpp 361 SSAUpdater &S, StringRef BaseName) : SSA(S) {
370 if (BaseName.empty())
371 BaseName = SomeVal->getName();
372 SSA.Initialize(SomeVal->getType(), BaseName);

Completed in 686 milliseconds

1 2 3 4