/external/clang/include/clang/AST/ |
TypeLoc.h | 162 void initializeFullCopy(TypeLoc Other) const { 163 assert(getType() == Other.getType()); 165 memcpy(getOpaqueData(), Other.getOpaqueData(), Size); 171 void initializeFullCopy(TypeLoc Other, unsigned Size) const { 172 assert(getType() == Other.getType()); 174 memcpy(getOpaqueData(), Other.getOpaqueData(), Size); [all...] |
/external/llvm/lib/Analysis/ |
BasicAliasAnalysis.cpp | 148 /// arguments other than itself, which is not neccessarily true for 172 bool operator==(const VariableGEPIndex &Other) const { 173 return V == Other.V && Extension == Other.Extension && 174 Scale == Other.Scale; 177 bool operator!=(const VariableGEPIndex &Other) const { 178 return !operator==(Other); 266 /// specified amount, but which may have other unrepresented high bits. As such, [all...] |
/external/chromium_org/native_client_sdk/src/tools/ |
host_vc.mk | 94 # $6 = Other Linker Args
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
NetworkManager.js | 12 * in the documentation and/or other materials provided with the 219 || networkRequest.type === WebInspector.resourceTypes.Other 261 this.responseReceived(requestId, frameId, loaderId, time, PageAgent.ResourceType.Other, redirectResponse);
|
Resource.js | 12 * documentation and/or other materials provided with the distribution. 49 this._type = type || WebInspector.resourceTypes.Other;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
AMDGPUISelLowering.cpp | 31 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); 72 return DAG.getNode(AMDGPUISD::RET_FLAG, DL, MVT::Other, Chain);
|
/external/chromium_org/v8/test/mjsunit/ |
debug-liveedit-double-call.js | 10 // disclaimer in the documentation and/or other materials provided 116 print("Other: " + event);
|
debug-liveedit-stack-padding.js | 10 // disclaimer in the documentation and/or other materials provided 75 print("Other: " + event);
|
/external/chromium_org/v8/test/webkit/fast/js/kde/ |
lval-exceptions.js | 11 // documentation and/or other materials provided with the distribution. 33 // Other reference types should just return undefined...
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
RetainCountChecker.cpp | 1 //==-- RetainCountChecker.cpp - Checks for leaks and other issues -*- C++ -*--// 117 bool operator==(const RetEffect &Other) const { 118 return K == Other.K && O == Other.O; 426 bool operator==(const RetainSummary &Other) const { 427 return Args == Other.Args && DefaultArgEffect == Other.DefaultArgEffect && 428 Receiver == Other.Receiver && Ret == Other.Ret; 439 /// A retain summary is simple if it has no ArgEffects other than the default [all...] |
/external/llvm/include/llvm/CodeGen/ |
LiveInterval.h | 70 /// PHI-defs begin at a block boundary, all other defs begin at register or 351 bool overlaps(const LiveInterval& other) const { 352 if (other.empty()) 354 return overlapsFrom(other, other.begin()); 362 bool overlaps(const LiveInterval &Other, const CoalescerPair &CP, 371 /// scanning the Other interval starting at I. 372 bool overlapsFrom(const LiveInterval& other, const_iterator I) const; 386 /// join - Join two live intervals (this, and other) together. This applies 389 void join(LiveInterval &Other, [all...] |
/external/llvm/lib/CodeGen/ |
BasicTargetTransformInfo.cpp | 181 (TLI->isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) || 182 TLI->isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
|
TargetRegisterInfo.cpp | 111 if ((VT == MVT::Other || RC->hasType(VT)) && RC->contains(reg) && 206 // It is very common that one register class is a sub-register of the other.
|
/external/llvm/lib/IR/ |
ValueTypes.cpp | 128 case MVT::Other: return "ch"; 236 /// as Other, otherwise they are invalid. 240 if (HandleUnknown) return MVT(MVT::Other); 264 /// are returned as Other, otherwise they are invalid.
|
/external/llvm/lib/Target/MSP430/ |
MSP430ISelDAGToDAG.cpp | 350 VT, MVT::i16, MVT::Other, 371 VT, MVT::i16, MVT::Other, 417 // Other cases are autogenerated. 430 // Other cases are autogenerated. 439 // Other cases are autogenerated. 452 // Other cases are autogenerated. 465 // Other cases are autogenerated. 478 // Other cases are autogenerated.
|
/external/mesa3d/src/gallium/drivers/radeon/ |
AMDGPUISelLowering.cpp | 31 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom); 72 return DAG.getNode(AMDGPUISD::RET_FLAG, DL, MVT::Other, Chain);
|
/external/llvm/lib/Target/Mips/ |
MipsISelLowering.cpp | 241 setOperationAction(ISD::BR_JT, MVT::Other, Custom); 254 setOperationAction(ISD::BRCOND, MVT::Other, Custom); 255 setOperationAction(ISD::VASTART, MVT::Other, Custom); 301 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand); 349 setOperationAction(ISD::EH_RETURN, MVT::Other, Custom); 351 setOperationAction(ISD::VAARG, MVT::Other, Expand); 352 setOperationAction(ISD::VACOPY, MVT::Other, Expand); 353 setOperationAction(ISD::VAEND, MVT::Other, Expand); 356 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand); 357 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand) [all...] |
/external/clang/include/clang/Lex/ |
MacroInfo.h | 116 /// This restores this MacroInfo to a state where it can be reused for other 152 bool isIdenticalTo(const MacroInfo &Other, Preprocessor &PP, 268 /// In other words, that we are not currently in an expansion of this macro. 484 /// other macro definitions.
|
/external/clang/lib/Sema/ |
DeclSpec.cpp | 121 void CXXScopeSpec::Adopt(NestedNameSpecifierLoc Other) { 122 if (!Other) { 128 Range = Other.getSourceRange(); 129 Builder.Adopt(Other); 643 // Unlike the other cases, we don't assert that we actually get a decl. 857 // If decltype(auto) is used, no other type specifiers are permitted. [all...] |
SemaTemplateInstantiateDecl.cpp | [all...] |
/external/llvm/include/llvm/IR/ |
DerivedTypes.h | 183 /// other (if the struct is packed) or (if not packed) with padding between the 283 bool isLayoutIdentical(StructType *Other) const;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGPrinter.cpp | 96 else if (VT == MVT::Other)
|
InstrEmitter.cpp | 46 if (N && Node->getValueType(N - 1) == MVT::Other) 63 if (N && Node->getOperand(N - 1).getValueType() == MVT::Other) 128 if (VT == MVT::Other || VT == MVT::Glue) 301 assert(Op.getValueType() != MVT::Other && 416 assert(Op.getValueType() != MVT::Other && 651 // It's possible we replaced this SDNode with other(s) and therefore 769 // physreg values can reach other instructions in different ways: [all...] |
/external/llvm/utils/TableGen/ |
DAGISelMatcherGen.cpp | 24 /// have different associated types, return MVT::Other. 28 MVT::SimpleValueType VT = MVT::Other; 267 // Remember this ComplexPattern so that we can emit it after all the other 371 // intrinsic, has multiple operands, or has other inputs like chain or 567 // version of the immediate so that it doesn't get selected due to some other 789 // Even if the node has no other glue inputs, the resultant node must be [all...] |
/external/llvm/include/llvm/Target/ |
TargetLowering.h | 18 /// In addition it has a few other components, like information about FP 83 Expand, // Try to expand this to other ops, otherwise use a libcall. 206 /// BRCOND nodes. In the case of BRCOND the argument passed is MVT::Other 207 /// since there are no other operands to get a type hint from. 405 /// be promoted to a larger size, needs to be expanded to some other code 420 return (VT == MVT::Other || isTypeLegal(VT)) && 429 return (VT == MVT::Other || isTypeLegal(VT)) && 443 return (VT == MVT::Other || isTypeLegal(VT)) && 448 /// needs to be promoted to a larger size, needs to be expanded to some other 464 /// other code sequence, or the target has a custom expander for it [all...] |