/third_party/mesa3d/src/compiler/glsl/tests/ |
H A D | sampler_types_test.cpp | 34 #define ARRAY EXPECT_TRUE(type->sampler_array); macro 55 T( sampler1DArray, GLSL_SAMPLER_DIM_1D, GLSL_TYPE_FLOAT, ARRAY, COLOR, 2) 56 T( sampler2DArray, GLSL_SAMPLER_DIM_2D, GLSL_TYPE_FLOAT, ARRAY, COLOR, 3) 57 T( samplerCubeArray, GLSL_SAMPLER_DIM_CUBE, GLSL_TYPE_FLOAT, ARRAY, COLOR, 4) 61 T( sampler2DMSArray, GLSL_SAMPLER_DIM_MS, GLSL_TYPE_FLOAT, ARRAY, COLOR, 3) 66 T(isampler1DArray, GLSL_SAMPLER_DIM_1D, GLSL_TYPE_INT, ARRAY, COLOR, 2) 67 T(isampler2DArray, GLSL_SAMPLER_DIM_2D, GLSL_TYPE_INT, ARRAY, COLOR, 3) 68 T(isamplerCubeArray, GLSL_SAMPLER_DIM_CUBE, GLSL_TYPE_INT, ARRAY, COLOR, 4) 72 T(isampler2DMSArray, GLSL_SAMPLER_DIM_MS, GLSL_TYPE_INT, ARRAY, COLOR, 3) 77 T(usampler1DArray, GLSL_SAMPLER_DIM_1D, GLSL_TYPE_UINT, ARRAY, COLO [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/unittest/ |
H A D | IceParseInstsTest.cpp | 161 EXPECT_TRUE(Munger.runTest(ARRAY(Align0))); in TEST() 162 EXPECT_TRUE(DumpMunger.runTestForAssembly(ARRAY(Align0))); in TEST() 176 EXPECT_FALSE(Munger.runTest(ARRAY(Align30), ParseError)); in TEST() 180 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align30))); in TEST() 197 EXPECT_TRUE(Munger.runTest(ARRAY(Align29))); in TEST() 198 EXPECT_TRUE(DumpMunger.runTestForAssembly(ARRAY(Align29))); in TEST() 287 EXPECT_FALSE(Munger.runTest(ARRAY(Align0), ParseError)); in TEST() 290 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align0))); in TEST() 306 EXPECT_FALSE(Munger.runTest(ARRAY(Align4), ParseError)); in TEST() 309 EXPECT_FALSE(DumpMunger.runTestForAssembly(ARRAY(Align in TEST() [all...] |
H A D | IceParseTypesTest.cpp | 84 EXPECT_FALSE(Munger.runTest(ARRAY(Edit))); in TEST() 101 EXPECT_FALSE(Munger.runTest(ARRAY(Edit))); in TEST()
|
/third_party/skia/bench/ |
H A D | MathBench.cpp | 325 ARRAY = 1000, enumerator 327 float fData[ARRAY]; 334 for (int i = 0; i < ARRAY; ++i) { in FloorBench() 359 for (int i = 0; i < ARRAY; ++i) { 366 for (int i = 0; i < ARRAY; ++i) { 386 ARRAY = 1000, enumerator 388 uint32_t fData[ARRAY]; 395 for (int i = 0; i < ARRAY; ++i) { in CLZBench() 419 for (int i = 0; i < ARRAY; ++i) { 426 for (int i = 0; i < ARRAY; 446 ARRAY = 1000, global() enumerator 508 ARRAY =1000, global() enumerator 669 ARRAY = 1000, global() enumerator [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
H A D | test_global.cpp | 54 #define ARRAY(a) \ macro 64 ARRAY(ArrayInitPartial), 65 ARRAY(ArrayInitFull), 66 ARRAY(ArrayConst), 67 ARRAY(ArrayDouble),
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/ |
H A D | ResourceModule.java | 88 // unfortunately, actually, data can be either ARRAY or STRING in ResourceModule() 89 defaultHeader = getFromTable(info, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); in ResourceModule() 255 UResourceBundle t = getFromTable(res, key, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); in getStringArrayHelper() 263 case UResourceBundle.ARRAY: in getStringArrayHelper() 268 throw new UResourceTypeMismatchException("Only accept ARRAY and STRING types."); in getStringArrayHelper() 299 // unfortunately, actually, data can be either ARRAY or STRING in UResourceTestData() 300 data = getFromTable(res, DATA, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); in UResourceTestData() 305 // unfortunately, actually, data can be either ARRAY or STRING in UResourceTestData() 306 header = getFromTable(res, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); in UResourceTestData() 315 settings = getFromTable(res, SETTINGS, UResourceBundle.ARRAY); in UResourceTestData() [all...] |
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
H A D | ResourceModule.java | 87 // unfortunately, actually, data can be either ARRAY or STRING in ResourceModule() 88 defaultHeader = getFromTable(info, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); in ResourceModule() 254 UResourceBundle t = getFromTable(res, key, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); in getStringArrayHelper() 262 case UResourceBundle.ARRAY: in getStringArrayHelper() 267 throw new UResourceTypeMismatchException("Only accept ARRAY and STRING types."); in getStringArrayHelper() 298 // unfortunately, actually, data can be either ARRAY or STRING in UResourceTestData() 299 data = getFromTable(res, DATA, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); in UResourceTestData() 304 // unfortunately, actually, data can be either ARRAY or STRING in UResourceTestData() 305 header = getFromTable(res, HEADER, new int[]{UResourceBundle.ARRAY, UResourceBundle.STRING}); in UResourceTestData() 314 settings = getFromTable(res, SETTINGS, UResourceBundle.ARRAY); in UResourceTestData() [all...] |
/third_party/elfutils/tests/ |
H A D | leb128.c | 93 #define TEST(ARRAY, V) \ in test_sleb() 94 if (test_one_sleb (ARRAY, sizeof (ARRAY), V) != OK) \ in test_sleb() 142 #define TEST(ARRAY, V) \ in test_uleb() 143 if (test_one_uleb (ARRAY, sizeof (ARRAY), V) != OK) \ in test_uleb()
|
/third_party/python/Lib/ctypes/test/ |
H A D | test_arrays.py | 22 int_array = ARRAY(fmt, alen) 51 CharArray = ARRAY(c_char, 3) 87 numarray = ARRAY(c_int, alen) 106 self.assertIsNot(ARRAY(c_int, 3), ARRAY(c_int, 4)) 107 self.assertIs(ARRAY(c_int, 3), ARRAY(c_int, 3))
|
/third_party/node/deps/v8/src/torque/ls/ |
H A D | json.h | 27 enum { OBJECT, ARRAY, STRING, NUMBER, BOOL, IS_NULL } tag; enumerator 67 result.tag = JsonValue::ARRAY; in From() 106 bool IsArray() const { return array_ && tag == ARRAY; } in IsArray()
|
H A D | json.cc | 43 case JsonValue::ARRAY: { in SerializeToString()
|
/third_party/vk-gl-cts/framework/delibs/debase/ |
H A D | deDefs.h | 248 # define DE_LENGTH_OF_ARRAY(ARRAY) ((int)(sizeof(deArraySizeHelper(ARRAY)))) 250 # define DE_LENGTH_OF_ARRAY(ARRAY) ((int)(sizeof(ARRAY) / sizeof((ARRAY)[0])))
|
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/Test/ |
H A D | Utils.pm | 55 =item B<alldisabled ARRAY> 57 =item B<anydisabled ARRAY> 63 ARRAY are disabled, while anydisabled returns 1 if any of them are
|
/third_party/openssl/util/perl/OpenSSL/Test/ |
H A D | Utils.pm | 55 =item B<alldisabled ARRAY> 57 =item B<anydisabled ARRAY> 63 ARRAY are disabled, while anydisabled returns 1 if any of them are
|
/third_party/node/deps/npm/node_modules/jsonparse/ |
H A D | jsonparse.js | 42 var ARRAY = C.ARRAY = 0x82; variable 367 this.mode = ARRAY; 376 if (this.mode === ARRAY) { 398 if (this.mode === ARRAY) { this.key++; this.state = VALUE; } 401 } else if (token === RIGHT_BRACKET && this.mode === ARRAY || token === RIGHT_BRACE && this.mode === OBJECT) {
|
/third_party/mksh/ |
H A D | var.c | 196 if (vp && (vp->flag & (DEFINED | ASSOC | ARRAY)) == in array_index_calc() 781 if ((set & (ARRAY | ASSOC)) == ASSOC) { in vtypeset() 783 set &= ~(ARRAY | ASSOC); in vtypeset() 785 if ((clr & (ARRAY | ASSOC)) == ASSOC) { in vtypeset() 787 clr &= ~(ARRAY | ASSOC); in vtypeset() 905 if (vp && ((vp->flag & (ARRAY | ASSOC)) == ASSOC)) in vtypeset() 919 if (new_refflag == SRF_DISABLE && (vp->flag & (ARRAY|ASSOC)) == ASSOC) in vtypeset() 922 if (vp->flag & ARRAY) { in vtypeset() 934 vp->flag &= ~ARRAY; in vtypeset() 941 vpbase = (vp->flag & ARRAY) in vtypeset() [all...] |
/third_party/mesa3d/src/mesa/main/ |
H A D | format_parser.py | 33 ARRAY = 'array' variable 341 if self.layout == ARRAY: 378 if self.layout not in (ARRAY, PACKED): 387 if self.layout not in (ARRAY, PACKED):
|
/third_party/mesa3d/src/microsoft/compiler/ |
H A D | dxil_module.c | 940 #define ARRAY { DXIL_OP_ARRAY, { 0 } } macro 962 { LITERAL(TYPE_CODE_FUNCTION), FIXED(1), ARRAY, TYPE_INDEX }, 4 965 { LITERAL(TYPE_CODE_STRUCT_ANON), FIXED(1), ARRAY, TYPE_INDEX }, 4 968 { LITERAL(TYPE_CODE_STRUCT_NAME), ARRAY, CHAR6 }, 3 971 { LITERAL(TYPE_CODE_STRUCT_NAMED), FIXED(1), ARRAY, TYPE_INDEX }, 4 1125 { LITERAL(FUNC_CODE_INST_GEP), FIXED(1), TYPE_INDEX, ARRAY, 1212 [VST_ABBREV_ENTRY_8] = { { FIXED(3), VBR(8), ARRAY, FIXED(8) }, 4 }, 1214 { LITERAL(VST_CODE_ENTRY), VBR(8), ARRAY, FIXED(7), }, 4 1217 { LITERAL(VST_CODE_ENTRY), VBR(8), ARRAY, CHAR6, }, 4 1220 { LITERAL(VST_CODE_BBENTRY), VBR(8), ARRAY, CHAR [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | ICUResourceBundleImpl.java | 49 case ARRAY: in createBundleObject() 177 return ARRAY; in getType()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/personname/ |
H A D | PersonNameFormatterImpl.java | 5 import static com.ibm.icu.util.UResourceBundle.ARRAY; 185 * @param resource An ICUResourceBundle of type STRING or ARRAY. If ARRAY, this function just returns it 192 } else if (resource.getType() == ARRAY){ in asStringArray()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | ICUResourceBundleImpl.java | 50 case ARRAY: in createBundleObject() 178 return ARRAY; in getType()
|
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | json.cc | 42 ARRAY 57 char delim = (!(size_ & 1) || container_ == Container::ARRAY) ? ',' : ':'; in StartElementTmpl() 133 state_.emplace(Container::ARRAY); 140 assert(state_.size() >= 2 && state_.top().container() == Container::ARRAY);
|
H A D | cbor.h | 193 ARRAY = 4, member in v8_crdtp::cbor::MajorType
|
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
H A D | CodedOutputStreamTest.java | 106 return OutputType.ARRAY; in getOutputType() 192 ARRAY() { in ARRAY() method 504 for (OutputType type : new OutputType[] {OutputType.ARRAY}) { in testWriteByteArrayWithOffsets() 593 OutputType.ARRAY, in testCorrectExceptionThrowWhenEncodingStringsWithoutEnoughSpace()
|
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
H A D | CharsetMBCS.java | 1454 static Buffer ARRAY(ByteBuffer indexes, int index, Class<?> itemType) { in ARRAY() method in CharsetMBCS 1727 toUTable = (IntBuffer) ARRAY(cx, EXT_TO_U_INDEX, int.class); in matchToU() 1831 CharBuffer cb = ((CharBuffer) ARRAY(cx, EXT_TO_U_UCHARS_INDEX, char.class)); in writeToU() 3648 stage12 = (CharBuffer) ARRAY(cx, EXT_FROM_U_STAGE_12_INDEX, char.class); in matchFromU() 3649 stage3 = (CharBuffer) ARRAY(cx, EXT_FROM_U_STAGE_3_INDEX, char.class); in matchFromU() 3652 stage3b = (IntBuffer) ARRAY(cx, EXT_FROM_U_STAGE_3B_INDEX, int.class); in matchFromU() 3663 fromUTableUChars = (CharBuffer) ARRAY(cx, EXT_FROM_U_UCHARS_INDEX, char.class); in matchFromU() 3664 fromUTableValues = (IntBuffer) ARRAY(cx, EXT_FROM_U_VALUES_INDEX, int.class); in matchFromU() 3837 ByteBuffer bb = ((ByteBuffer) ARRAY(cx, EXT_FROM_U_BYTES_INDEX, byte.class)); in writeFromU() 4958 fromUSectionUChar = (CharBuffer)ARRAY(c in extGetUnicodeSetString() [all...] |