HomeSort by relevance Sort by last modified time
    Searched refs:Other (Results 151 - 175 of 330) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/include/clang/AST/
DeclTemplate.h 161 TemplateArgumentList(const TemplateArgumentList &Other) LLVM_DELETED_FUNCTION;
162 void operator=(const TemplateArgumentList &Other) LLVM_DELETED_FUNCTION;
193 explicit TemplateArgumentList(const TemplateArgumentList *Other)
194 : Arguments(Other->data(), false), NumArguments(Other->size()) { }
583 bool operator==(SpecIterator Other) const {
584 return SetIter == Other.SetIter;
586 bool operator!=(SpecIterator Other) const {
587 return SetIter != Other.SetIter;
    [all...]
TypeLoc.h 165 void initializeFullCopy(TypeLoc Other) const {
166 assert(getType() == Other.getType());
168 memcpy(getOpaqueData(), Other.getOpaqueData(), Size);
174 void initializeFullCopy(TypeLoc Other, unsigned Size) const {
175 assert(getType() == Other.getType());
177 memcpy(getOpaqueData(), Other.getOpaqueData(), Size);
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 105 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
108 setOperationAction(ISD::BRCOND, MVT::Other, Expand);
165 setOperationAction(ISD::VASTART, MVT::Other, Custom);
166 setOperationAction(ISD::VAARG, MVT::Other, Expand);
167 setOperationAction(ISD::VAEND, MVT::Other, Expand);
168 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
568 return DAG.getNode(Opc, dl, MVT::Other, RetOps);
657 // independent of each other.
659 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, MemOpChains);
680 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue)
    [all...]
  /external/llvm/lib/IR/
Type.cpp 95 return false; // Other types have no identity values
571 // other way.
603 bool StructType::isLayoutIdentical(StructType *Other) const {
604 if (this == Other) return true;
606 if (isPacked() != Other->isPacked() ||
607 getNumElements() != Other->getNumElements())
610 return std::equal(element_begin(), element_end(), Other->element_begin());
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 389 BasicBlock *Other = Term->getSuccessor(!i);
390 if (Visited.count(Other) && !Loops.count(Other) &&
391 !Pred.count(Other) && !Pred.count(*PI)) {
393 Pred[Other] = BoolFalse;
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 238 return DAG.getNode(SPISD::RET_FLAG, DL, MVT::Other, RetOps);
317 return DAG.getNode(SPISD::RET_FLAG, DL, MVT::Other, RetOps);
492 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
532 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
647 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, OutChains);
811 // Increment the pointer to the other half.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
NetworkRequest.js 12 * in the documentation and/or other materials provided with the
62 this._type = WebInspector.resourceTypes.Other;
86 Other: "other",
107 * @param {!WebInspector.NetworkRequest} other
110 indentityCompare: function(other) {
111 if (this._requestId > other._requestId)
113 if (this._requestId < other._requestId)
949 var type = WebInspector.NetworkRequest.InitiatorType.Other;
NetworkManager.js 12 * in the documentation and/or other materials provided with the
243 || networkRequest.type === WebInspector.resourceTypes.Other
275 this.responseReceived(requestId, frameId, loaderId, time, PageAgent.ResourceType.Other, redirectResponse);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600ISelLowering.cpp 40 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
41 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
352 MVT::Other, Chain,
419 // I don't think there will be any other type pairings.
SIISelLowering.cpp 49 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
59 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
327 MVT::Other, Chain,
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/CodeGen/
BasicTargetTransformInfo.cpp 190 (TLI->isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
191 TLI->isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
514 if (MemVT.isSimple() && MemVT != MVT::Other) {
  /external/mesa3d/src/gallium/drivers/radeon/
R600ISelLowering.cpp 40 setOperationAction(ISD::INTRINSIC_VOID, MVT::Other, Custom);
41 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
352 MVT::Other, Chain,
419 // I don't think there will be any other type pairings.
SIISelLowering.cpp 49 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
59 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
327 MVT::Other, Chain,
  /external/clang/lib/Analysis/
Consumed.cpp     [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 162 /// arguments other than itself, which is not necessarily true for
186 bool operator==(const VariableGEPIndex &Other) const {
187 return V == Other.V && Extension == Other.Extension &&
188 Scale == Other.Scale;
191 bool operator!=(const VariableGEPIndex &Other) const {
192 return !operator==(Other);
280 /// specified amount, but which may have other unrepresented high bits. As such,
    [all...]
  /external/llvm/lib/Object/
COFFObjectFile.cpp 840 // within the file bounds. We don't need to make sure it doesn't cover other
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp 240 setOperationAction(ISD::BR_JT, MVT::Other, Custom);
253 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
254 setOperationAction(ISD::VASTART, MVT::Other, Custom);
344 setOperationAction(ISD::EH_RETURN, MVT::Other, Custom);
346 setOperationAction(ISD::VAARG, MVT::Other, Expand);
347 setOperationAction(ISD::VACOPY, MVT::Other, Expand);
348 setOperationAction(ISD::VAEND, MVT::Other, Expand);
351 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
352 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
384 setOperationAction(ISD::TRAP, MVT::Other, Legal)
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
gnubbydevice.js 67 /** Other unspecified error */
68 GnubbyDevice.OTHER = 127;
  /external/chromium_org/native_client_sdk/src/tools/
host_vc.mk 94 # $6 = Other Linker Args
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorConsoleAgent.cpp 11 * documentation and/or other materials provided with the distribution.
234 case OtherMessageSource: return TypeBuilder::Console::ConsoleMessage::Source::Other;
237 return TypeBuilder::Console::ConsoleMessage::Source::Other;
  /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/llvm/include/llvm/CodeGen/
MachineValueType.h 37 Other = 0, // This is a non-standard value
133 // tblgen. Other than for overloading, we treat iPTRAny the same as iPTR.
364 case Other:
365 llvm_unreachable("Value type is non-standard value, Other.");
572 /// returned as Other, otherwise they are invalid.

Completed in 1375 milliseconds

1 2 3 4 5 67 8 91011>>