HomeSort by relevance Sort by last modified time
    Searched refs:BaseName (Results 1 - 25 of 77) 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")
  /external/libchrome/base/files/
file_enumerator.cc 15 FilePath::StringType basename = path.BaseName().value(); local
16 return basename == FILE_PATH_LITERAL(".") ||
17 (basename == FILE_PATH_LITERAL("..") &&
  /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/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))) {
  /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/libbrillo/brillo/
osrelease_reader.cc 50 store_.SetString(path.BaseName().value(), content);
  /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/BaseTools/Source/Python/GenFds/
FfsInfStatement.py 140 self.FinalTargetSuffixMap['.depex'] = [os.path.join(self.EfiOutputPath, self.BaseName) + '.depex']
187 # Set Ffs BaseName, MdouleGuid, ModuleType, Version, OutputPath
189 self.BaseName = Inf.BaseName
204 self.BaseName = Inf.BaseName
310 GenFdsGlobalVariable.VerboseLogger("BaseName : %s" % self.BaseName)
321 self.ModuleGuid + self.BaseName)
352 Basename = os.path.basename(EfiFile)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
StringDB.h 217 INT8 *BaseName,
233 INT8 *BaseName
  /external/libmojo/mojo/edk/test/
test_support_impl.cc 73 names.push_back(name.BaseName().AsUTF8Unsafe());
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
VpdInfoFile.py 233 FileName = os.path.basename(VpdFileName)
234 BaseName, ext = os.path.splitext(FileName)
235 OutputMapFileName = os.path.join(OutputDir, "%s.map" % BaseName)
236 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/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/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/skia/bench/
SkLinearBitmapPipelineBench.cpp 77 fName.appendf("%s", BaseName().c_str());
103 virtual SkString BaseName() = 0;
127 SkString BaseName() override {
176 SkString BaseName() override {
  /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);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/
GenFfsFile.c     [all...]
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 46 std::string baseName(Record &R) {
76 std::string BaseName = macroName(Base->getName());
93 << BaseName << "(Type, Base)\n";
98 << R->getName() << ", " << baseName(*Base) << "))\n";
101 << baseName(*Base) << ")\n";
  /system/update_engine/payload_consumer/
mtd_file_descriptor.cc 51 base::FilePath ubi_name(device_node.BaseName());
170 base::FilePath ubi_name(device_node.BaseName());

Completed in 1215 milliseconds

1 2 3 4