Home
last modified time | relevance | path

Searched refs:fieldName (Results 1 – 3 of 3) sorted by relevance

/development/tools/winscope/src/parsers/operations/
Dadd_defaults.ts39 for (const fieldName in this.protoType.fields) { constant
42 !this.propertyAllowlist.includes(fieldName)
47 if (this.propertyDenylist && this.propertyDenylist.includes(fieldName)) {
52 !Object.prototype.hasOwnProperty.call(this.protoType.fields, fieldName)
57 const field = this.protoType.fields[fieldName]; constant
58 let existingNode = value.getChildByName(fieldName);
115 fieldName,
/development/tools/winscope/src/parsers/
Dtampered_message_type.ts29 for (const fieldName of Object.keys(protoType.fields)) { constant
30 const field = protoType.fields[fieldName]; constant
/development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
DSimpleGeofenceStore.java120 private String getGeofenceFieldKey(String id, String fieldName) { in getGeofenceFieldKey() argument
121 return KEY_PREFIX + "_" + id + "_" + fieldName; in getGeofenceFieldKey()