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

<<21222324252627282930>>

  /external/v8/src/compiler/
js-operator.cc 219 DynamicAccess::DynamicAccess(const Handle<String>& name, TypeofMode typeof_mode)
220 : name_(name), typeof_mode_(typeof_mode) {}
241 return os << Brief(*access.name()) << ", " << access.typeof_mode();
252 return lhs.name().location() == rhs.name().location() &&
264 return base::hash_combine(p.name().location(), p.language_mode(),
270 return os << Brief(*p.name()) << ", " << p.language_mode();
311 return lhs.name().location() == rhs.name().location() &&
324 return base::hash_combine(p.name().location(), p.typeof_mode())
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 46 typedef SmallString<COFF::NameSize> name; typedef in namespace:__anon18063
70 name Name;
79 COFFSymbol(StringRef name);
105 std::string Name;
111 COFFSection(StringRef name);
150 COFFSymbol *createSymbol(StringRef Name);
152 COFFSection *createSection(StringRef Name);
155 object_t *createCOFFEntity(StringRef Name, list_t &List);
203 COFFSymbol::COFFSymbol(StringRef name)
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp 94 DITypeRef getBasicType(StringRef Name) {
95 return DIBasicType::get(Context, dwarf::DW_TAG_unspecified_type, Name)
116 Function *getFunction(StringRef Name) {
118 Name, FunctionType::get(Type::getVoidTy(Context), None, false)));
736 // Try to uniquify Temp. This should, despite the name in the API, give a
894 auto *N = DIEnumerator::get(Context, 7, "name");
897 EXPECT_EQ("name", N->getName());
898 EXPECT_EQ(N, DIEnumerator::get(Context, 7, "name"));
900 EXPECT_NE(N, DIEnumerator::get(Context, 8, "name"));
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/
benchmark_runner.py 68 format_string = ' %%-%ds %%s' % max(len(b.Name()) for b in benchmarks)
74 # Sort the benchmarks by benchmark name.
75 benchmarks = sorted(benchmarks, key=lambda b: b.Name())
78 print >> output_pipe, format_string % (b.Name(), b.Description())
87 print >> output_pipe, format_string % (b.Name(), b.Description())
114 command.Name(), command.Description())
128 parser = options.CreateParser('%%prog %s %s' % (cls.Name(), cls.usage))
144 parser.error('Must provide at most one benchmark name.')
173 parser = options.CreateParser('%%prog %s %s' % (cls.Name(), cls.usage))
209 all_benchmarks, input_benchmark_name, lambda x: x.Name())
    [all...]
  /external/clang/include/clang/Basic/
IdentifierTable.h 45 /// variable or function name). The preprocessor keeps this information in a
197 /// the name of a known builtin library function is used to declare that
411 virtual IdentifierInfo* get(StringRef Name) = 0;
461 IdentifierInfo &get(StringRef Name) {
462 auto &Entry = *HashTable.insert(std::make_pair(Name, nullptr)).first;
469 II = ExternalLookup->get(Name);
485 IdentifierInfo &get(StringRef Name, tok::TokenKind TokenCode) {
486 IdentifierInfo &II = get(Name);
492 /// \brief Gets an IdentifierInfo for the given name without consulting
498 IdentifierInfo &getOwn(StringRef Name) {
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 219 std::error_code visitCategoryRecord(unsigned ID, StringRef Name) override;
221 std::error_code visitDiagFlagRecord(unsigned ID, StringRef Name) override;
229 StringRef Name) override;
325 std::error_code DiagLoader::visitCategoryRecord(unsigned ID, StringRef Name) {
327 if (Name.size() > 65536)
329 TopDiags->Categories[ID] = TopDiags->copyString(Name);
333 std::error_code DiagLoader::visitDiagFlagRecord(unsigned ID, StringRef Name) {
335 if (Name.size() > 65536)
337 TopDiags->WarningFlags[ID] = TopDiags->copyString(Name);
343 StringRef Name) {
    [all...]
  /external/llvm/include/llvm/ProfileData/
InstrProf.h 40 /// Return the name of data section containing profile counter variables.
46 /// Return the name of data section containing names of instrumented
53 /// Return the name of the data section containing per-function control
60 /// Return the name profile runtime entry point to do value profiling
66 /// Return the name of the section containing function coverage mapping
72 /// Return the name prefix of variables containing instrumented function names.
75 /// Return the name prefix of variables containing per-function control data.
78 /// Return the name prefix of profile counter variables.
81 /// Return the name prefix of the COMDAT group for instrumentation variables
85 /// Return the name of a covarage mapping variable (internal linkage
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 42 Module *createEmptyModule(StringRef Name = StringRef()) {
43 Module * M = new Module(Name, Context);
49 Function *startFunction(Module *M, StringRef Name) {
52 GlobalValue::ExternalLinkage, Name, M);
54 BasicBlock *BB = BasicBlock::Create(Context, Name, Result);
95 Function *insertAddFunction(Module *M, StringRef Name = "add") {
96 Function *Result = startFunction<int32_t(int32_t, int32_t)>(M, Name);
110 Function *insertExternalReferenceToFunction(Module *M, StringRef Name) {
113 GlobalValue::ExternalLinkage, Name, M);
118 Function *insertExternalReferenceToFunction(Module *M, StringRef Name,
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 1028 /// argument can have a name associated with it.
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
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/examples/Kaleidoscope/Orc/lazy_codegen/
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/DebugInfo/Symbolize/
Symbolize.cpp 108 Global.Name = DemangleName(Global.Name, Info);
185 StringRef Name;
186 Section.getName(Name);
187 Name = Name.substr(Name.find_first_not_of("._"));
188 if (Name == "gnu_debuglink") {
346 // Verify that substring after colon form a valid arch name.
421 std::string LLVMSymbolizer::DemangleName(const std::string &Name,
    [all...]
  /external/llvm/lib/IR/
GCOV.cpp 140 << " != " << CfgChecksum << " in (" << Name << ").\n";
144 if (!Buff.readString(Name))
175 errs() << "Unexpected block number: " << BlockNo << " (in " << Name
204 errs() << "Unexpected block number: " << BlockNo << " (in " << Name
217 // Read the source file name.
222 << " != " << F << " (in " << Name << ").\n";
259 << " != " << GCDAIdent << " (in " << Name << ").\n";
268 << " != " << GCDAChecksum << " (in " << Name << ").\n";
278 << " != " << CfgChecksum << " (in " << Name << ").\n";
286 if (Name != GCDAName)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 28 /// State = State->set<Name>(K, V);
29 /// const Value *V = State->get<Name>(K); // Returns NULL if not in the map.
30 /// State = State->remove<Name>(K);
31 /// NameTy Map = State->get<Name>();
36 #define REGISTER_MAP_WITH_PROGRAMSTATE(Name, Key, Value) \
37 REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, \
44 /// State = State->add<Name>(E);
45 /// State = State->remove<Name>(E);
46 /// bool Present = State->contains<Name>(E);
47 /// NameTy Set = State->get<Name>();
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 116 /// \brief A C++ type name. Really just a strong typedef for 'const char*'.
118 const char *Name;
120 TypeName(const char *Name) : Name(Name) {}
121 const char *getName() const { return Name; }
144 AK_TypeName,///< A C++ type name, possibly demangled before display.
223 #define UBSAN_CHECK(Name, SummaryKind, FSanitizeFlagName) Name,
  /external/llvm/include/llvm/IR/
GlobalValue.h 69 LinkageTypes Linkage, const Twine &Name, unsigned AddressSpace)
74 setName(Name);
306 /// usual symbol prefix before the symbol name is used then return linkage
307 /// name after skipping this special LLVM prefix.
308 static StringRef getRealLinkageName(StringRef Name) {
309 if (!Name.empty() && Name[0] == '\1')
310 return Name.substr(1);
311 return Name;
314 /// @name Materializatio
    [all...]
  /external/llvm/include/llvm/MC/
MCSymbol.h 32 /// MCSymbol - Instances of this class represent a symbol name in the MC file,
75 /// A named symbol will have a pointer to the name allocated in the bytes
140 /// \brief The name for a symbol.
142 /// system, the name is a pointer so isn't going to satisfy the 8 byte
149 MCSymbol(SymbolKind Kind, const StringMapEntry<bool> *Name, bool isTemporary)
155 FragmentAndHasName.setInt(!!Name);
156 if (Name)
157 getNameEntryPtr() = Name;
160 // Provide custom new/delete as we will only allocate space for a name
162 void *operator new(size_t s, const StringMapEntry<bool> *Name,
    [all...]
  /external/llvm/lib/Support/
GraphWriter.cpp 67 std::string llvm::createGraphFilename(const Twine &Name, int &FD) {
70 std::error_code EC = sys::fs::createTemporaryFile(Name, "dot", FD, Filename);
107 for (auto Name : parts) {
108 if (ErrorOr<std::string> P = sys::findProgramByName(Name)) {
112 Log << " Tried '" << Name << "'\n";
119 static const char *getProgramName(GraphProgram::Name program) {
136 GraphProgram::Name program) {
  /external/llvm/test/MC/ARM/
eh-directive-section-comdat.s 46 @ CHECK: Name: .group
67 @ CHECK-NEXT: Name: .TEST1
85 @ CHECK-NEXT: Name: .ARM.extab.TEST1
98 @ CHECK-NEXT: Name: .rel.ARM.extab.TEST1
106 @ CHECK-NEXT: Name: .ARM.exidx.TEST1
122 @ CHECK-NEXT: Name: .rel.ARM.exidx.TEST1
132 @ CHECK: Name: func1
  /external/llvm/tools/llvm-pdbdump/
VariableDumper.cpp 129 StringRef Name) {
142 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name;
145 if (!tryDumpFunctionPointer(Type, Name)) {
147 WithColor(Printer, PDB_ColorItem::Identifier).get() << " " << Name;
153 StringRef Name) {
155 // signature carries no name, so we have to handle this case separately.
164 std::string NameStr(Name.begin(), Name.end());
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 70 /// Name - If this operand was assigned a symbolic name, this is it,
72 std::string Name;
111 : Rec(R), Name(N), PrinterMethodName(PMN), EncoderMethodName(EMN),
161 /// non-empty name. If the instruction does not have an operand with the
162 /// specified name, abort.
163 unsigned getOperandNamed(StringRef Name) const;
166 /// given name. If so, return true and set OpIdx to the index of the
168 bool hasOperandNamed(StringRef Name, unsigned &OpIdx) const;
170 /// ParseOperandName - Parse an operand name like "$foo" or "$foo.bar"
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
UpdatePair.cpp 43 static const char *k_NotCensoredCollision_Message = "Internal file name collision (file on disk, file in archive):";
56 int res = CompareFileNames(ai1.Name, ai2.Name);
143 const UString *name = NULL; local
158 compareResult = CompareFileNames(dirNames[dirIndex2], ai->Name);
169 name = &dirNames[dirIndex2];
176 name = &ai->Name;
187 ThrowError(k_Duplicate_inArc_Message, ai->Name, arcItems[arcIndices[arcIndex + dupl]].Name);
    [all...]
  /external/v8/src/profiler/
cpu-profiler.h 93 Builtins::Name builtin_id;
223 virtual void CallbackEvent(Name* name, Address entry_point);
227 Code* code, Name* name);
230 CompilationInfo* info, Name* script_name);
233 CompilationInfo* info, Name* script_name,
242 virtual void GetterCallbackEvent(Name* name, Address entry_point);
244 virtual void SetterCallbackEvent(Name* name, Address entry_point)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_urllib.py 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
79 import name with a comma separated list of its
88 for name in MAPPING[import_mod.value][:-1]:
89 names.extend([Name(name[0], prefix=pref), Comma()])
90 names.append(Name(MAPPING[import_mod.value][-1][0], prefix=pref))
113 mod_member.replace(Name(new_name, prefix=pref))
141 def handle_name(name, prefix):
142 if name.type == syms.import_as_name:
143 kids = [Name(name.children[0].value, prefix=prefix)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_urllib.py 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
79 import name with a comma separated list of its
88 for name in MAPPING[import_mod.value][:-1]:
89 names.extend([Name(name[0], prefix=pref), Comma()])
90 names.append(Name(MAPPING[import_mod.value][-1][0], prefix=pref))
113 mod_member.replace(Name(new_name, prefix=pref))
141 def handle_name(name, prefix):
142 if name.type == syms.import_as_name:
143 kids = [Name(name.children[0].value, prefix=prefix)
    [all...]

Completed in 1118 milliseconds

<<21222324252627282930>>