Searched defs:IsArray (Results 1 - 16 of 16) sorted by relevance

/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
H A DIsArray.java13 public class IsArray<T> extends TypeSafeMatcher<T[]> { class in inherits:TypeSafeMatcher
16 public IsArray(Matcher<? super T>[] elementMatchers) { method in class:IsArray
93 public static <T> IsArray<T> array(Matcher<? super T>... elementMatchers) {
94 return new IsArray<T>(elementMatchers);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dlogical_buffer.h142 bool IsArray() const { return is_array_; } function in class:xla::LogicalBuffer
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_array.cpp38 bool CPDF_Array::IsArray() const { function in class:CPDF_Array
71 if (!IsArray() || m_Objects.size() != 4)
83 if (!IsArray() || m_Objects.size() != 6)
167 ASSERT(IsArray());
180 ASSERT(IsArray());
195 ASSERT(IsArray());
H A Dcpdf_object.cpp66 bool CPDF_Object::IsArray() const { function in class:CPDF_Object
/external/tensorflow/tensorflow/compiler/xla/
H A Dshape_util.h396 static bool IsArray(const Shape& shape) { function in class:xla::ShapeUtil
/external/v8/src/interpreter/
H A Dinterpreter-intrinsics.cc180 Node* IntrinsicsHelper::IsArray(Node* input, Node* arg_count, Node* context) { function in class:v8::internal::interpreter::IntrinsicsHelper
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp334 bool IsArray = isa<ElementRegion>(Target); local
337 !IsArray) {
/external/pdfium/fxjs/
H A Dcfxjse_value.cpp327 bool CFXJSE_Value::IsArray() const { function in class:CFXJSE_Value
333 return hValue->IsArray();
/external/v8/src/ast/
H A Dast-types.h824 bool IsArray() { return IsKind(AstTypeBase::kArray); } function in class:v8::internal::AstBitsetType::AstType
/external/libcxxabi/src/
H A Dcxa_demangle.cpp1502 bool IsArray; // new[] ? member in class:__anon11207::NewExpr
1507 IsGlobal(IsGlobal_), IsArray(IsArray_) {
1520 if (IsArray)
1541 bool IsArray; member in class:__anon11207::DeleteExpr
1545 : Op(Op_), IsGlobal(IsGlobal_), IsArray(IsArray_) {
1553 if (IsArray)
2673 bool IsArray = look(1) == 'a';
2696 return make<NewExpr>(ExprList, Ty, Inits, Global, IsArray);
2699 return make<NewExpr>(ExprList, Ty, NodeArray(), Global, IsArray);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp4639 bool IsArray = CurTy->isArrayTy(); local
4643 if (!IsStruct && !IsArray)
4649 if (IsArray && Index >= CurTy->getArrayNumElements())
4681 bool IsArray = CurTy->isArrayTy(); local
4685 if (!IsStruct && !IsArray)
4691 if (IsArray && Index >= CurTy->getArrayNumElements())
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp1959 bool IsArray, MultiExprArg PlaceArgs,
1989 IsArray ? OO_Array_New : OO_New);
1991 IsArray ? OO_Array_Delete : OO_Delete);
2007 bool FallbackEnabled = IsArray && Context.getLangOpts().MSVCCompat;
1957 FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, bool UseGlobal, QualType AllocType, bool IsArray, MultiExprArg PlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete) argument
H A DSemaChecking.cpp8751 const bool IsArray = T->isArrayType(); local
8760 if (!IsAddressOf && !IsFunction && !IsArray)
8779 else if (IsArray)
/external/clang/lib/AST/
H A DExprConstant.cpp119 bool &IsArray) {
129 IsArray = true;
135 IsArray = true;
140 IsArray = false;
144 IsArray = false;
203 bool IsArray = false; local
207 MostDerivedType, IsArray);
208 MostDerivedIsArrayElement = IsArray;
2673 bool IsArray = A.MostDerivedIsArrayElement;
2674 if (IsArray
116 findMostDerivedSubobject(ASTContext &Ctx, QualType Base, ArrayRef<APValue::LValuePathEntry> Path, uint64_t &ArraySize, QualType &Type, bool &IsArray) argument
[all...]
/external/v8/src/
H A Dapi.cc3403 bool Value::IsArray() const { function in class:v8::Value
H A Dobjects.cc842 Maybe<bool> Object::IsArray(Handle<Object> object) { function in class:v8::internal::Object
850 isolate->factory()->NewStringFromAsciiChecked("IsArray")));
853 return Object::IsArray(handle(proxy->target(), isolate));
2287 Maybe<bool> is_array = Object::IsArray(original_array);

Completed in 964 milliseconds