Searched refs:Name (Results 1 - 25 of 561) sorted by relevance

1234567891011>>

/macosx-10.10/CPAN-56/Modules/Sub-Name-0.05/
H A DMakefile1 NAME = Sub-Name
/macosx-10.10/llvmCore-3425.0.34/lib/Analysis/
H A DCodeMetrics.cpp36 StringRef Name = F->getName();
39 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
40 Name == "fabs" || Name == "fabsf" || Name == "fabsl" ||
41 Name == "sin" || Name == "sinf" || Name
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DAutoUpgrade.cpp48 StringRef Name = F->getName(); local
49 if (Name.size() <= 8 || !Name.startswith("llvm."))
51 Name = Name.substr(5); // Strip off "llvm."
53 switch (Name[0]) {
56 if (Name.startswith("arm.neon.vclz")) {
66 "llvm.ctlz." + Name.substr(14), F->getParent());
69 if (Name.startswith("arm.neon.vcnt")) {
77 if (Name
173 StringRef Name = F->getName(); local
303 std::string Name = CI->getName().str(); local
[all...]
H A DValueSymbolTable.cpp28 << *VI->getValue()->getType() << "' Name = '"
40 if (vmap.insert(V->Name)) {
41 //DEBUG(dbgs() << " Inserted value: " << V->Name << ": " << *V << "\n");
49 V->Name->Destroy();
62 V->Name = &NewName;
78 ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) { argument
80 ValueName &Entry = vmap.GetOrCreateValue(Name);
89 SmallString<256> UniqueName(Name.begin(), Name.end());
93 UniqueName.resize(Name
[all...]
/macosx-10.10/OpenSSL098-52/src/test/
H A DCAssdh.cnf15 countryName = Country Name (2 letter code)
19 organizationName = Organization Name (eg, company)
22 commonName = Common Name (eg, YOUR name)
H A DCAssdsa.cnf15 countryName = Country Name (2 letter code)
19 organizationName = Organization Name (eg, company)
22 commonName = Common Name (eg, YOUR name)
H A DCAssrsa.cnf15 countryName = Country Name (2 letter code)
19 organizationName = Organization Name (eg, company)
22 commonName = Common Name (eg, YOUR name)
H A DSssdsa.cnf15 countryName = Country Name (2 letter code)
19 organizationName = Organization Name (eg, company)
22 0.commonName = Common Name (eg, YOUR name)
25 1.commonName = Common Name (eg, YOUR name)
H A DSssrsa.cnf15 countryName = Country Name (2 letter code)
19 organizationName = Organization Name (eg, company)
22 0.commonName = Common Name (eg, YOUR name)
25 1.commonName = Common Name (eg, YOUR name)
H A DUss.cnf17 countryName = Country Name (2 letter code)
21 organizationName = Organization Name (eg, company)
24 0.commonName = Common Name (eg, YOUR name)
27 1.commonName = Common Name (eg, YOUR name)
H A DP1ss.cnf17 countryName = Country Name (2 letter code)
21 organizationName = Organization Name (eg, company)
24 0.commonName = Common Name (eg, YOUR name)
27 1.commonName = Common Name (eg, YOUR name)
30 2.commonName = Common Name (eg, YOUR name)
H A DP2ss.cnf17 countryName = Country Name (2 letter code)
21 organizationName = Organization Name (eg, company)
24 0.commonName = Common Name (eg, YOUR name)
27 1.commonName = Common Name (eg, YOUR name)
30 2.commonName = Common Name (eg, YOUR name)
33 3.commonName = Common Name (eg, YOUR name)
/macosx-10.10/llvmCore-3425.0.34/include/llvm/MC/
H A DMCFixupKindInfo.h28 const char *Name; member in struct:llvm::MCFixupKindInfo
/macosx-10.10/llvmCore-3425.0.34/tools/llvm-diff/
H A Dllvm-diff.cpp37 static Module *ReadModule(LLVMContext &Context, StringRef Name) { argument
39 Module *M = ParseIRFile(Name, Diag, Context);
46 StringRef Name) {
48 if (Name.startswith("@")) Name = Name.substr(1);
50 Function *LFn = L->getFunction(Name);
51 Function *RFn = R->getFunction(Name);
55 errs() << "No function named @" << Name << " in either module\n";
57 errs() << "No function named @" << Name << " i
45 diffGlobal(DifferenceEngine &Engine, Module *L, Module *R, StringRef Name) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/
H A DIRBuilder.h36 void InsertHelper(Instruction *I, const Twine &Name, argument
40 I->setName(Name);
177 /// others of the same contents. If Name is specified, it is the name of the
179 Value *CreateGlobalString(StringRef Str, const Twine &Name = "");
401 InstTy *Insert(InstTy *I, const Twine &Name = "") const {
402 this->InsertHelper(I, Name, BB, InsertPt);
484 BasicBlock *UnwindDest, const Twine &Name = "") {
487 Name);
491 const Twine &Name = "") {
493 Name);
523 CreateInsertNUWNSWBinOp(BinaryOperator::BinaryOps Opc, Value *LHS, Value *RHS, const Twine &Name, bool HasNUW, bool HasNSW) argument
804 CreateLoad(Value *Ptr, const char *Name) argument
818 CreateAlignedLoad(Value *Ptr, unsigned Align, const char *Name) argument
[all...]
H A DInstrTypes.h145 const Twine &Name, Instruction *InsertBefore);
147 const Twine &Name, BasicBlock *InsertAtEnd);
164 const Twine &Name = Twine(),
172 const Twine &Name, BasicBlock *InsertAtEnd);
179 const Twine &Name = "") {\
180 return Create(Instruction::OPC, V1, V2, Name);\
185 const Twine &Name, BasicBlock *BB) {\
186 return Create(Instruction::OPC, V1, V2, Name, BB);\
191 const Twine &Name, Instruction *I) {\
192 return Create(Instruction::OPC, V1, V2, Name,
202 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
208 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
221 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
227 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
240 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
246 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.cpp60 lookupName(const char *Name, unsigned Len) const {
61 if (Len < 5 || Name[4] != '.' || Name[0] != 'l' || Name[1] != 'l'
62 || Name[2] != 'v' || Name[3] != 'm')
72 lookupGCCName(const char *Name) const {
73 return mblazeIntrinsic::getIntrinsicForGCCBuiltin("mblaze",Name);
H A DMBlazeIntrinsicInfo.h24 unsigned lookupName(const char *Name, unsigned Len) const;
25 unsigned lookupGCCName(const char *Name) const;
/macosx-10.10/OpenSSL098-52/src/ms/
H A Dsegrenam.pl57 ($Name,@opaque)=unpack("Z8C*",$SectionHeader);
58 if ($map{$Name}) {
60 syswrite(FD,pack("a8C*",$map{$Name},@opaque))==40 || die "syswrite failed: $!";
61 printf " %-8s -> %.8s\n",$Name,$map{$Name} unless $quiet;
/macosx-10.10/CPANInternal-159.1/Class-DBI-v3.0.17/t/testlib/
H A DDirector.pm9 __PACKAGE__->columns('All' => qw/ Name Birthday IsInsane /);
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/RegExp/
H A Dregress-103087.js44 var Name = "(" + NameStrt + ")(" + NameChar + ")*"; variable
53 var DT_IdentSE = S + Name + "(" + S + "(" + Name + "|" + QuoteSE + "))*";
58 var DT_ItemSE = "<(!(--" + Until2Hyphens + ">|[^-]" + MarkupDeclCE + ")|\\?" + Name + "(" + PI_Tail + "))|%" + Name + ";|" + S;
61 var PI_CE = Name + "(" + PI_Tail + ")?";
62 var EndTagCE = Name + "(" + S + ")?>?";
64 var ElemTagCE = Name + "(" + S + Name + "(" + S + ")?=(" + S + ")?(" + AttValSE + "))*(" + S + ")?/?>?";
69 var PI_RE = "<\\?" + Name
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/MC/
H A DMCSectionCOFF.cpp21 bool MCSectionCOFF::ShouldOmitSectionDirective(StringRef Name, argument
25 if (Name == ".text" || Name == ".data" || Name == ".bss")
/macosx-10.10/libxml2-26/libxml2/python/tests/
H A Dreadernext.py25 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 \
H A Dreader3.py33 if reader.Name() == "doc" or reader.NodeType() == 10:
38 if reader.Name() != "doc" or reader.NodeType() != 1:
45 if reader.Name() != "tst" or reader.NodeType() != 5:
52 if reader.Name() != "doc" or reader.NodeType() != 15:
71 if reader.Name() == "doc" or reader.NodeType() == 10:
76 if reader.Name() != "doc" or reader.NodeType() != 1:
83 if reader.Name() != "p" or reader.NodeType() != 1:
97 if reader.Name() != "p" or reader.NodeType() != 15:
104 if reader.Name() != "doc" or reader.NodeType() != 15:
139 res = res + "%s %s %d %d\n" % (reader.NodeType(),reader.Name(),
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dreadernext.py20 if reader.Name() != "a" or reader.IsEmptyElement() != 0 or \
28 if reader.Name() != "b" or reader.IsEmptyElement() != 0 or \
36 if reader.Name() != "c" or reader.NodeType() != 1 or \
44 if reader.Name() != "b" or reader.NodeType() != 15:
51 if reader.Name() != "d" or reader.IsEmptyElement() != 0 or \
59 if reader.Name() != "a" or reader.IsEmptyElement() != 0 or \

Completed in 151 milliseconds

1234567891011>>