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

<<51525354555657585960>>

  /external/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 184 /// Try to convert an instruction name to an opcode. Return true if the
185 /// instruction name is invalid.
198 /// Try to convert a register name to a register number. Return true if the
199 /// register name is invalid.
204 /// Check if the given identifier is a name of a register mask.
211 /// Check if the given identifier is a name of a subregister index.
213 /// Return 0 if the name isn't a subregister index class.
214 unsigned getSubRegIndex(StringRef Name);
223 /// Try to convert a name of target index to the corresponding target index.
225 /// Return true if the name isn't a name of a target index
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 347 // If this record is anonymous, it's no problem, just generate a new name
371 /// GetNewAnonymousName - Generate a unique anonymous name that can be used as
377 /// ParseObjectName - If an object name is specified, return it. Otherwise,
403 TokError("Record name is not typed!");
412 /// ParseClassID - Parse and resolve a reference to a class name. This returns
419 TokError("expected name for ClassID");
431 /// ParseMultiClassID - Parse and resolve a reference to a multiclass name.
438 TokError("expected name for MultiClassID");
714 const std::string &Name, SMLoc NameLoc,
717 if (const RecordVal *RV = CurRec->getValue(Name))
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 190 // Otherwise construct human readable name for debug info.
196 // Print a fully qualified name like MSVC would.
200 // Print the unqualified name with some template arguments. This is what
213 // Copy this name on the side and use its reference.
262 SmallString<128> Name;
264 llvm::raw_svector_ostream OS(Name);
269 // Copy this name on the side and use its reference.
270 return internString(Name);
350 // Should we be asking the SourceManager for the main file name, instead of
351 // accepting it as an argument? This just causes the main file name t
996 StringRef name = field->getName(); local
3240 StringRef name = variable->getName(); local
    [all...]
CodeGenModule.cpp 211 void CodeGenModule::addReplacement(StringRef Name, llvm::Constant *C) {
212 Replacements[Name] = C;
662 llvm::GlobalValue *CodeGenModule::GetGlobalValue(StringRef Name) {
663 return getModule().getNamedValue(Name);
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 46 // SName - "common name" in script (C99)
47 // RsType - element name in RenderScript
48 // RsShortType - short element name in RenderScript
50 // CName - reflected C name
51 // JavaName - reflected Java name
52 // JavaArrayElementName - reflected name in Java arrays
107 * the name instead of duplicating the entries.
155 const char *name; member in struct:slang::__anon28959::NameAndPrimitiveType
667 std::string CreateDummyName(const char *type, const std::string &name) {
670 if (!name.empty())
671 S << ":" << name; local
1292 llvm::StringRef name; local
    [all...]
slang_rs_context.h 109 bool processExportType(const llvm::StringRef &Name);
142 static bool isSyntheticName(const llvm::StringRef Name) { return Name.startswith(".rs."); }
  /build/tools/droiddoc/templates-ndk/
sampleindex.cs 31 <h1 itemprop="name"><?cs var:projectDir ?></h1>
39 <a href="<?cs var:toroot ?><?cs var:file.Href ?>"><?cs var:file.Name ?></a>
46 <?cs var:file.Name ?></a><?cs
51 <?cs if:file.Sub.0.Name ?>
  /build/tools/droiddoc/templates-sdk/
sampleindex.cs 31 <h1 itemprop="name"><?cs var:projectDir ?></h1>
39 <a href="<?cs var:toroot ?><?cs var:file.Href ?>"><?cs var:file.Name ?></a>
46 <?cs var:file.Name ?></a><?cs
51 <?cs if:file.Sub.0.Name ?>
  /build/tools/droiddoc/templates-sdk-dev/
sampleindex.cs 26 <h1 itemprop="name"><?cs var:projectDir ?></h1>
34 <a href="<?cs var:toroot ?><?cs var:file.Href ?>"><?cs var:file.Name ?></a>
41 <?cs var:file.Name ?></a><?cs
46 <?cs if:file.Sub.0.Name ?>
  /build/tools/droiddoc/templates-sdk-refonly/
sampleindex.cs 31 <h1 itemprop="name"><?cs var:projectDir ?></h1>
39 <a href="<?cs var:toroot ?><?cs var:file.Href ?>"><?cs var:file.Name ?></a>
46 <?cs var:file.Name ?></a><?cs
51 <?cs if:file.Sub.0.Name ?>
  /external/clang/include/clang/Serialization/
ASTWriter.h 253 const IdentifierInfo *Name;
262 /// @name FlushStmt Caches
654 serialization::MacroID getMacroRef(MacroInfo *MI, const IdentifierInfo *Name);
659 uint64_t getMacroDirectivesOffset(const IdentifierInfo *Name);
705 /// \brief Emit a declaration name.
706 void AddDeclarationName(DeclarationName Name, RecordDataImpl &Record);
708 DeclarationName Name, RecordDataImpl &Record);
715 /// \brief Emit a nested name specifier.
718 /// \brief Emit a nested name specifier with source-location information.
722 /// \brief Emit a template name
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 90 // FIXME: Capturing 'this' is a workaround for name lookup bugs in GCC 4.7.
111 // FIXME: Capturing 'this' is a workaround for name lookup bugs in GCC 4.7.
195 // the base class scope is not examined during unqualified name lookup
271 // A member name f in one sub-object B hides a member name f in
318 // ambiguity; in that case there is no unique instance of the name
377 DeclarationName Name) {
381 for (Path.Decls = BaseRecord->lookup(Name);
393 DeclarationName Name) {
398 for (Path.Decls = BaseRecord->lookup(Name);
    [all...]
  /external/clang/lib/Lex/
PTHLexer.cpp 582 IdentifierInfo* PTHManager::get(StringRef Name) {
584 assert(Name.empty() || Name.back() != '\0');
586 StringIdLookup->find(std::make_pair(Name.data(), Name.size()));
713 Data.Name = Path;
  /external/llvm/lib/LTO/
LTOCodeGenerator.cpp 200 bool LTOCodeGenerator::compileOptimizedToFile(const char **Name) {
233 *Name = NativeObjectPath.c_str();
239 const char *name; local
240 if (!compileOptimizedToFile(&name))
245 MemoryBuffer::getFile(name, -1, false);
258 bool LTOCodeGenerator::compile_to_file(const char **Name, bool DisableVerify,
266 return compileOptimizedToFile(Name);
389 if (const char *Name =
391 Libcalls.push_back(Name);
529 // ParseCommandLineOptions() expects argv[0] to be program name
    [all...]
  /external/llvm/lib/ProfileData/
SampleProfReader.cpp 37 /// \param FName Name of the function to print.
52 /// Parse one line of \p Input, and update function name in \p FName,
167 // name for the function, so the profiler will emit the function's
168 // unmangled name, which may contain characters like ':' and '>' in its
169 // name (member functions, templates, etc).
403 // Read the name table.
409 auto Name(readString());
410 if (std::error_code EC = Name.getError())
412 NameTable.push_back(*Name);
535 StringRef Name(Names[NameIdx])
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMEHABIPrinter.h 459 if (ErrorOr<StringRef> Name = FunctionAtAddress(EHT->sh_link, Address))
460 SW.printString("PersonalityRoutineName", *Name);
508 if (ErrorOr<StringRef> Name = FunctionAtAddress(IT->sh_link, Offset))
509 SW.printString("FunctionName", *Name);
527 if (ErrorOr<StringRef> Name = ELF->getSectionName(EHT))
528 SW.printString("ExceptionHandlingTable", *Name);
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_shader.c 485 shader->input[i].name = d->Semantic.Name;
493 shader->output[i].name = d->Semantic.Name;
504 switch(d->Semantic.Name) {
527 d->Semantic.Name);
533 (d->Semantic.Name == TGSI_SEMANTIC_POSITION) :
534 (d->Semantic.Name == TGSI_SEMANTIC_COLOR)) {
  /system/core/metricsd/
metrics_collector.cc 499 fields[i].name);
534 // Scan meminfo output and collect field values. Each field name has to
545 // Name matches. Parse value and save.
629 void MetricsCollector::SendSample(const string& name, int sample,
631 metrics_lib_->SendToUMA(name, sample, min, max, nbuckets);
638 SendSample(kernel_crashes_version_count_->Name(),
646 SendSample(version_cumulative_cpu_use_->Name(),
665 SendSample(version_cumulative_active_use_->Name(),
681 SendSample(use->Name(),
690 SendSample(interval->Name(),
    [all...]
  /external/autotest/client/tests/kvm/deps/
whql_submission_15.cs 219 Console.WriteLine("DeviceData name:");
220 dd.Name = Console.ReadLine();
221 if (dd.Name.Length == 0)
247 Console.WriteLine("Dimension name ({0}):", machineName);
255 machine.SetDimension("WDKSubmissionId", submission.Id.ToString() + "_" + submission.Name);
265 Console.WriteLine("Parameter name ({0}):", machineName);
273 string deviceName = d.GetAttribute("name")[0].ToString();
285 if (jobRegex.IsMatch(j.Name))
287 Console.WriteLine(" " + j.Name);
331 Console.WriteLine(" 'id': {0}, 'job': r'''{1}''',", r.Job.Id, r.Job.Name);
    [all...]
  /external/clang/lib/Frontend/
ChainedIncludesSource.cpp 49 DeclarationName Name) override;
249 DeclarationName Name) {
250 return getFinalReader().FindExternalVisibleDeclsByName(DC, Name);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOARM.h 164 StringRef Name;
165 Section.getName(Name);
167 if (Name == "__nl_symbol_ptr")
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 160 MCSymbol *Name = AP.getSymbol(GVar);
168 Name->print(O, AP.MAI);
171 Name->print(O, AP.MAI);
265 // Build the map between type name and ID based on module's type
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 297 StringRef Name = Module->getSymbolName(I);
298 if (!DSOSymbolsSet.count(Name))
303 KeptDSOSyms.push_back(Name);
  /external/llvm/unittests/IR/
PassManagerTest.cpp 32 /// \brief Returns the name of the analysis.
33 static StringRef name() { return "TestFunctionAnalysis"; } function in class:__anon18880::TestFunctionAnalysis
66 static StringRef name() { return "TestModuleAnalysis"; } function in class:__anon18880::TestModuleAnalysis
94 static StringRef name() { return "TestModulePass"; } function in struct:__anon18880::TestModulePass
102 static StringRef name() { return "TestPreservingModulePass"; } function in struct:__anon18880::TestPreservingModulePass
116 static StringRef name() { return "TestMinPreservingModulePass"; } function in struct:__anon18880::TestMinPreservingModulePass
150 static StringRef name() { return "TestFunctionPass"; } function in struct:__anon18880::TestFunctionPass
159 // with a specific name.
161 TestInvalidationFunctionPass(StringRef FunctionName) : Name(FunctionName) {}
164 return F.getName() == Name ? PreservedAnalyses::none(
168 static StringRef name() { return "TestInvalidationFunctionPass"; } function in struct:__anon18880::TestInvalidationFunctionPass
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_vs_draw.c 89 unsigned name, unsigned index, unsigned interp,
99 decl.Semantic.Name = name;
109 unsigned name, unsigned index, unsigned interp)
120 emit_output(ctx, name, index, interp,
128 unsigned name, unsigned index, unsigned interp)
139 emit_output(ctx, name, index, interp,
152 switch (decl->Semantic.Name) {
215 decl->Semantic.Name == TGSI_SEMANTIC_BCOLOR &&

Completed in 1216 milliseconds

<<51525354555657585960>>