HomeSort by relevance Sort by last modified time
    Searched refs:Name (Results 1051 - 1075 of 2465) sorted by null

<<41424344454647484950>>

  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/i386/
compressed-1a.d 6 #name: objcopy on compressed debug sections
91 The File Name Table \(offset 0x.*\):
92 Entry Dir Time Size Name
115 Offset Name
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/x86-64/
compressed-1a.d 6 #name: objcopy on compressed debug sections
91 The File Name Table \(offset 0x.*\):
92 Entry Dir Time Size Name
114 Offset Name
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 35 Name = R->getName();
44 : TheDef(nullptr), Name(N), Namespace(Nspace), Size(-1), Offset(-1),
270 // Add I->second as a name for the subreg SRI->second, assuming it is
271 // orphaned, and the name isn't already used for something else.
274 // We found a new name for the orphaned sub-register.
321 // Ensure that every sub-register has a unique name.
427 // name I->first.
570 std::string Name;
576 if (i) Name += '_';
577 Name += Reg->getName()
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 39 /// processing machinery. It is intentionally a short name to make qualified
84 /// \param Name the string name for the option to handle during parsing
88 void AddLiteralOption(Option &O, const char *Name);
156 const char *const Name;
161 OptionCategory(const char *const Name,
163 : Name(Name), Description(Description) {
166 const char *getName() const { return Name; }
285 // Prints option name followed by message. Always returns true
    [all...]
  /external/v8/test/cctest/
test-decls.cc 12 // * Neither the name of Google Inc. nor the names of its
72 virtual v8::Local<Value> Get(Local<Name> key);
73 virtual v8::Local<Value> Set(Local<Name> key, Local<Value> value);
74 virtual v8::Local<Integer> Query(Local<Name> key);
90 static void HandleGet(Local<Name> key,
92 static void HandleSet(Local<Name> key, Local<Value> value,
94 static void HandleQuery(Local<Name> key,
182 Local<Name> key, const v8::PropertyCallbackInfo<v8::Value>& info) {
190 Local<Name> key, Local<Value> value,
199 Local<Name> key, const v8::PropertyCallbackInfo<v8::Integer>& info)
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 228 std::string Name = (*I)->ExplicitDef->getValueAsString("GroupName");
248 Twine("group '") + Name +
265 std::string Name = NextDiagGroup->getValueAsString("GroupName");
270 Twine("group '") + Name +
362 Diag->getValueAsDef("DefaultSeverity")->getValueAsString("Name");
543 << R.getValueAsDef("DefaultSeverity")->getValueAsString("Name");
590 static std::string getDiagCategoryEnum(llvm::StringRef name) {
591 if (name.empty())
594 for (llvm::StringRef::iterator I = name.begin(), E = name.end(); I != E; ++I
    [all...]
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 222 static errcode_t nt_open(const char *name, int flags, io_channel *channel);
388 IN PCSTR Name,
402 // Make Unicode name from inlut string
409 RtlInitAnsiString(&AnsiString, Name);
601 // Make NT name from any recognized name
617 // Do not try to parse NT name
707 // Media name
809 // Open device by name.
815 IN PCSTR Name,
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 414 StringRef Name;
415 if (getParser().parseIdentifier(Name))
419 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
452 StringRef Name;
453 if (getParser().parseIdentifier(Name))
456 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
463 return TokError("unable to emit indirect symbol attribute for: " + Name);
526 StringRef Name;
527 if (getParser().parseIdentifier(Name))
531 MCSymbol *Sym = getContext().getOrCreateSymbol(Name);
    [all...]
  /external/clang/include/clang/AST/
DeclTemplate.h 338 DeclarationName Name)
339 : NamedDecl(DK, DC, L, Name), TemplatedDecl(nullptr),
342 // Construct a template decl with the given name and parameters.
345 DeclarationName Name, TemplateParameterList *Params)
346 : NamedDecl(DK, DC, L, Name), TemplatedDecl(nullptr),
349 // Construct a template decl with name, parameters, and templated element.
351 DeclarationName Name, TemplateParameterList *Params,
353 : NamedDecl(DK, DC, L, Name), TemplatedDecl(Decl),
707 // Construct a template decl with name, parameters, and templated element.
709 SourceLocation L, DeclarationName Name,
    [all...]
  /art/runtime/base/
timing_logger.h 33 explicit CumulativeLogger(const std::string& name);
42 // Allow the name to be modified, particularly when the cumulative logger is a field within a
43 // parent class that is unable to determine the "name" of a sub-class.
44 void SetName(const std::string& name) REQUIRES(!lock_);
52 return a->Name() < b->Name();
84 Timing(uint64_t time, const char* name) : time_(time), name_(name) {
134 TimingLogger(const char* name, bool precise, bool verbose);
151 // Find the index of a timing by name
    [all...]
  /external/clang/include/clang/Serialization/
ModuleManager.h 46 /// \brief All loaded modules, indexed by name.
154 /// \brief Returns the module associated with the given name
155 ModuleFile *lookup(StringRef Name);
160 /// \brief Returns the in-memory (virtual file) buffer with the given name
161 std::unique_ptr<llvm::MemoryBuffer> lookupBuffer(StringRef Name);
183 /// \param FileName The file name of the module to be loaded.
212 /// \return A pointer to the module that corresponds to this file name,
261 /// \brief Attempt to resolve the given module file name to a file entry.
263 /// \param FileName The name of the module file.
  /external/clang/lib/Parse/
ParseExprCXX.cpp 30 // template name
79 // a template name.
145 /// \brief Parse global scope or nested-name-specifier if present.
147 /// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
151 /// '::'[opt] nested-name-specifier
154 /// nested-name-specifier:
155 /// type-name '::'
156 /// namespace-name '::'
157 /// nested-name-specifier identifier '::'
158 /// nested-name-specifier 'template'[opt] simple-template-id '::
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 123 // Get the name of the callee. If it's a builtin, strip off the prefix.
127 StringRef Name = II->getName();
128 if (Name.startswith("__builtin_"))
129 Name = Name.substr(10);
131 // Set the evaluation function by switching on the callee name.
132 FnCheck evalFunction = llvm::StringSwitch<FnCheck>(Name)
428 StringRef Name = FD->getIdentifier()->getName();
430 llvm::StringSwitch<std::pair<signed, signed> >(Name)
484 out << "Call to '" << Name << "' should have at least 6 'X's in the
    [all...]
MacOSKeychainAPIChecker.cpp 77 const char* Name;
88 /// Given the function name, returns the index of the allocator/deallocator
90 static unsigned getTrackedFunctionIndex(StringRef Name, bool IsAllocator);
183 unsigned MacOSKeychainAPIChecker::getTrackedFunctionIndex(StringRef Name,
187 if (FI.Name != Name)
269 << FunctionsToTrack[PDeallocIdx].Name << "' should be used.";
313 << FunctionsToTrack[DIdx].Name
528 << FunctionsToTrack[FI.DeallocatorIdx].Name << "'.";
ObjCMissingSuperCallChecker.cpp 85 /// to check. The name of the found superclass is stored in SuperclassName.
88 /// \param[out] SuperclassName On return, the found superclass name.
201 const char *Name = "Missing call to superclass";
209 BR.EmitBasicReport(MD, this, Name, categories::CoreFoundationObjectiveC,
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
RunWithAnnotator.java 27 import org.eclipse.jdt.core.dom.Name;
77 for (String name : TEST_FMWK_BASE_CLASSES) {
78 BASE_CLASS_2_RUNNER_CLASS.put(name, "android.icu.junit.IcuTestFmwkRunner");
80 for (String name : TEST_GROUP_BASE_CLASSES) {
81 BASE_CLASS_2_RUNNER_CLASS.put(name, "android.icu.junit.IcuTestGroupRunner");
107 String name = superClassType.toString(); local
108 String runnerClass = BASE_CLASS_2_RUNNER_CLASS.get(name);
151 private void appendImport(CompilationUnit cu, ASTRewrite rewriter, Name name) {
155 importDeclaration.setName(name);
    [all...]
  /external/libexif/
libexif.spec 0 Name: libexif
5 Source: http://prdownloads.sourceforge.net/libexif/%{name}-%{version}.tar.bz2
11 BuildRoot: %{_tmppath}/%{name}-%{version}-root
22 Requires: %{name} = %{version}
  /external/llvm/include/llvm/Analysis/
ObjCARCAnalysisUtils.h 15 /// by name, and hardwires knowledge of their semantics.
216 StringRef Name = GV->getName();
219 if (Name.startswith("\01l_objc_msgSend_fixup_"))
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugLine.h 28 FileNameEntry() : Name(nullptr), DirIdx(0), ModTime(0), Length(0) {}
30 const char *Name;
  /external/llvm/include/llvm/DebugInfo/PDB/
IPDBRawSymbol.h 37 findChildren(PDB_SymType Type, StringRef Name,
40 findChildrenByRVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags,
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 109 void print(raw_ostream &OS, const ValueMapType &Map, const char *Name) const;
111 const char *Name) const;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.h 55 // For a lookup example, we could hash a function name and take it modulo the
184 DwarfStringPoolEntryRef Name;
199 O << "Name: " << Str << "\n";
247 void AddName(DwarfStringPoolEntryRef Name, const DIE *Die, char Flags = 0);
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileWrapper.cpp 129 // Build a path from the current entry name
212 int OProfileWrapper::op_write_native_code(const char* Name,
220 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size);
  /external/llvm/lib/IR/
Pass.cpp 57 /// getPassName - Return a nice clean name for a pass. This usually
58 /// implemented in terms of the name that is registered by one of the
208 RegisterAGBase::RegisterAGBase(const char *Name, const void *InterfaceID,
210 : PassInfo(Name, InterfaceID) {
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFStreamer.cpp 157 void EmitMappingSymbol(StringRef Name) {
159 Name + "." + Twine(MappingSymbolCounter++)));

Completed in 1778 milliseconds

<<41424344454647484950>>