Searched defs:isArray (Results 1 - 25 of 65) sorted by relevance

123

/external/chromium_org/v8/test/webkit/fast/js/
H A DJSON-parse-reviver.js25 if (!Array.isArray)
26 Array.isArray = function(o) { return o.constructor === Array; }
33 shouldBeTrue("Array.isArray(currentHolder)");
/external/junit/src/org/junit/internal/
H A DComparisonCriteria.java41 if (isArray(expected) && isArray(actual)) {
57 private boolean isArray(Object expected) { method in class:ComparisonCriteria
58 return expected != null && expected.getClass().isArray();
/external/mockito/src/org/mockito/internal/matchers/
H A DEquality.java15 } else if (isArray(o1)) {
16 return isArray(o2) && areArraysEqual(o1, o2);
38 static boolean isArray(Object o) { method in class:Equality
39 return o.getClass().isArray();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTypeExtensions.cs83 public static bool isArray( this Type type ) method in class:Antlr.Runtime.JavaExtensions.TypeExtensions
/external/hamcrest/src/org/hamcrest/core/
H A DIsEqual.java35 } else if (isArray(o1)) {
36 return isArray(o2) && areArraysEqual(o1, o2);
58 private static boolean isArray(Object o) { method in class:IsEqual
59 return o.getClass().isArray();
/external/javassist/src/main/javassist/
H A DCtArray.java34 public boolean isArray() { method in class:CtArray
76 return clazz.isArray()
/external/javassist/src/main/javassist/bytecode/analysis/
H A DMultiArrayType.java70 public boolean isArray() { method in class:MultiArrayType
92 if (! type.isArray())
H A DMultiType.java93 public boolean isArray() { method in class:MultiType
H A DType.java195 public boolean isArray() { method in class:Type
196 return clazz != null && clazz.isArray();
206 if (!isArray()) return 0;
226 if (this.clazz == null || !this.clazz.isArray())
302 if (type.isArray() && this.isArray())
313 while (type.isArray())
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Dprototype-1.7.js311 function isArray(object) { function
315 var hasNativeIsArray = (typeof Array.isArray == 'function')
316 && Array.isArray([]) && !Array.isArray({});
319 isArray = Array.isArray;
356 isArray: isArray,
636 if (!Object.isArray(hash[key])) hash[key] = [hash[key]];
1117 if (Object.isArray(valu
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DUniform.cpp45 bool LinkedUniform::isArray() const function in class:gl::LinkedUniform
/external/javassist/src/main/javassist/compiler/ast/
H A DNewExpr.java52 public boolean isArray() { return newArray; } method in class:NewExpr
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DAliasOptions.java67 public boolean isArray() method in class:AliasOptions
H A DPropertyOptions.java197 public boolean isArray() method in class:PropertyOptions
333 isArray() == options.isArray() &&
/external/chromium_org/third_party/angle/include/GLSLANG/
H A DShaderVars.h51 bool isArray() const { return arraySize > 0; } function in struct:sh::ShaderVariable
/external/deqp/modules/gles31/functional/
H A Des31fShaderStateQueryTests.cpp63 bool isArray; member in struct:deqp::gles31::Functional::__anon20332::SamplerType
95 if (samplerTypes[typeNdx].isArray && !textureArraySupported)
104 shaderArgs["EXTENSIONSTATEMENT"] = (samplerTypes[typeNdx].isArray) ? ("#extension GL_OES_texture_storage_multisample_2d_array : require\n") : ("");
H A Des31fSSBOLayoutCase.hpp91 bool isArray (void) const { return m_arraySize > 0; } function in class:deqp::gles31::bb::BufferBlock
H A Des31fProgramInterfaceQueryTestCase.cpp415 const bool isArray = enclosingcomponent.isVariableType() && enclosingcomponent.getVariableType()->isArrayType(); local
416 const bool inUnsizedArray = isArray && (enclosingcomponent.getVariableType()->getArraySize() == glu::VarType::UNSIZED_ARRAY);
417 const int arraySize = (!isArray) ? (1) : (inUnsizedArray) ? (0) : (enclosingcomponent.getVariableType()->getArraySize());
473 const bool isArray = enclosingcomponent.isVariableType() && enclosingcomponent.getVariableType()->isArrayType(); local
479 if (isBufferBlock && isArray)
493 const int arrayStride = (isAtomicCounter && isArray) ? (4) : (!isBufferBlock && !isAtomicCounter) ? (-1) : (0);
910 const bool isArray = enclosingcomponent.isVariableType() && enclosingcomponent.getVariableType()->isArrayType();
919 if (isArray)
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
H A Dutil.js109 function isArray(value) { function
/external/chromium_org/third_party/jstemplate/
H A Dutil.js107 function isArray(value) { function
/external/chromium_org/third_party/skia/include/gpu/
H A DGrShaderVar.h161 bool isArray() const { return kNonArray != fCount; } function in class:GrShaderVar
/external/deqp/framework/randomshaders/
H A DrsgVariableType.hpp159 bool isArray (void) const { return m_baseType == TYPE_ARRAY; } function in class:rsg::VariableType
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DTypeUtils.java99 } else if (isArray(type)) {
288 public static boolean isArray(Type type) { method in class:TypeUtils
293 if (!isArray(type)) {
310 if (isArray(type)) {
/external/skia/src/gpu/gl/
H A DGrGLShaderVar.h182 bool isArray() const { return kNonArray != fCount; } function in class:GrGLShaderVar
272 if (this->isArray()) {
/external/clang/include/clang/AST/
H A DAPValue.h188 bool isArray() const { return Kind == Array; } function in class:clang::APValue
272 assert(isArray() && "Invalid accessor");
283 assert(isArray() && "Invalid accessor");
291 assert(isArray() && "Invalid accessor");
295 assert(isArray() && "Invalid accessor");

Completed in 3320 milliseconds

123