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

<<21222324252627282930>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68k/
tls-ie-1.d 7 Tag Type Name/Value
20 Offset Info Type Sym.Value Sym. Name \+ Addend
tls-ld-1.d 7 Tag Type Name/Value
20 Offset +Info +Type +Sym.Value +Sym. Name \+ Addend
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
bspec1.d 9 +\[Nr\] Name +Type +Address +Offset
29 +Num: +Value +Size +Type +Bind +Vis +Ndx +Name
undef-3.d 8 +\[Nr\] Name +Type +Address +Offset
24 +Num: +Value +Size +Type +Bind +Vis +Ndx +Name
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 45 SmallString<128> Name;
54 Name += DL.getPrivateGlobalPrefix();
56 unsigned PrefixLen = Name.size();
60 Mangler::getNameWithPrefix(Name, MO.getSymbolName(), DL);
63 TM.getNameWithPrefix(Name, GV, *Mang);
66 unsigned OrigLen = Name.size() - PrefixLen;
68 Name += Suffix;
69 MCSymbol *Sym = Ctx.getOrCreateSymbol(Name);
70 StringRef OrigName = StringRef(Name).substr(PrefixLen, OrigLen);
72 // If the target flags on the operand changes the name of the symbol, do tha
    [all...]
  /frameworks/base/core/java/android/util/jar/
StrictJarManifest.java 123 * {@code name}.
125 * @param name
126 * the name of the entry to obtain {@code Attributes} from.
130 public Attributes getAttributes(String name) {
131 return getEntries().get(name);
166 * Writes this {@code StrictJarManifest}'s name/attributes pairs to the given {@code OutputStream}.
178 * Merges name/attribute pairs read from the input stream {@code is} into this manifest.
232 Chunk getChunk(String name) {
233 return chunks.get(name);
259 Attributes.Name versionName = Attributes.Name.MANIFEST_VERSION
269 Attributes.Name name = (Attributes.Name) entries.next(); local
283 Attributes.Name name = (Attributes.Name) entries.next(); local
    [all...]
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 48 // The name this program was invoked as.
136 // the name of the archive member to which the 'a', 'b' or 'i' modifier
141 // This variable holds the name of the archive file as given on the
173 // Get the archive file name from the command line
176 show_help("An archive name must be specified");
265 // the archive name.
302 static void doPrint(StringRef Name, const object::Archive::Child &C) {
304 outs() << "Printing " << Name << "\n";
324 static void doDisplayTable(StringRef Name, const object::Archive::Child &C) {
338 outs() << Name << "\n"
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
go.y 64 %type <node> interfacedcl keyval labelname name
160 "name list not allowed in interface type"
205 mkpackage($2.Name);
211 * but does not make the name "runtime" visible as a package.
247 my = Lookup(ipkg.Name);
252 pack.Name.Pkg = ipkg;
255 if strings.HasPrefix(my.Name, ".") {
259 if my.Name == "init" {
263 if my.Name == "_" {
268 redeclare(my, "as imported package name");
1223 name: label
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
go.y 61 %type <node> interfacedcl keyval labelname name
157 "name list not allowed in interface type"
202 mkpackage($2.Name);
208 * but does not make the name "runtime" visible as a package.
244 my = Lookup(ipkg.Name);
249 pack.Name.Pkg = ipkg;
252 if strings.HasPrefix(my.Name, ".") {
256 if my.Name == "init" {
260 if my.Name == "_" {
265 redeclare(my, "as imported package name");
1220 name: label
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
go.y 64 %type <node> interfacedcl keyval labelname name
160 "name list not allowed in interface type"
205 mkpackage($2.Name);
211 * but does not make the name "runtime" visible as a package.
247 my = Lookup(ipkg.Name);
252 pack.Name.Pkg = ipkg;
255 if strings.HasPrefix(my.Name, ".") {
259 if my.Name == "init" {
263 if my.Name == "_" {
268 redeclare(my, "as imported package name");
1223 name: label
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
go.y 61 %type <node> interfacedcl keyval labelname name
157 "name list not allowed in interface type"
202 mkpackage($2.Name);
208 * but does not make the name "runtime" visible as a package.
244 my = Lookup(ipkg.Name);
249 pack.Name.Pkg = ipkg;
252 if strings.HasPrefix(my.Name, ".") {
256 if my.Name == "init" {
260 if my.Name == "_" {
265 redeclare(my, "as imported package name");
1220 name: label
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 134 VariableExprAST(std::string Name) : Name(std::move(Name)) {}
137 std::string Name;
216 PrototypeAST(std::string Name, std::vector<std::string> Args,
218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator),
229 return Name[Name.size()-1];
232 std::string Name;
    [all...]
  /external/llvm/lib/Object/
ArchiveWriter.cpp 38 StringRef Name)
39 : IsNewMember(false), Name(Name), OldMember(OldMember) {}
42 : IsNewMember(true), Name(FileName), OldMember(nullptr, nullptr, nullptr) {}
44 StringRef NewArchiveIterator::getName() const { return Name; }
55 return Name;
62 if (auto EC = sys::fs::openFileForRead(Name, NewFD))
114 static void printGNUSmallMemberHeader(raw_fd_ostream &Out, StringRef Name,
118 printWithSpacePadding(Out, Twine(Name) + "/", 16);
122 static void printBSDMemberHeader(raw_fd_ostream &Out, StringRef Name,
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyld.cpp 171 // Get symbol name.
174 StringRef Name = *NameOrErr;
190 DEBUG(dbgs() << "\tType: " << SymType << " (absolute) Name: " << Name
194 GlobalSymbolTable[Name] =
212 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name
216 GlobalSymbolTable[Name] =
356 StringRef Name;
361 Check(Section.getName(Name));
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 268 std::string Name = F.getName();
269 std::string SectionName = ".mips16.call.fp." + Name;
270 std::string StubName = "__call_stub_fp_" + Name;
293 AsmText += "jal " + Name + "\n";
295 AsmText += "lui $$25, %hi(" + Name + ")\n";
296 AsmText += "addiu $$25, $$25, %lo(" + Name + ")\n";
411 const char *Name = Helper[RV];
427 Value *F = (M->getOrInsertFunction(Name, A, MyVoid, T, nullptr));
467 std::string Name = F->getName();
468 std::string SectionName = ".mips16.fn." + Name;
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Package.java 46 import java.util.jar.Attributes.Name;
107 * to be found by name or the set of all packages known to the current class
114 * Return the name of this package.
116 * @return The fully-qualified name of this package as defined in section 6.5.3 of
147 * Return the name of the organization, vendor,
178 * Returns the name of the organization,
264 * Find a package by name in the callers {@code ClassLoader} instance.
275 * @param name a package name, for example, java.lang.
276 * @return the package of the requested name. It may be null if no packag
329 String name = c.getName(); local
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
NameSplitterTest.java 23 import com.android.providers.contacts.NameSplitter.Name;
211 // Accompanied by a phonetic name in Hiragana, we can safely assume that the
212 // name is Japanese
227 // Accompanied by a phonetic name in Pinyin, we can safely assume that the
228 // name is Chinese
261 // One word is interpreted as given name only
264 // Two words are interpreted as family + give name
272 // Hanzi characters without spaces: lump them all in the given name
295 // Given-name-first flag is ignored for CJK locales
306 // Given-name-first flag is ignored for CJK locale
315 final Name name = new Name(); local
332 Name name = new Name(); local
344 Name name = new Name(); local
353 Name name = new Name(); local
366 Name name = new Name(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 18 * 3. The name of the author may not be used to endorse or promote products
61 return frame.GetMethod().Name;
66 return frame.GetMethod().DeclaringType.Name;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 18 * 3. The name of the author may not be used to endorse or promote products
67 return frame.GetMethod().Name;
73 return frame.GetMethod().DeclaringType.Name;
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
namedict.py 16 """DNS name dictionary"""
18 import dns.name namespace
22 """A dictionary whose keys are dns.name.Name objects.
33 if not isinstance(key, dns.name.Name):
34 raise ValueError('NameDict key must be a name')
40 def get_deepest_match(self, name):
41 """Find the deepest match to I{name} in the dictionary.
43 The deepest match is the longest name in the dictionary which i
    [all...]
  /external/clang/include/clang/Sema/
TypoCorrection.h 42 TypoCorrection(const DeclarationName &Name, NamedDecl *NameDecl,
45 : CorrectionName(Name), CorrectionNameSpec(NNS),
53 TypoCorrection(NamedDecl *Name, NestedNameSpecifier *NNS = nullptr,
55 : CorrectionName(Name->getDeclName()), CorrectionNameSpec(NNS),
58 if (Name)
59 CorrectionDecls.push_back(Name);
62 TypoCorrection(DeclarationName Name, NestedNameSpecifier *NNS = nullptr,
64 : CorrectionName(Name), CorrectionNameSpec(NNS),
267 /// name or keyword, true for types if WantTypeSpecifiers is true, and true
  /external/clang/lib/StaticAnalyzer/Checkers/
SelectorExtras.h 59 const char *Name) {
62 Sel = GetNullarySelector(Name, Ctx);
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 65 // Ensure that a failed name lookup into an external source only occurs once.
71 DeclarationName Name) override {
72 if (Name.getAsString() == "j")
  /external/compiler-rt/lib/profile/
InstrProfilingWriter.c 52 #define INSTR_PROF_RAW_HEADER(Type, Name, Init) Header.Name = Init;

Completed in 4630 milliseconds

<<21222324252627282930>>