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

<<31323334353637383940>>

  /frameworks/compile/slang/
slang_rs_export_func.cpp 52 llvm::StringRef Name = FD->getName();
55 slangAssert(!Name.empty() && "Function must have a name");
61 F = new RSExportFunc(Context, Name, FD);
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 122 cl::value_desc("cpu-name"),
126 llvm::ArchName("arch-name", cl::desc("Target arch to disassemble for, "
288 // Update the triple name and return the found target.
536 ErrorOr<StringRef> Name = Symbol.getName();
537 if (std::error_code EC = Name.getError())
539 fmt << *Name;
548 StringRef Name;
552 if ((ec = Section.getName(Name)))
554 fmt << Name;
866 // Create a mapping from virtual address to symbol name. This is used t
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 36 cl::desc("Specify the name of an IR file to load for function definitions"),
37 cl::value_desc("input IR file name"));
169 std::string Name;
171 VariableExprAST(const std::string &name) : Name(name) {}
172 const std::string &getName() const { return Name; }
241 std::string Name;
246 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
248 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 66 void writeSymbol(uint32_t name, uint8_t info, uint64_t value, uint64_t size,
82 StringRef Name;
94 return Name < RHS.Name;
107 /// @name Symbol Table Data
215 void WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags,
262 void SymbolTableWriter::writeSymbol(uint32_t name, uint8_t info, uint64_t value,
280 write(name); // st_name
287 write(name); // st_name
510 // create a R_PPC64_TOC relocation. However the relocation symbol name
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUOpenCLImageTypeLoweringPass.cpp 165 StringRef Name = F->getName();
166 if (Name.startswith(GetImageResourceIDFunc)) {
168 } else if (Name.startswith(GetImageSizeFunc)) {
170 } else if (Name.startswith(GetImageFormatFunc)) {
198 StringRef Name = F->getName();
199 if (Name == GetSamplerResourceIDFunc) {
  /external/llvm/tools/llvm-readobj/
Win64EHDumper.cpp 56 // Returns the name of the unwind code.
72 // Returns the name of a referenced register.
123 if (ErrorOr<StringRef> Name = Symbol.getName()) {
124 OS << *Name;
301 StringRef Name;
302 Section.getName(Name);
304 if (Name != ".pdata" && !Name.startswith(".pdata$"))
  /external/v8/test/unittests/compiler/
js-operator-unittest.cc 61 #define SHARED(Name, properties, value_input_count, frame_state_input_count, \
65 &JSOperatorBuilder::Name, IrOpcode::kJS##Name, properties, \
175 #define SHARED(Name, properties, value_input_count, frame_state_input_count, \
179 &JSOperatorBuilder::Name, IrOpcode::kJS##Name, properties, \
  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessBindable.java 39 import javax.lang.model.element.Name;
73 String name = getPropertyName(element); local
74 if (name != null) {
78 mProperties.addProperty(enclosing.getQualifiedName().toString(), name); local
143 Name name = element.getSimpleName(); local
144 if (name.length() >= 2) {
145 char firstChar = name.charAt(0);
146 char secondChar = name.charAt(1);
147 if (name.length() > 2 && firstChar == 'm' && secondChar == '_')
162 Name name = element.getSimpleName(); local
201 Name name = element.getSimpleName(); local
209 Name name = element.getSimpleName(); local
217 Name name = element.getSimpleName(); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForStructuredName.java 53 String name = values.getAsString(StructuredName.DISPLAY_NAME); local
55 mNameLookupBuilder.insertNameLookup(rawContactId, dataId, name,
80 String name = augmented.getAsString(StructuredName.DISPLAY_NAME); local
83 mNameLookupBuilder.insertNameLookup(rawContactId, dataId, name,
115 * Parses the supplied display name, but only if the incoming values do
116 * not already contain structured name parts. Also, if the display name
117 * is not provided, generate one by concatenating first name and last
118 * name.
127 NameSplitter.Name name = new NameSplitter.Name() local
136 NameSplitter.Name name = new NameSplitter.Name(); local
155 NameSplitter.Name name = new NameSplitter.Name(); local
183 String name = builder.getString(StructuredName.DISPLAY_NAME); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
TSTInfoTest.java 27 import org.apache.harmony.security.x501.Name;
51 GeneralName tsa = new GeneralName(new Name("CN=AnAuthority"));
  /external/blktrace/
btrace.spec 14 Name: btrace
21 Source0: %name-%version.tar.bz2
22 BuildRoot: %{_tmppath}/%{name}-%{version}-build
  /external/clang/include/clang/Basic/
Builtins.h 53 const char *Name, *Type, *Attributes, *HeaderName;
80 /// \brief Return the identifier name for the specified builtin,
83 return getRecord(ID).Name;
159 /// header, retrieve that header name.
  /external/clang/include/clang/Lex/
PPCallbacks.h 60 /// \param FilenameTok The file name token in \#include "FileName" directive
61 /// or macro expanded file name token from \#include MACRO(PARAMS) directive.
71 /// \param FileName The name of the file being included, as written in the
95 /// \param FileName The name of the file being included, as written in the
98 /// \param IsAngled Whether the file name was enclosed in angle brackets;
102 /// for the written file name.
173 virtual void PragmaDetectMismatch(SourceLocation Loc, StringRef Name,
223 const IdentifierInfo *Name,
259 /// \param MD The MacroDirective if the name was a macro, null otherwise.
297 /// \param MD The MacroDefinition if the name was a macro, null otherwise
    [all...]
  /external/clang/include/clang/Sema/
IdentifierResolver.h 1 //===- IdentifierResolver.h - Lexical Scope Name lookup ---------*- C++ -*-===//
34 /// implements efficient decl lookup based on a declaration name.
38 /// to a particular declaration name. IdDeclInfos are lazily
39 /// constructed and assigned to a declaration name the first time a
40 /// decl with that declaration name is shadowed in some scope.
65 /// iterator - Iterate over the decls of a specified declaration name.
141 /// begin - Returns an iterator for decls with the name 'Name'.
142 iterator begin(DeclarationName Name);
178 /// \param Name The name of the externally-produced declaration
    [all...]
  /external/clang/lib/AST/
ExternalASTSource.cpp 41 return ClangModule->Name;
102 DeclarationName Name) {
  /external/clang/lib/Serialization/
Module.cpp 55 dumpLocalRemap(StringRef Name,
61 llvm::errs() << " " << Name << ":\n";
  /external/clang/utils/TableGen/
ClangCommentCommandInfoEmitter.cpp 33 << "\"" << Tag.getValueAsString("Name") << "\", "
66 std::string Name = Tag.getValueAsString("Name");
69 Matches.emplace_back(std::move(Name), std::move(Return));
73 << " StringRef Name) {\n";
74 StringMatcher("Name", Matches, OS).Emit();
114 << "# define COMMENT_COMMAND(NAME)\n"
120 std::string MangledName = MangleName(Tag.getValueAsString("Name"));
  /external/compiler-rt/lib/lsan/
lsan_common.h 47 #define LSAN_FLAG(Type, Name, DefaultValue, Description) Type Name;
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 74 std::string Name;
78 DIGlobal() : Name("<invalid>"), Start(0), Size(0) {}
81 /// A DINameKind is passed to name search methods to specify a
82 /// preference regarding the type of name resolution the caller wants.
  /external/llvm/include/llvm/IR/
FunctionInfo.h 45 /// index, to disambiguate from other functions with the same name.
140 /// List of function info structures for a particular function name held
142 /// COMDAT functions of the same name.
145 /// Map from function name to corresponding function info structures.
161 /// Map from function name to list of function information instances
162 /// for functions of that name (may be duplicates in the COMDAT case, e.g.).
191 /// Add a function info for a function of the given name.
215 /// Convenience method for creating a promoted global name
216 /// for the given value name of a local, and its original module's ID.
217 static std::string getGlobalNameForLocal(StringRef Name, uint64_t ModId)
    [all...]
  /external/llvm/include/llvm/LTO/
LTOCodeGenerator.h 94 /// name is misleading). This function should be called before
111 /// file is returned to the caller via argument "name". Return true on
117 bool compile_to_file(const char **Name, bool DisableVerify,
156 bool compileOptimizedToFile(const char **Name);
  /external/llvm/lib/CodeGen/AsmPrinter/
DIEHash.h 144 StringRef Name);
150 void hashNestedType(const DIE &Die, StringRef Name);
DwarfAccelTable.cpp 33 void DwarfAccelTable::AddName(DwarfStringPoolEntryRef Name, const DIE *die,
38 DataArray &DIEs = Entries[Name.getString()];
39 assert(!DIEs.Name || DIEs.Name == Name);
40 DIEs.Name = Name;
219 Asm->emitDwarfStringOffset((*HI)->Data.Name);
271 O << "Name: " << EI->getKeyData() << "\n";
  /external/llvm/test/MC/ARM/
elf-movt.s 19 @ OBJ: Name: .text
40 @ OBJ: Name: .rel.text
  /external/llvm/test/MC/Mips/
directive-ent.s 23 # OBJ: Name: a
41 # OBJ: Name: b

Completed in 1645 milliseconds

<<31323334353637383940>>