/third_party/protobuf/conformance/ |
H A D | ConformanceJava.java | 70 // Returns -1 on EOF (the actual values will always be positive). 169 for (int i = 0; i < BinaryDecoderType.values().length; i++) { in parseBinary() 177 for (int i = 0; i < BinaryDecoderType.values().length; ++i) { in parseBinary() 179 //= BinaryDecoderType.values()[i].parseProto3(bytes); in parseBinary() 180 messages.set(i, decoder.decode(bytes, BinaryDecoderType.values()[i], parser, extensions)); in parseBinary() 191 for (int i = 0; i < BinaryDecoderType.values().length; ++i) { in parseBinary() 192 sb.append(BinaryDecoderType.values()[i].name()); in parseBinary() 224 sb.append(BinaryDecoderType.values()[i].name()) in parseBinary() 226 .append(BinaryDecoderType.values()[j].name()) in parseBinary()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff-interp-common.hh | 554 values.init (); in init() 556 void fini () { values.fini_deep (); } in fini() 560 VAL *val = values.push (); in add_op() 568 VAL *val = values.push (v); in add_op() 581 unsigned get_count () const { return values.length; } in get_count() 582 const VAL &get_value (unsigned int i) const { return values[i]; } in get_value() 586 hb_vector_t<VAL> values; member
|
/third_party/typescript/tests/baselines/reference/ |
H A D | isomorphicMappedTypeInference.js | 34 function assignBoxified<T>(obj: Boxified<T>, values: T) { 35 for (let k in values) { 36 obj[k].value = values[k]; 203 function assignBoxified(obj, values) {
204 for (var k in values) {
205 obj[k].value = values[k];
311 declare function assignBoxified<T>(obj: Boxified<T>, values: T): void;
|
H A D | variadicTuples2.js | 80 function pipe<T extends readonly unknown[]>(...args: [...T, (...values: T) => void]) { 81 const callback = args[args.length - 1] as (...values: T) => void; 82 const values = args.slice(0, -1) as unknown as T; 83 callback(...values); 183 var values = args.slice(0, -1);
184 callback.apply(void 0, values);
261 declare function pipe<T extends readonly unknown[]>(...args: [...T, (...values: T) => void]): void;
|
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
H A D | TimeUtilTest.java | 83 private final Timestamp[] values; field in TimeUtilTest.ParseTimestampThread 85 public ParseTimestampThread(String[] strings, Timestamp[] values) { in ParseTimestampThread() argument 87 this.values = values; in ParseTimestampThread() 101 if (result.getSeconds() != values[index].getSeconds() in run() 102 || result.getNanos() != values[index].getNanos()) { in run() 104 "Actual result: " + result.toString() + ", expected: " + values[index].toString(); in run() 268 // which includes negative values. in testDurationStringFormat() 469 // Divisions (with values larger than Long.MAX_VALUE in nanoseconds). in testTimeOperations() 477 // Divisions involving negative values in testTimeOperations() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/declaration/common/ |
H A D | declaration.cpp | 2279 auto values = borderImageJson->GetValue(DOM_VALUES)->GetArrayItem(0); 2281 if (values->Contains("url")) { 2282 SetBorderImageUrl(values, declaration); 2284 SetBorderImageGradient(values, declaration); 2289 void Declaration::SetBorderImageGradient(const std::unique_ptr<JsonValue>& values, Declaration& declaration) 2293 if (values->Contains(DOM_GRADIENT_TYPE) && values->GetValue(DOM_GRADIENT_TYPE)->IsString()) { 2294 SetBorderImageGradientType(values->GetValue(DOM_GRADIENT_TYPE)->GetString(), declaration); 2296 if (values->Contains(DOM_GRADIENT_DIRECTIONS) && values [all...] |
/applications/standard/calendardata/calendarmanager/native/src/ |
H A D | data_share_helper_manager.cpp | 41 int DataShareHelperManager::BatchInsert(const Uri &uri, const std::vector<DataShare::DataShareValuesBucket> &values) in BatchInsert() argument 47 return dataShareHelper->BatchInsert(const_cast<Uri &>(uri), values); in BatchInsert()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/stylemgr/test/unittest/common/ |
H A D | stylemgr_tdd_test.h | 49 void ReleaseTestResources(const jerry_value_t* values, 62 const uint16_t values[]) const;
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/include/ |
H A D | medialibrary_uripermission_operations.h | 43 const std::vector<NativeRdb::ValuesBucket> &values); 46 const std::vector<DataShareValuesBucket> &values);
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/ |
H A D | rdb_watcher.cpp | 29 int32_t RdbWatcher::OnChange(const Origin &origin, const PRIFields &primaryFields, ChangeInfo &&values) in OnChange() argument 44 notifier->OnChange(rdbOrigin, primaryFields, std::move(values)); in OnChange()
|
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/progs/ |
H A D | test_ringbuf_multi.c | 26 __array(values, struct ringbuf_map); 28 .values = {
|
/kernel/linux/linux-5.10/drivers/gpu/drm/arm/display/include/ |
H A D | malidp_io.h | 41 malidp_write_group(u32 __iomem *base, u32 offset, int num, const u32 *values) in malidp_write_group() argument 46 malidp_write32(base, offset + i * 4, values[i]); in malidp_write_group()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/arm/display/include/ |
H A D | malidp_io.h | 41 malidp_write_group(u32 __iomem *base, u32 offset, int num, const u32 *values) in malidp_write_group() argument 46 malidp_write32(base, offset + i * 4, values[i]); in malidp_write_group()
|
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
H A D | linked_list.h | 43 __array(values, struct array_map); 45 .values = {
|
H A D | test_global_func_args.c | 18 } values SEC(".maps"); 22 bpf_map_update_elem(&values, &index, &value, 0); in save_value()
|
H A D | timer_mim_reject.c | 31 __array(values, struct inner_map); 33 .values = { [ARRAY_KEY] = &inner_htab },
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | PersonName.java | 13 * above. A concrete SimplePersonName object that does store the field values directly 23 // Identifiers used to request field values from the PersonName object 89 * guess wrong. When used, the only valid values are "givenFirst" and "surnameFirst". 120 for (NameField field : values()) { in forString() 233 for (FieldModifier modifier : values()) { in forString()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/testing/ |
H A D | ResultSubject.java | 38 public final void hasValues(String... values) { in hasValues() argument 39 hasValueListThat().containsExactlyElementsIn(values); in hasValues()
|
/third_party/mesa3d/src/egl/generate/ |
H A D | eglFunctionList.py | 35 The values in the eglData dictionary are: 37 How to select a vendor library. See "Method values" below. 60 method values: 87 values = { 96 return (name, values)
|
/third_party/node/test/async-hooks/ |
H A D | test-async-await.js | 66 for (const initState of promisesInitState.values()) { 73 for (const executionState of promisesExecutionState.values()) {
|
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/ |
H A D | argument.js | 81 * Set the custom handler for processing CLI command arguments into argument values. 95 * @param {string[]} values 99 choices(values) { 100 this.argChoices = values.slice();
|
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/utils/ |
H A D | guard.js | 24 Object.values(value).every((v) => typeof v === 'string')); 31 Object.values(value).every((v) => typeof v === 'object' && v !== null));
|
/third_party/python/Tools/peg_generator/scripts/ |
H A D | joinstats.py | 60 table.sort(key=lambda values: -values[1])
|
/third_party/python/Lib/idlelib/ |
H A D | dynoption.py | 12 def __init__(self, master, variable, value, *values, **kwargs): 14 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | data_structures.py | 12 """A dictionary where the values are sets of strings. 43 def values(self): member in DictOfStringSets 44 """Return an iterator over values.""" 45 return self.d.values()
|