| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | APValue.h | 474 bool isArray() const { return Kind == Array; } 577 assert(isArray() && "Invalid accessor"); 588 assert(isArray() && "Invalid accessor"); 596 assert(isArray() && "Invalid accessor"); 600 assert(isArray() && "Invalid accessor");
|
| H A D | ExprCXX.h | 2371 unsigned initExprOffset() const { return arraySizeOffset() + isArray(); } in initExprOffset() 2377 return isArray() + hasInitializer() + getNumPlacementArgs(); in numTrailingObjects() 2444 bool isArray() const { return CXXNewExprBits.IsArray; } in isArray() function 2450 if (!isArray()) in getArraySize() 2464 if (!isArray()) in getArraySize()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenCXXExpr.cpp | 199 if (!e->isArray()) { in emitCXXNewAllocSize() 241 if (e->isArray()) { in emitNewInitializer() 281 if (e->isArray() && e->hasInitializer()) { in emitCXXNewExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | UndefinedNewArraySizeChecker.cpp | 42 if (!AC->isArray()) in checkPreCall()
|
| H A D | CheckPlacementNew.cpp | 79 if (NE->isArray()) { in getExtentSizeOfNewTarget()
|
| H A D | DynamicTypePropagation.cpp | 414 if (NewE->isArray()) in checkPostStmt()
|
| H A D | MallocChecker.cpp | 1678 if (NE->isArray()) { in ProcessZeroAllocCheck() 1793 if (Call.getOriginExpr()->isArray()) { in processNewAllocation() 1809 AllocationFamily(Call.getOriginExpr()->isArray() ? AF_CXXNewArray in checkNewAllocator()
|
| /freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/ |
| H A D | MsgPackDocument.cpp | 226 (Node.isArray() && !DestNode->isArray()))); in readFromBlob()
|
| H A D | AMDGPUMetadataVerifier.cpp | 59 if (!Node.isArray()) in verifyArray()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | MsgPackDocument.h | 72 bool isArray() const { return getKind() == Type::Array; } in isArray() function 73 bool isScalar() const { return !isMap() && !isArray(); } in isScalar()
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/Offloading/ |
| H A D | Utility.cpp | 252 assert(DN.isArray() && "MsgPack DocNode is an array node"); in extractKernelData() 300 assert(Pair.second.isArray() && in getAMDKernelsArray()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Descriptor.h | 276 bool isArray() const { return IsArray; } in isArray() function
|
| H A D | InterpBuiltin.cpp | 124 if (Desc->isArray()) in getElemType() 1793 if (DestPtr.getFieldDesc()->isArray()) { in interp__builtin_memcpy() 1818 if (SrcPtr.getFieldDesc()->isArray()) { in interp__builtin_memcpy() 2039 QualType ElemTy = Ptr.getFieldDesc()->isArray() in interp__builtin_memchr() 2114 if (Desc->isArray()) in computeFullDescSize()
|
| H A D | Descriptor.cpp | 442 assert(isArray()); in getElemQualType()
|
| H A D | Interp.h | 1998 if (Idx == 0 && !Ptr.getFieldDesc()->isArray()) { in InitElem() 2022 if (Idx == 0 && !Ptr.getFieldDesc()->isArray()) { in InitElemPop() 2171 if (Ptr.getFieldDesc()->isArray()) 2931 if (Ptr.getFieldDesc()->isArray() && Ptr.getIndex() == 0) { in ArrayElemPtr() 2961 if (Ptr.getFieldDesc()->isArray() && Ptr.getIndex() == 0) { in ArrayElemPtrPop()
|
| H A D | Compiler.cpp | 3484 if (E->isArray()) in VisitCXXNewExpr() 3492 E->isArray() ? std::nullopt : Descriptor::InlineDescMD, in VisitCXXNewExpr() 3498 if (E->isArray()) { in VisitCXXNewExpr() 4820 } else if (Val.isArray()) { in visitAPValueInitializer() 6952 if (Desc->isArray()) { in emitDestruction()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | HTMLLogger.js | 195 if (Array.isArray(cls)) return cls.map(classSelector).join(', ');
|
| /freebsd/contrib/libxo/xohtml/external/ |
| H A D | jquery.js | 248 if ( jQuery.isArray( elems ) ) { 366 if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { 369 clone = src && jQuery.isArray(src) ? src : []; 498 isArray: Array.isArray || function( obj ) { 770 …isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( len… 773 if ( isArray ) { 1832 if ( jQuery.isArray( name ) ) { 2087 if ( !q || jQuery.isArray(data) ) { 2406 } else if ( jQuery.isArray( val ) ) { 2845 if ( jQuery.isArray( value ) ) { [all …]
|
| H A D | jquery.qtip.js | 716 if($.isArray(target) && target.length === 2) { 1694 id = $.isArray(opts.id) ? opts.id[i] : opts.id;
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | CallEvent.h | 1158 bool isArray() const { return getOriginExpr()->isArray(); } in isArray() function 1165 assert(isArray() && "The allocator call doesn't allocate and array!"); in getArraySizeVal()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprCXX.cpp | 699 if (!E->isArray()) in CalculateCookiePadding() 717 if (!e->isArray()) { in EmitCXXNewAllocSize() 1326 if (E->isArray()) in EmitNewInitializer() 1613 if (E->isArray() && E->hasInitializer()) { in EmitCXXNewExpr() 1775 assert(E->isArray()); in EmitCXXNewExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineCXX.cpp | 192 if (NE->isArray()) { in computeObjectUnderConstruction() 1030 if (CNE->isArray()) { in VisitCXXNewExpr()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Registry.cpp | 408 REGISTER_MATCHER(isArray); in RegistryMaps()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 8533 AST_MATCHER(CXXNewExpr, isArray) { in AST_MATCHER() argument 8534 return Node.isArray(); in AST_MATCHER() 8575 return Node.isArray() && *Node.getArraySize() && in AST_MATCHER_P()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Stmt.cpp | 519 assert(Res.isArray() && "expected an array"); in ExtractStringFromGCCAsmStmtComponent()
|