Searched refs:Name (Results 151 - 175 of 1911) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/libjingle/xmllite/
H A Dxmlprinter.cc58 if (attr->Name() == QN_XMLNS) {
60 } else if (attr->Name().Namespace() == NS_XMLNS) {
61 ns_stack_->AddXmlns(attr->Name().LocalPart(),
69 prefix = ns_stack_->AddNewPrefix(element->Name().Namespace(), false);
72 new_ns.push_back(element->Name().Namespace());
76 prefix = ns_stack_->AddNewPrefix(attr->Name().Namespace(), true);
79 new_ns.push_back(attr->Name().Namespace());
84 *pout_ << '<' << ns_stack_->FormatQName(element->Name(), false);
88 *pout_ << ' ' << ns_stack_->FormatQName(attr->Name(), true) << "=\"";
123 *pout_ << "</" << ns_stack_->FormatQName(element->Name(), fals
[all...]
/external/clang/lib/AST/
H A DCommentLexer.cpp49 StringRef Lexer::resolveHTMLNamedCharacterReference(StringRef Name) const {
51 return llvm::StringSwitch<StringRef>(Name)
58 .Default(translateHTMLNamedCharacterReferenceToUTF8(Name));
61 StringRef Lexer::resolveHTMLDecimalCharacterReference(StringRef Name) const {
63 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
64 assert(isHTMLDecimalCharacterReferenceCharacter(Name[i]));
66 CodePoint += Name[i] - '0';
71 StringRef Lexer::resolveHTMLHexCharacterReference(StringRef Name) const {
73 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
75 const char C = Name[
[all...]
/external/llvm/include/llvm/IR/
H A DInstrTypes.h143 const Twine &Name, Instruction *InsertBefore);
145 const Twine &Name, BasicBlock *InsertAtEnd);
162 const Twine &Name = Twine(),
170 const Twine &Name, BasicBlock *InsertAtEnd);
177 const Twine &Name = "") {\
178 return Create(Instruction::OPC, V1, V2, Name);\
183 const Twine &Name, BasicBlock *BB) {\
184 return Create(Instruction::OPC, V1, V2, Name, BB);\
189 const Twine &Name, Instruction *I) {\
190 return Create(Instruction::OPC, V1, V2, Name,
200 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
206 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
219 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
225 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
238 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
244 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
[all...]
H A DGlobalAlias.h37 const Twine &Name, Constant *Aliasee, Module *Parent);
48 LinkageTypes Linkage, const Twine &Name,
53 LinkageTypes Linkage, const Twine &Name,
58 LinkageTypes Linkage, const Twine &Name,
62 static GlobalAlias *create(LinkageTypes Linkage, const Twine &Name,
66 static GlobalAlias *create(const Twine &Name, GlobalValue *Aliasee);
H A DComdat.h27 // This is a Name X SelectionKind pair. The reason for having this be an
51 Comdat(SelectionKind SK, StringMapEntry<Comdat> *Name);
55 StringMapEntry<Comdat> *Name; member in class:llvm::Comdat
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptPromisePropertyBase.h27 enum Name { enum in class:blink::ScriptPromisePropertyBase
28 #define P(Name) Name,
45 ScriptPromisePropertyBase(ExecutionContext*, Name);
72 Name m_name;
/external/clang/include/clang/AST/
H A DCommentLexer.h116 void setUnknownCommandName(StringRef Name) { argument
118 TextPtr = Name.data();
119 IntVal = Name.size();
179 void setHTMLTagStartName(StringRef Name) { argument
181 TextPtr = Name.data();
182 IntVal = Name.size();
190 void setHTMLIdent(StringRef Name) { argument
192 TextPtr = Name.data();
193 IntVal = Name.size();
212 void setHTMLTagEndName(StringRef Name) { argument
[all...]
/external/llvm/lib/IR/
H A DInstructions.cpp302 CallInst::CallInst(Value *Func, const Twine &Name, argument
309 init(Func, Name);
312 CallInst::CallInst(Value *Func, const Twine &Name, argument
319 init(Func, Name);
375 const Twine &Name) {
430 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
437 Result = new BitCastInst(MCall, AllocPtrType, Name);
460 const Twine &Name) {
462 ArraySize, MallocF, Name);
476 Function *MallocF, const Twine &Name) {
371 createMalloc(Instruction *InsertBefore, BasicBlock *InsertAtEnd, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function *MallocF, const Twine &Name) argument
456 CreateMalloc(Instruction *InsertBefore, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function * MallocF, const Twine &Name) argument
473 CreateMalloc(BasicBlock *InsertAtEnd, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function *MallocF, const Twine &Name) argument
834 AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name, Instruction *InsertBefore) argument
843 AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name, BasicBlock *InsertAtEnd) argument
852 AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
861 AllocaInst(Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
870 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, const Twine &Name, Instruction *InsertBefore) argument
879 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, const Twine &Name, BasicBlock *InsertAtEnd) argument
934 LoadInst(Value *Ptr, const Twine &Name, Instruction *InsertBef) argument
944 LoadInst(Value *Ptr, const Twine &Name, BasicBlock *InsertAE) argument
954 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, Instruction *InsertBef) argument
965 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, BasicBlock *InsertAE) argument
976 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, Instruction *InsertBef) argument
987 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, BasicBlock *InsertAE) argument
998 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, AtomicOrdering Order, SynchronizationScope SynchScope, Instruction *InsertBef) argument
1011 LoadInst(Value *Ptr, const Twine &Name, bool isVolatile, unsigned Align, AtomicOrdering Order, SynchronizationScope SynchScope, BasicBlock *InsertAE) argument
1024 LoadInst(Value *Ptr, const char *Name, Instruction *InsertBef) argument
1034 LoadInst(Value *Ptr, const char *Name, BasicBlock *InsertAE) argument
1044 LoadInst(Value *Ptr, const char *Name, bool isVolatile, Instruction *InsertBef) argument
1055 LoadInst(Value *Ptr, const char *Name, bool isVolatile, BasicBlock *InsertAE) argument
1345 init(Value *Ptr, ArrayRef<Value *> IdxList, const Twine &Name) argument
1453 ExtractElementInst(Value *Val, Value *Index, const Twine &Name, Instruction *InsertBef) argument
1467 ExtractElementInst(Value *Val, Value *Index, const Twine &Name, BasicBlock *InsertAE) argument
1494 InsertElementInst(Value *Vec, Value *Elt, Value *Index, const Twine &Name, Instruction *InsertBef) argument
1508 InsertElementInst(Value *Vec, Value *Elt, Value *Index, const Twine &Name, BasicBlock *InsertAE) argument
1541 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask, const Twine &Name, Instruction *InsertBefore) argument
1558 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask, const Twine &Name, BasicBlock *InsertAtEnd) argument
1660 init(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const Twine &Name) argument
1692 init(ArrayRef<unsigned> Idxs, const Twine &Name) argument
1744 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
1757 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
1846 Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name, Instruction *InsertBefore) argument
1854 Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name, BasicBlock *InsertAtEnd) argument
1862 CreateNeg(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1870 CreateNeg(Value *Op, const Twine &Name, BasicBlock *InsertAtEnd) argument
1878 CreateNSWNeg(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1884 CreateNSWNeg(Value *Op, const Twine &Name, BasicBlock *InsertAtEnd) argument
1890 CreateNUWNeg(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1896 CreateNUWNeg(Value *Op, const Twine &Name, BasicBlock *InsertAtEnd) argument
1902 CreateFNeg(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1909 CreateFNeg(Value *Op, const Twine &Name, BasicBlock *InsertAtEnd) argument
1916 CreateNot(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1923 CreateNot(Value *Op, const Twine &Name, BasicBlock *InsertAtEnd) argument
2375 Create(Instruction::CastOps op, Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2397 Create(Instruction::CastOps op, Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2419 CreateZExtOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2427 CreateZExtOrBitCast(Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2435 CreateSExtOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2443 CreateSExtOrBitCast(Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2451 CreateTruncOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2459 CreateTruncOrBitCast(Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2467 CreatePointerCast(Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2489 CreatePointerCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2510 CreateIntegerCast(Value *C, Type *Ty, bool isSigned, const Twine &Name, Instruction *InsertBefore) argument
2524 CreateIntegerCast(Value *C, Type *Ty, bool isSigned, const Twine &Name, BasicBlock *InsertAtEnd) argument
2538 CreateFPCast(Value *C, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2551 CreateFPCast(Value *C, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd) argument
2897 TruncInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2903 TruncInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2909 ZExtInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2915 ZExtInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2920 SExtInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2926 SExtInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2932 FPTruncInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2938 FPTruncInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2944 FPExtInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2950 FPExtInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2956 UIToFPInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2962 UIToFPInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2968 SIToFPInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2974 SIToFPInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2980 FPToUIInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2986 FPToUIInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
2992 FPToSIInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
2998 FPToSIInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
3004 PtrToIntInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
3010 PtrToIntInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
3016 IntToPtrInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
3022 IntToPtrInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
3028 BitCastInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
3034 BitCastInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
3040 AddrSpaceCastInst( Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore ) argument
3046 AddrSpaceCastInst( Value *S, Type *Ty, const Twine &Name, BasicBlock *InsertAtEnd ) argument
3058 CmpInst(Type *ty, OtherOps op, unsigned short predicate, Value *LHS, Value *RHS, const Twine &Name, Instruction *InsertBefore) argument
3071 CmpInst(Type *ty, OtherOps op, unsigned short predicate, Value *LHS, Value *RHS, const Twine &Name, BasicBlock *InsertAtEnd) argument
3085 Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2, const Twine &Name, Instruction *InsertBefore) argument
3106 Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2, const Twine &Name, BasicBlock *InsertAtEnd) argument
[all...]
/external/llvm/lib/Object/
H A DArchive.cpp30 if (Name[0] == '/' || Name[0] == '#')
35 llvm::StringRef(Name, sizeof(Name)).find(EndCond);
37 end = sizeof(Name);
38 assert(end <= sizeof(Name) && end > 0);
40 return llvm::StringRef(Name, end);
94 StringRef Name = Header->getName(); local
95 if (Name.startswith("#1/")) {
97 if (Name
215 StringRef Name = i->getRawName(); local
[all...]
/external/chromium_org/media/video/capture/
H A Dvideo_capture_device.h39 class MEDIA_EXPORT Name { class in class:media::VideoCaptureDevice
41 Name();
42 Name(const std::string& name, const std::string& id);
68 Name(const std::string& name,
73 Name(const std::string& name,
78 ~Name();
98 bool operator==(const Name& other) const {
101 bool operator<(const Name& other) const {
165 // Manages a list of Name entries.
166 typedef std::list<Name> Name
[all...]
/external/chromium_org/v8/src/ic/
H A Dstub-cache.h36 Name* key;
43 Code* Set(Name* name, Map* map, Code* code);
44 Code* Get(Name* name, Map* map, Code::Flags flags);
48 void CollectMatchingMaps(SmallMapList* types, Handle<Name> name,
90 // Setting the entry size such that the index is shifted by Name::kHashShift
93 static const int kCacheIndexShift = Name::kHashShift;
108 static int PrimaryOffset(Name* name, Code::Flags flags, Map* map) {
109 STATIC_ASSERT(kCacheIndexShift == Name::kHashShift);
130 static int SecondaryOffset(Name* name, Code::Flags flags, int seed) {
144 // ends in Name
[all...]
/external/smack/src/org/xbill/DNS/
H A DSOARecord.java17 private Name host, admin;
40 SOARecord(Name name, int dclass, long ttl, Name host, Name admin,
55 host = new Name(in);
56 admin = new Name(in);
65 rdataFromString(Tokenizer st, Name origin) throws IOException {
110 public Name
116 public Name
H A DA6Record.java20 private Name prefix;
36 A6Record(Name name, int dclass, long ttl, int prefixBits,
37 InetAddress suffix, Name prefix)
59 prefix = new Name(in);
63 rdataFromString(Tokenizer st, Name origin) throws IOException {
109 public Name
/external/chromium_org/v8/src/compiler/
H A Dsimplified-operator.cc133 #define PURE(Name, properties, input_count) \
134 struct Name##Operator FINAL : public SimpleOperator { \
135 Name##Operator() \
136 : SimpleOperator(IrOpcode::k##Name, Operator::kPure | properties, \
137 input_count, 1, #Name) {} \
139 Name##Operator k##Name;
153 #define PURE(Name, properties, input_count) \
154 const Operator* SimplifiedOperatorBuilder::Name() { return &impl_.k##Name; }
[all...]
/external/compiler-rt/make/platform/
H A Ddarwin_fat.mk22 # Arch.<Config Name> - Set the target architecture on a per-config basis.
32 # <Option Name> := ... option value ...
36 # <Option Name>.<Config Name> := ...
37 # <Option Name>.<Arch Name> := ...
38 # <Option Name>.<Config Name>.<Arch Name> := ...
/external/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.cpp54 SmallString<256> Name; local
55 raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "JTI"
65 return Ctx.GetOrCreateSymbol(Name.str());
71 SmallString<256> Name; local
72 raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "CPI"
82 return Ctx.GetOrCreateSymbol(Name.str());
/external/llvm/test/MC/ARM/
H A Deh-directive-personality.s24 @ CHECK: Name: .TEST1
30 @ CHECK: Name: .ARM.extab.TEST1
39 @ CHECK: Name: .ARM.exidx.TEST1
66 @ CHECK: Name: .TEST2
72 @ CHECK: Name: .ARM.extab.TEST2
81 @ CHECK: Name: .ARM.exidx.TEST2
/external/llvm/lib/Support/
H A DTimer.cpp105 Name.assign(N.begin(), N.end());
113 Name.assign(N.begin(), N.end());
208 Timer &get(StringRef Name, StringRef GroupName) { argument
216 Timer &T = GroupEntry.second[Name];
218 T.init(Name, *GroupEntry.first);
228 static Timer &getNamedRegionTimer(StringRef Name) { argument
231 Timer &T = (*NamedTimers)[Name];
233 T.init(Name);
237 NamedRegionTimer::NamedRegionTimer(StringRef Name, argument
239 : TimeRegion(!Enabled ? nullptr : &getNamedRegionTimer(Name)) {}
241 NamedRegionTimer(StringRef Name, StringRef GroupName, bool Enabled) argument
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs7/
H A DSignerInfoTest.java29 import org.apache.harmony.security.x501.Name;
36 Object[] issuerAndSerialNumber = new Object[] { new Name("CN=test"),
/external/chromium_org/media/video/capture/android/
H A Dvideo_capture_device_factory_android.h37 const VideoCaptureDevice::Name& device_name) OVERRIDE;
40 const VideoCaptureDevice::Name& device,
/external/chromium_org/media/video/capture/mac/
H A Dvideo_capture_device_factory_mac.h25 const VideoCaptureDevice::Name& device_name) OVERRIDE;
30 const VideoCaptureDevice::Name& device,
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DNavigatorUserMediaError.h36 enum Name { enum in class:blink::FINAL
41 static NavigatorUserMediaError* create(Name, const String& message, const String& constraintName);
/external/clang/lib/Frontend/
H A DLangStandards.cpp31 const LangStandard *LangStandard::getLangStandardForName(StringRef Name) { argument
32 Kind K = llvm::StringSwitch<Kind>(Name)
/external/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h65 void *getSymbolAddress(StringRef Name);
69 uint64_t getSymbolLoadAddress(StringRef Name);
/external/llvm/include/llvm/MC/
H A DMCLinkerOptimizationHint.h52 static inline int MCLOHNameToId(StringRef Name) { argument
53 #define MCLOHCaseNameToId(Name) .Case(#Name, MCLOH_ ## Name)
54 return StringSwitch<int>(Name)
67 #define MCLOHCaseIdToName(Name) case MCLOH_ ## Name: return StringRef(#Name);

Completed in 670 milliseconds

1234567891011>>