Searched refs:IsArray (Results 1 - 21 of 21) sorted by relevance
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
H A D | TypeExtensions.cs | 85 return type.IsArray;
|
/external/chromium/base/ |
H A D | template_util_unittest.cc | 25 TEST(TemplateUtilTest, IsArray) {
|
/external/webkit/Source/WebCore/bindings/v8/ |
H A D | IDBBindingUtilities.cpp | 79 return object->IsArray() && getValueFrom(keyPathElement.index, object); 92 return object->IsArray() && setValue(object, keyPathElement.index, v8Value);
|
H A D | OptionsObject.cpp | 112 if (!v8Value->IsArray())
|
H A D | V8Utilities.cpp | 68 if (!cache->IsArray())
|
H A D | PageScriptDebugServer.cpp | 107 ASSERT(!value->IsUndefined() && value->IsArray());
|
H A D | ScriptValue.cpp | 90 if (value->IsArray()) {
|
H A D | WorkerScriptDebugServer.cpp | 98 ASSERT(!value->IsUndefined() && value->IsArray());
|
H A D | V8Binding.cpp | 592 if (!v8Value->IsArray())
|
H A D | SerializedScriptValue.cpp | 707 else if (value->IsArray())
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
H A D | V8MessagePortCustom.cpp | 77 if (value->IsArray()) {
|
H A D | V8InspectorFrontendHostCustom.cpp | 75 if (!args[1]->IsArray())
|
H A D | V8WebGLRenderingContextCustom.cpp | 529 if (args[1].IsEmpty() || !args[1]->IsArray()) { 601 if (args[1].IsEmpty() || !args[1]->IsArray()) { 718 if (args[2].IsEmpty() || !args[2]->IsArray()) {
|
/external/v8/src/ |
H A D | d8-posix.cc | 458 if (!args[1]->IsArray()) {
|
H A D | runtime.h | 487 F(IsArray, 1, 1) \
|
H A D | api.cc | 2136 bool Value::IsArray() const { function in class:v8::Value 2137 if (IsDeadCheck(i::Isolate::Current(), "v8::Value::IsArray()")) return false;
|
/external/clang/lib/Sema/ |
H A D | SemaExprCXX.cpp | 1496 bool IsArray, Expr **PlaceArgs, 1527 IsArray ? OO_Array_New : OO_New); 1529 IsArray ? OO_Array_Delete : OO_Delete); 1494 FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range, bool UseGlobal, QualType AllocType, bool IsArray, Expr **PlaceArgs, unsigned NumPlaceArgs, FunctionDecl *&OperatorNew, FunctionDecl *&OperatorDelete) argument
|
/external/clang/lib/AST/ |
H A D | ExprConstant.cpp | 1691 bool IsArray = A.MostDerivedArraySize != 0; 1692 if (IsArray && A.MostDerivedPathLength != A.Entries.size()) 1701 return CommonLength >= A.Entries.size() - IsArray;
|
/external/v8/include/ |
H A D | v8.h | 897 V8EXPORT bool IsArray() const;
|
/external/clang/include/clang/Sema/ |
H A D | Sema.h | 3714 bool UseGlobal, QualType AllocType, bool IsArray,
|
/external/v8/test/cctest/ |
H A D | test-api.cc | 13648 CHECK(stackTrace->AsArray()->IsArray()); 13670 CHECK(stackTrace->AsArray()->IsArray());
|
Completed in 1757 milliseconds