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

1 2 3 4 5 67 8 91011>>

  /external/v8/src/
transitions-inl.h 57 Name* TransitionArray::GetKey(int transition_number) {
59 return Name::cast(get(ToKeyIndex(transition_number)));
63 Name* TransitionArray::GetKey(Object* raw_transitions, int transition_number) {
73 void TransitionArray::SetKey(int transition_number, Name* key) {
102 int TransitionArray::SearchName(Name* name, int* out_insertion_index) {
103 return internal::Search<ALL_ENTRIES>(this, name, 0, out_insertion_index);
108 bool TransitionArray::IsSpecialTransition(Name* name) {
109 if (!name->IsSymbol()) return false
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_sys_exc.py 12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
26 call = Call(Name(u"exc_info"), prefix=sys_attr.prefix)
27 attr = Attr(Name(u"sys"), call)
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
47 Attr(Name(u"atexit"), Name(u"register"))
62 names.append_child(Name(u"atexit", u" "))
68 [Name(u"import"), Name(u"atexit", u" ")]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_sys_exc.py 12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
26 call = Call(Name(u"exc_info"), prefix=sys_attr.prefix)
27 attr = Attr(Name(u"sys"), call)
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
47 Attr(Name(u"atexit"), Name(u"register"))
62 names.append_child(Name(u"atexit", u" "))
68 [Name(u"import"), Name(u"atexit", u" ")]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_sys_exc.py 12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
26 call = Call(Name(u"exc_info"), prefix=sys_attr.prefix)
27 attr = Attr(Name(u"sys"), call)
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
47 Attr(Name(u"atexit"), Name(u"register"))
62 names.append_child(Name(u"atexit", u" "))
68 [Name(u"import"), Name(u"atexit", u" ")]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_sys_exc.py 12 from ..fixer_util import Attr, Call, Name, Number, Subscript, Node, syms
26 call = Call(Name(u"exc_info"), prefix=sys_attr.prefix)
27 attr = Attr(Name(u"sys"), call)
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
47 Attr(Name(u"atexit"), Name(u"register"))
62 names.append_child(Name(u"atexit", u" "))
68 [Name(u"import"), Name(u"atexit", u" ")]
  /external/llvm/lib/MC/
MCContext.cpp 110 MCSymbol *MCContext::getOrCreateSymbol(const Twine &Name) {
112 StringRef NameRef = Name.toStringRef(NameSV);
128 StringRef Name = Section.getSectionName();
130 MCSymbol *&OldSym = Symbols[Name];
136 auto NameIter = UsedNames.insert(std::make_pair(Name, true)).first;
161 MCSymbol *MCContext::createSymbolImpl(const StringMapEntry<bool> *Name,
166 return new (Name, *this) MCSymbolCOFF(Name, IsTemporary);
168 return new (Name, *this) MCSymbolELF(Name, IsTemporary)
    [all...]
MCSectionELF.cpp 23 // should be printed before the section name.
24 bool MCSectionELF::ShouldOmitSectionDirective(StringRef Name,
30 return MAI.shouldOmitSectionDirective(Name);
33 static void printName(raw_ostream &OS, StringRef Name) {
34 if (Name.find_first_not_of("0123456789_."
36 "ABCDEFGHIJKLMNOPQRSTUVWXYZ") == Name.npos) {
37 OS << Name;
41 for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) {
  /external/libxml2/python/tests/
readernext.py 25 if reader.Name() != "a" or reader.IsEmptyElement() != 0 or \
33 if reader.Name() != "b" or reader.IsEmptyElement() != 0 or \
41 if reader.Name() != "c" or reader.NodeType() != 1 or \
49 if reader.Name() != "b" or reader.NodeType() != 15:
56 if reader.Name() != "d" or reader.IsEmptyElement() != 0 or \
64 if reader.Name() != "a" or reader.IsEmptyElement() != 0 or \
  /external/llvm/include/llvm/IR/
GlobalAlias.h 36 const Twine &Name, Constant *Aliasee, Module *Parent);
47 LinkageTypes Linkage, const Twine &Name,
52 LinkageTypes Linkage, const Twine &Name,
57 LinkageTypes Linkage, const Twine &Name,
61 static GlobalAlias *create(LinkageTypes Linkage, const Twine &Name,
65 static GlobalAlias *create(const Twine &Name, GlobalValue *Aliasee);
Comdat.h 27 // This is a Name X SelectionKind pair. The reason for having this be an
28 // independent object instead of just adding the name and the SelectionKind
30 // name but different SelectionKind. This structure makes that unrepresentable.
51 Comdat(SelectionKind SK, StringMapEntry<Comdat> *Name);
55 StringMapEntry<Comdat> *Name;
  /external/llvm/lib/Passes/
PassBuilder.cpp 47 static StringRef name() { return "NoOpModulePass"; } function in struct:__anon18070::NoOpModulePass
54 static StringRef name() { return "NoOpModuleAnalysis"; } function in struct:__anon18070::NoOpModuleAnalysis
67 static StringRef name() { return "NoOpCGSCCPass"; } function in struct:__anon18070::NoOpCGSCCPass
74 static StringRef name() { return "NoOpCGSCCAnalysis"; } function in struct:__anon18070::NoOpCGSCCAnalysis
85 static StringRef name() { return "NoOpFunctionPass"; } function in struct:__anon18070::NoOpFunctionPass
92 static StringRef name() { return "NoOpFunctionAnalysis"; } function in struct:__anon18070::NoOpFunctionAnalysis
103 #define MODULE_ANALYSIS(NAME, CREATE_PASS) \
109 #define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
115 #define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
121 static bool isModulePassName(StringRef Name) {
    [all...]
  /frameworks/data-binding/compilerCommon/
XMLLexer.g4 14 3. The name of the author may not be used to endorse or promote products
39 EntityRef : '&' Name ';' ;
47 SPECIAL_OPEN: '<?' Name -> more, pushMode(PROC_INSTR) ;
62 Name : NameStartChar NameChar* ;
  /external/clang/unittests/Tooling/
RewriterTestContext.h 55 FileID createInMemoryFile(StringRef Name, StringRef Content) {
58 InMemoryFileSystem->addFile(Name, 0, std::move(Source));
60 const FileEntry *Entry = Files.getFile(Name);
67 FileID createOnDiskFile(StringRef Name, StringRef Content) {
70 std::error_code EC = llvm::sys::fs::createTemporaryFile(Name, "", FD, Path);
81 TemporaryFiles.insert(std::make_pair(Name, Path.str())).first->second;
102 std::string getFileContentFromDisk(StringRef Name) {
103 std::string Path = TemporaryFiles.lookup(Name);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_flags.h 22 #define COMMON_FLAG(Type, Name, DefaultValue, Description) Type Name;
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 80 std::string Name;
99 /// Return the name of the GC strategy. This is the value of the collector
100 /// name string specified on functions which use this strategy.
101 const std::string &getName() const { return Name; }
117 /** @name Statepoint Specific Properties */
129 /** @name GCRoot Specific Properties
168 /// static GCRegistry::Add<CustomGC> X("custom-name",
  /external/llvm/include/llvm/ExecutionEngine/
ObjectMemoryBuffer.h 47 ObjectMemoryBuffer(SmallVectorImpl<char> &&SV, StringRef Name)
48 : SV(std::move(SV)), BufferName(Name) {
  /external/llvm/include/llvm/ExecutionEngine/Orc/
LogicalDylib.h 89 const std::string &Name,
92 if (auto StubSym = LMH->Resources.findSymbol(Name, ExportedSymbolsOnly))
96 if (auto Symbol = BaseLayer.findSymbolIn(BLH, Name, ExportedSymbolsOnly))
102 const std::string &Name) {
103 if (auto Symbol = findSymbolInLogicalModule(LMH, Name, false))
109 if (auto Symbol = findSymbolInLogicalModule(LMI, Name, false))
116 JITSymbol findSymbol(const std::string &Name, bool ExportedSymbolsOnly) {
119 if (auto Sym = findSymbolInLogicalModule(LMI, Name, ExportedSymbolsOnly))
  /external/llvm/include/llvm/MC/
MCSymbolELF.h 21 MCSymbolELF(const StringMapEntry<bool> *Name, bool isTemporary)
22 : MCSymbol(SymbolKindELF, Name, isTemporary) {}
  /external/llvm/lib/ExecutionEngine/MCJIT/
ObjectBuffer.h 33 ObjectMemoryBuffer(SmallVector<char, N> SV, StringRef Name)
34 : SV(SV), BufferName(Name) {
  /external/llvm/lib/Target/Mips/
Mips16HardFloatInfo.cpp 38 extern FuncSignature const *findFuncSignature(const char *name) {
41 while (PredefinedFuncs[i].Name) {
42 name_ = PredefinedFuncs[i].Name;
43 if (strcmp(name, name_) == 0)
  /external/llvm/tools/llvm-pdbdump/
VariableDumper.h 34 void dumpSymbolTypeAndName(const PDBSymbol &Type, StringRef Name);
35 bool tryDumpFunctionPointer(const PDBSymbol &Type, StringRef Name);

Completed in 1498 milliseconds

1 2 3 4 5 67 8 91011>>