/third_party/vixl/src/ |
H A D | cpu-features.h | 301 CPUFeatures(T first, U... others) : features_{} { in CPUFeatures() argument 302 Combine(first, others...); 342 void Combine(T first, U... others) { in Combine() argument 344 Combine(others...); in Combine() 356 void Remove(T first, U... others) { in Remove() argument 358 Remove(others...); in Remove() 364 CPUFeatures With(T... others) const { in With() 366 f.Combine(others...); in With() 371 CPUFeatures Without(T... others) const { in Without() 373 f.Remove(others in Without() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | jsDeclarationsExportAssignmentWithKeywordName.js | 6 others: ['strs'] 16 others: ['strs']
26 const others: string[];
|
H A D | recursiveTypeAliasWithSpreadConditionalReturnNotCircular.js | 4 zip1<O extends Array<Option<any>>>(...others: O): Option<[T, ...UnzipOptionArray1<O>]>; 6 zip2<O extends Array<Option<any>>>(...others: O): Option<[T, ...UnzipOptionArray2<O>]>; 8 zip3<O extends Array<Option<any>>>(...others: O): Option<[T, ...UnzipOptionArray3<O>]>;
|
H A D | parserharness.js | 860 public assertSubtypeOf(others: any) { 861 others = this.normalizeToArray(others); 863 for (var i = 0; i < others.length; i++) { 864 if (!this.isSubtypeOf(others[i])) { 865 throw new Error("Expected " + this.type + " to be a subtype of " + others[i].type); 870 public assertNotSubtypeOf(others: any) { 871 others = this.normalizeToArray(others); 873 for (var i = 0; i < others [all...] |
/third_party/python/Lib/test/ |
H A D | test_unicode_file_functions.py | 133 others = set() 135 others |= set(normalize(nf, file) for file in files) 136 others -= files 137 for name in others:
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | demo.bat | 3 REM * Copyright (C) 2016 and later: Unicode, Inc. and others. 8 REM * others. All Rights Reserved. *
|
/third_party/icu/icu4c/source/samples/uresb/ |
H A D | resources.mak | 1 ## Copyright (C) 2016 and later: Unicode, Inc. and others. 5 ## Corporation and others. All Rights Reserved.
|
/third_party/icu/icu4c/source/test/perf/unisetperf/draft/ |
H A D | span16perf.bat | 1 rem Copyright (C) 2016 and later: Unicode, Inc. and others. 5 rem others. All Rights Reserved.
|
H A D | contperf.bat | 1 rem Copyright (C) 2016 and later: Unicode, Inc. and others. 5 rem others. All Rights Reserved.
|
H A D | span8perf.bat | 1 rem Copyright (C) 2016 and later: Unicode, Inc. and others. 5 rem others. All Rights Reserved.
|
/third_party/icu/icu4c/source/test/perf/utrie2perf/ |
H A D | utrie2perf.bat | 1 rem Copyright (C) 2016 and later: Unicode, Inc. and others. 4 rem Copyright (C) 2008, International Business Machines Corporation and others.
|
/third_party/skia/third_party/externals/icu/source/samples/uresb/ |
H A D | resources.mak | 1 ## Copyright (C) 2016 and later: Unicode, Inc. and others. 5 ## Corporation and others. All Rights Reserved.
|
/third_party/python/Mac/PythonLauncher/ |
H A D | FileSettings.h | 20 - (NSString *) others; 36 NSString *others; // other options variable
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | indic.bat | 3 REM * Copyright (C) 2016 and later: Unicode, Inc. and others. * 8 REM * others. All Rights Reserved. *
|
H A D | varsub.bat | 3 # * Copyright (C) 2016 and later: Unicode, Inc. and others. * 8 # * others. All Rights Reserved. *
|
/third_party/python/Lib/idlelib/ |
H A D | searchbase.py | 52 "Make dialog visible on top of others and ready to use." 156 '''Return (frame, others) for testing. 163 others = [(1, 'Up'), (0, 'Down')] 164 for val, label in others: 167 return frame, others
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmCrossStageInterfaceTests.cpp | 635 , others (o) in Decorations() 639 string others; member 1105 +decorations[0].others+ in initPrograms() 1293 +decorations[0].others+ in initPrograms() 1634 +decorations[0].others+ in initPrograms() 2150 +decorations[0].others+ in initPrograms() 2309 +decorations[0].others+ in initPrograms() 2589 +decorations[0].others+ in initPrograms()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmCrossStageInterfaceTests.cpp | 635 , others (o) in Decorations() 639 string others; member 1105 +decorations[0].others+ in initPrograms() 1293 +decorations[0].others+ in initPrograms() 1634 +decorations[0].others+ in initPrograms() 2150 +decorations[0].others+ in initPrograms() 2309 +decorations[0].others+ in initPrograms() 2589 +decorations[0].others+ in initPrograms()
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/testing/ |
H A D | TestNumberingScheme.java | 78 String cc, PhoneRegion main, PhoneRegion... others) { in forCallingCode() 79 return new TestNumberingScheme(DigitSequence.of(cc), main, ImmutableSet.copyOf(others)); in forCallingCode() 111 DigitSequence cc, PhoneRegion main, ImmutableSet<PhoneRegion> others) { in TestNumberingScheme() 112 checkArgument(!others.contains(main), "duplicate regions"); in TestNumberingScheme() 115 this.otherRegions = others; in TestNumberingScheme() 116 this.regionMap = Stream.concat(Stream.of(main), others.stream()) in TestNumberingScheme() 77 forCallingCode( String cc, PhoneRegion main, PhoneRegion... others) forCallingCode() argument 110 TestNumberingScheme( DigitSequence cc, PhoneRegion main, ImmutableSet<PhoneRegion> others) TestNumberingScheme() argument
|
/third_party/icu/icu4c/source/samples/ufortune/resources/ |
H A D | fortune_resources.mak | 1 # Copyright (C) 2016 and later: Unicode, Inc. and others. 4 # Copyright (c) 2001-2009 IBM, Inc. and others
|
/third_party/icu/icu4c/source/test/testdata/ |
H A D | testdata.mak | 1 # Copyright (C) 2016 and later: Unicode, Inc. and others. 5 #* and others. All Rights Reserved.
|
/third_party/skia/third_party/externals/icu/source/samples/ufortune/resources/ |
H A D | fortune_resources.mak | 1 # Copyright (C) 2016 and later: Unicode, Inc. and others. 4 # Copyright (c) 2001-2009 IBM, Inc. and others
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jchuff.c | 936 int others[257]; /* next symbol in current branch of tree */ in jpeg_gen_optimal_table() local 946 others[i] = -1; /* init links to empty */ in jpeg_gen_optimal_table() 989 while (others[c1] >= 0) { in jpeg_gen_optimal_table() 990 c1 = others[c1]; in jpeg_gen_optimal_table() 994 others[c1] = c2; /* chain c2 onto c1's tree branch */ in jpeg_gen_optimal_table() 998 while (others[c2] >= 0) { in jpeg_gen_optimal_table() 999 c2 = others[c2]; in jpeg_gen_optimal_table()
|
/third_party/toybox/toys/posix/ |
H A D | getconf.c | 170 struct config others[] = { variable 192 struct config *configs[] = {sysconfs, pathconfs, confstrs, limits, others}, in getconf_main() 195 ARRAY_LEN(confstrs), ARRAY_LEN(limits), ARRAY_LEN(others)}; in getconf_main()
|
/third_party/icu/icu4c/source/tools/genren/ |
H A D | genren.pl | 2 # Copyright (C) 2016 and later: Unicode, Inc. and others. 7 #* Corporation and others. All Rights Reserved. 74 // © 2016 and later: Unicode, Inc. and others. 79 * Corporation and others. All Rights Reserved.
|