/external/llvm/include/llvm/ExecutionEngine/ |
ExecutionEngine.h | 90 uint64_t RemoveMapping(StringRef Name); 158 /// getMangledName - Get mangled name. 212 /// that defines Name. This is very slow operation and shouldn't be used for 214 virtual GlobalVariable *FindGlobalVariableNamed(const char *Name, bool AllowInternal = false); 225 /// If AbortOnFailure is false and no function with the given name is 230 virtual void *getPointerToNamedFunction(StringRef Name, 296 void addGlobalMapping(StringRef Name, uint64_t Addr); 311 uint64_t updateGlobalMapping(StringRef Name, uint64_t Addr); 356 virtual uint64_t getGlobalValueAddress(const std::string &Name) { 364 virtual uint64_t getFunctionAddress(const std::string &Name) { [all...] |
/external/llvm/lib/Bitcode/Reader/ |
BitstreamReader.cpp | 341 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name. 342 std::string Name; 344 Name += (char)Record[i]; 345 CurBlockInfo->Name = Name; 350 if (BitStream->isIgnoringBlockInfoNames()) break; // Ignore name. 351 std::string Name; 353 Name += (char)Record[i]; 355 Name));
|
/external/skia/dm/ |
DMSrcSink.h | 29 typedef ImplicitString Name; 65 virtual Name name() const = 0; 96 Name name() const override; 126 Name name() const override; 151 Name name() const override; 180 Name name() const override [all...] |
/external/v8/src/arm/ |
constants-arm.h | 446 #define DECLARE_STATIC_TYPED_ACCESSOR(return_type, Name) \ 447 static inline return_type Name(Instr instr) { \ 449 return reinterpret_cast<Instruction*>(temp)->Name(); \ 452 #define DECLARE_STATIC_ACCESSOR(Name) DECLARE_STATIC_TYPED_ACCESSOR(int, Name) 502 // - <Name>Field() will return the raw field, i.e. the field's bits at their 506 // - <Name>Value() will return the field value, shifted back to bit 0. 673 // Return the name of the register. 674 static const char* Name(int reg); 676 // Lookup the register number for the name provided 681 const char* name; member in struct:v8::internal::Registers::RegisterAlias [all...] |
/art/cmdline/ |
cmdline_types.h | 62 * Handle one of the JDWP name/value pairs. 72 * onthrow=<exception-name>: connect to debugger when exception thrown 120 Result ParseJdwpOption(const std::string& name, const std::string& value, 122 if (name == "transport") { 130 } else if (name == "server") { 138 } else if (name == "suspend") { 146 } else if (name == "address") { 166 } else if (name == "launch" || name == "onthrow" || name == "oncaught" || name == "timeout") [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
InstrProfiling.cpp | 67 /// Get the section name for the counter variables. 72 /// Get the section name for the name variables. 77 /// Get the section name for the profile data variables. 82 /// Get the section name for the coverage mapping data. 190 GlobalVariable *Name = Ind->getName(); 193 auto It = ProfileDataMap.find(Name); 197 ProfileDataMap[Name] = PD; 204 GlobalVariable *Name = Ind->getName(); 205 auto It = ProfileDataMap.find(Name); [all...] |
/external/v8/src/compiler/ |
js-operator.h | 224 // Defines the name for a dynamic variable lookup. This is used as a parameter 228 DynamicAccess(const Handle<String>& name, TypeofMode typeof_mode); 230 const Handle<String>& name() const { return name_; } function in class:v8::internal::compiler::final 252 NamedAccess(LanguageMode language_mode, Handle<Name> name, 254 : name_(name), feedback_(feedback), language_mode_(language_mode) {} 256 Handle<Name> name() const { return name_; } function in class:v8::internal::compiler::final 261 Handle<Name> const name_; 280 LoadGlobalParameters(const Handle<Name>& name, const VectorSlotPair& feedback 284 const Handle<Name>& name() const { return name_; } function in class:v8::internal::compiler::final 316 const Handle<Name>& name() const { return name_; } function in class:v8::internal::compiler::final [all...] |
access-info.cc | 227 Handle<Map> map, Handle<Name> name, AccessMode access_mode, 237 LookupSpecialFieldAccessor(map, name, access_info)) { 245 int const number = descriptors->SearchWithCache(*name, *map); 258 return LookupTransition(receiver_map, name, holder, access_info); 311 if (map->IsJSTypedArrayMap() && name->IsString() && 312 IsSpecialIndex(isolate()->unicode_cache(), String::cast(*name))) { 317 if (name->IsPrivate()) return false; 333 return LookupTransition(receiver_map, name, holder, access_info); 359 MapHandleList const& maps, Handle<Name> name, AccessMode access_mode [all...] |
/external/vulkan-validation-layers/demos/smoke/android/src/main/jni/ |
Smoke.push_constant.vert.h | 20 Name 4 "main" 21 Name 9 "world_light" 22 Name 12 "param_block" 27 Name 14 "params" 28 Name 34 "world_pos" 29 Name 38 "in_pos" 30 Name 49 "world_normal" 31 Name 67 "in_normal" 32 Name 70 "light_dir" 33 Name 75 "brightness [all...] |
Smoke.vert.h | 20 Name 4 "main" 21 Name 9 "world_light" 22 Name 12 "param_block" 27 Name 14 "params" 28 Name 34 "world_pos" 29 Name 38 "in_pos" 30 Name 49 "world_normal" 31 Name 67 "in_normal" 32 Name 70 "light_dir" 33 Name 75 "brightness [all...] |
/external/clang/include/clang/AST/ |
TemplateBase.h | 57 /// The template argument is a template name that was provided for a 60 /// The template argument is a pack expansion of a template name that was 103 void *Name; 156 /// parameters. However, the template name could be a dependent template 157 /// name that ends up being instantiated to a function template whose address 160 /// \param Name The template name. 161 TemplateArgument(TemplateName Name) { 163 TemplateArg.Name = Name.getAsVoidPointer() [all...] |
/external/llvm/unittests/ProfileData/ |
CoverageMappingTest.cpp | 53 StringRef Name; 59 OneFunctionCoverageReader(StringRef Name, uint64_t Hash, 62 : Name(Name), Hash(Hash), Filenames(Filenames), Regions(Regions), 70 Record.FunctionName = Name; 97 unsigned getFile(StringRef Name) { 98 auto R = Files.find(Name); 101 Files[Name] = NextFile; 290 Names.push_back(Func.Name);
|
/external/mesa3d/src/glsl/ |
link_uniforms.cpp | 65 /* Only strdup the name if we actually will need to modify it. */ 67 char *name = ralloc_strdup(NULL, var->name); local 68 recursion(var->type, &name, strlen(name)); 69 ralloc_free(name); 71 this->visit_field(t, var->name); 76 uniform_field_visitor::recursion(const glsl_type *t, char **name, 87 const char *field = t->fields.structure[i].name; 90 /* Append '.field' to the current uniform name. * [all...] |
/external/webrtc/webrtc/libjingle/xmllite/ |
xmlelement.cc | 57 XmlElement::XmlElement(const QName& name) : 58 name_(name), 105 XmlElement::XmlElement(const QName& name, bool useDefaultNs) : 106 name_(name), 107 first_attr_(useDefaultNs ? new XmlAttr(QN_XMLNS, name.Namespace()) : NULL), 151 return element->Name(); 158 const std::string XmlElement::Attr(const StaticQName& name) const { 161 if (attr->name_ == name) 167 const std::string XmlElement::Attr(const QName& name) const { 170 if (attr->name_ == name) [all...] |
xmlelement_unittest.cc | 24 std::ostream& operator<<(std::ostream& os, const QName& name) { 25 os << name.Namespace() << ":" << name.LocalPart(); 81 EXPECT_EQ(QName("", "a"), patt->Name()); 85 EXPECT_EQ(QName("", "b"), patt->Name()); 89 EXPECT_EQ(QName("", "c"), patt->Name()); 167 EXPECT_EQ(QName("", "a"), patt->Name()); 171 EXPECT_EQ(QName("", "b"), patt->Name());
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
ProgramStateTrait.h | 36 /// Declares a program state trait for type \p Type called \p Name, and 40 #define REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, Type) \ 42 class Name {}; \ 43 typedef Type Name ## Ty; \ 48 struct ProgramStateTrait<Name> \ 49 : public ProgramStatePartialTrait<Name ## Ty> { \
|
/external/clang/lib/CodeGen/ |
CGLoopInfo.cpp | 70 std::string Name; 72 Name = "llvm.loop.unroll.enable"; 74 Name = "llvm.loop.unroll.full"; 76 Name = "llvm.loop.unroll.disable"; 77 Metadata *Vals[] = {MDString::get(Ctx, Name)};
|
/external/clang/lib/Driver/ |
Types.cpp | 20 const char *Name; 27 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, FLAGS) \ 28 { NAME, FLAGS, TEMP_SUFFIX, TY_##PP_TYPE, }, 40 return getInfo(Id).Name; 210 types::ID types::lookupTypeForTypeSpecifier(const char *Name) { 214 strcmp(Name, getInfo(Id).Name) == 0)
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 144 std::string Name; 147 VariableExprAST(const std::string &Name) : Name(Name) {} 148 const std::string &getName() const { return Name; } 226 /// which captures its name, and its argument names (thus implicitly the number 229 std::string Name; 235 PrototypeAST(const std::string &Name, std::vector<std::string> Args, 237 : Name(Name), Args(std::move(Args)), IsOperator(IsOperator) [all...] |
/external/llvm/test/MC/ARM/ |
eh-directive-multiple-offsets.s | 29 @ CHECK: Name: .ARM.extab.TEST1 58 @ CHECK: Name: .ARM.extab.TEST2 91 @ CHECK: Name: .ARM.extab.TEST3 122 @ CHECK: Name: .ARM.extab.TEST4 164 @ CHECK: Name: .ARM.extab.TEST5
|
eh-directive-pad.s | 39 @ CHECK: Name: .ARM.extab.TEST1 81 @ CHECK: Name: .ARM.extab.TEST2 122 @ CHECK: Name: .ARM.extab.TEST3 165 @ CHECK: Name: .ARM.extab.TEST4 221 @ CHECK: Name: .ARM.extab.TEST5
|
/external/llvm/test/MC/MachO/ARM/ |
darwin-Thumb-reloc.s | 43 @ CHECK: Name: __text (5F 5F 74 65 78 74 00 00 00 00 00 00 00 00 00 00) 64 @ CHECK: Name: __cstring (5F 5F 63 73 74 72 69 6E 67 00 00 00 00 00 00 00) 91 @ CHECK: Name: _main (1) 101 @ CHECK: Name: _printf (7) 118 @ CHECK: Name:
|
/external/pdfium/third_party/lcms2-2.6/src/ |
cmsnamed.c | 561 const char* Name, 578 if (Name != NULL) { 580 strncpy(NamedColorList ->List[NamedColorList ->nColors].Name, Name, cmsMAX_PATH-1); 581 NamedColorList ->List[NamedColorList ->nColors].Name[cmsMAX_PATH-1] = 0; 585 NamedColorList ->List[NamedColorList ->nColors].Name[0] = 0; 601 char* Name, 611 if (Name) strcpy(Name, NamedColorList->List[nColor].Name); [all...] |
/external/v8/src/ppc/ |
constants-ppc.h | 496 #define DECLARE_STATIC_TYPED_ACCESSOR(return_type, Name) \ 497 static inline return_type Name(Instr instr) { \ 499 return reinterpret_cast<Instruction*>(temp)->Name(); \ 502 #define DECLARE_STATIC_ACCESSOR(Name) DECLARE_STATIC_TYPED_ACCESSOR(int, Name) 580 // Lookup the register number for the name provided. 581 static int Number(const char* name); 590 // Lookup the register number for the name provided. 591 static int Number(const char* name);
|
/libcore/luni/src/test/java/libcore/java/util/jar/ |
OldManifestTest.java | 46 private void assertAttribute(Attributes attr, String name, String value) { 47 assertEquals("Incorrect " + name, value, attr.getValue(name)); 52 assertAttribute(main, "Bundle-Name", "ClientSupport"); 150 assertEquals("image/pr0n", doRoundTrip(Attributes.Name.MANIFEST_VERSION)); 157 m1.getMainAttributes().put(Attributes.Name.CONTENT_TYPE, "image/pr0n"); 167 return (String) m2.getMainAttributes().get(Attributes.Name.CONTENT_TYPE); 173 m1.getMainAttributes().put(Attributes.Name.MANIFEST_VERSION, "1.0"); 174 m1.getMainAttributes().put(Attributes.Name.SIGNATURE_VERSION, "2.0");
|