HomeSort by relevance Sort by last modified time
    Searched refs:IsArray (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
IsArray.java 13 public class IsArray<T> extends TypeSafeMatcher<T[]> {
16 public IsArray(Matcher<? super T>[] elementMatchers) {
93 public static <T> IsArray<T> array(Matcher<? super T>... elementMatchers) {
94 return new IsArray<T>(elementMatchers);
  /external/pdfium/core/fpdfapi/parser/
cpdf_array.cpp 38 bool CPDF_Array::IsArray() const {
68 if (!IsArray() || m_Objects.size() != 4)
80 if (!IsArray() || m_Objects.size() != 6)
159 ASSERT(IsArray());
172 ASSERT(IsArray());
187 ASSERT(IsArray());
cpdf_object.cpp 65 bool CPDF_Object::IsArray() const {
cpdf_object.h 65 virtual bool IsArray() const;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
EfiVfr.h 56 char IsArray;
VfrCompile.g 964 << int ArrayLength = 1; char IsArray = 0; >>
967 ( ";" | OpenBracket IVal:Number CloseBracket ";" << ArrayLength = GetNumber (IVal->getText(), IVal->getLine(), 4); IsArray = 1; >> )
968 << AddStructField (NAME->getText(), NAME->getLine(), 8, ArrayLength, IsArray); >>
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TypeExtensions.cs 83 public static bool isArray( this Type type )
85 return type.IsArray;
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
IsArrayTest.java 8 import static org.hamcrest.collection.IsArray.array;
  /system/tools/aidl/
generate_java_binder.cpp 286 decl->returnTypeDimension = method.GetType().IsArray() ? 1 : 0;
292 arg->GetType().IsArray() ? 1 : 0));
316 v->dimension = arg->GetType().IsArray() ? 1 : 0;
324 if (!arg->GetType().IsArray()) {
387 proxy->returnTypeDimension = method.GetType().IsArray() ? 1 : 0;
393 arg->GetType().IsArray() ? 1 : 0));
413 method.GetType().IsArray() ? 1 : 0);
432 new Variable(t, arg->GetName(), arg->GetType().IsArray() ? 1 : 0);
434 if (dir == AidlArgument::OUT_DIR && arg->GetType().IsArray()) {
476 new Variable(t, arg->GetName(), arg->GetType().IsArray() ? 1 : 0)
    [all...]
type_namespace.h 399 if (aidl_type.IsArray()) {
463 if (aidl_type.IsArray()) {
485 (aidl_type.IsArray()) ? "[]" : "");
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
documenttest.cpp 63 EXPECT_TRUE(a.IsArray());
209 EXPECT_TRUE(o.IsArray());
215 EXPECT_TRUE(d1.IsArray());
237 EXPECT_TRUE(d2.IsArray());
296 ASSERT_TRUE(json.IsArray());
360 EXPECT_TRUE(a.IsArray());
367 EXPECT_TRUE(b.IsArray());
453 EXPECT_TRUE(a.IsArray());
461 EXPECT_TRUE(b.IsArray());
valuetest.cpp 82 EXPECT_TRUE(x.IsArray());
88 EXPECT_TRUE(y.IsArray());
94 EXPECT_TRUE(z.IsArray());
251 EXPECT_TRUE(v2.IsArray());
294 EXPECT_FALSE(x.IsArray());
319 EXPECT_FALSE(x.IsArray());
345 EXPECT_FALSE(x.IsArray());
384 EXPECT_FALSE(x.IsArray());
432 EXPECT_FALSE(x.IsArray());
470 EXPECT_FALSE(x.IsArray());
    [all...]
  /external/pdfium/fxjs/
cfxjse_value.h 34 bool IsArray() const;
  /external/v8/src/inspector/
v8-regex.cc 77 if (!returnValue->IsArray()) return -1;
v8-injected-script-host.cc 127 if (value->IsArray() || value->IsArgumentsObject()) {
209 !allProperties->IsArray() || allProperties->Length() % 2 != 0)
v8-value-copier.cc 28 if (object->IsArray()) {
112 if (value->IsArray()) {
  /external/v8/src/interpreter/
interpreter-intrinsics.h 32 V(IsArray, is_array, 1) \
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/
tutorial.cpp 69 assert(a.IsArray());
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
document.h     [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
type.go 23 IsArray() bool
67 func (t *CompilerType) IsArray() bool { return false }
100 func (t *TupleType) IsArray() bool { return false }
type_test.go 37 func (t *TypeImpl) IsArray() bool { return t.array }
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
type.go 23 IsArray() bool
67 func (t *CompilerType) IsArray() bool { return false }
100 func (t *TupleType) IsArray() bool { return false }
type_test.go 37 func (t *TypeImpl) IsArray() bool { return t.array }
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
RangeExpression.py 529 IsArray = IsGuid = False
539 IsArray = True
540 if not IsArray and not IsGuid:
  /device/linaro/bootloader/edk2/IntelFspPkg/Tools/
GenCfgOpt.py     [all...]

Completed in 1717 milliseconds

1 2 3 4 5