/development/tools/ota_analysis/src/ |
D | App.vue | 2 <v-app> 3 <v-app-bar 7 <v-app-bar-title> OTA Analyzer </v-app-bar-title> 8 <v-spacer /> 9 <v-btn 10 v-for="link in links" 17 </v-btn> 18 </v-app-bar> 19 <v-main> 20 <v-container fluid> [all …]
|
/development/tools/otagui/src/ |
D | App.vue | 2 <v-app> 3 <v-app-bar 7 <v-app-bar-title> OTA Dashboard </v-app-bar-title> 8 <v-spacer /> 9 <v-btn 10 v-for="link in links" 17 </v-btn> 18 </v-app-bar> 19 <v-main> 20 <v-container fluid> [all …]
|
/development/tools/ota_analysis/src/components/ |
D | PayloadComposition.vue | 3 v-model="partitionInclude" 6 <div v-if="echartsData"> 9 <v-divider /> 10 <v-row> 11 <v-col 15 <v-btn 20 </v-btn> 21 </v-col> 22 <v-col 26 <v-btn [all …]
|
D | PayloadDetail.vue | 7 <v-divider /> 8 <div v-if="payload"> 10 <v-row 11 v-if="payload.manifest" 14 <v-col 15 v-for="partition in payload.manifest.partitions" 20 <v-card 27 </v-card> 28 </v-col> 29 </v-row> [all …]
|
D | BasicInfo.vue | 4 v-if="zipFile" 5 v-bind="$attrs" 17 v-if="payload && payload.metadata" 18 v-bind="$attrs" 22 v-for="formatter in MetadataFormat" 32 <div v-if="payload && payload.manifest"> 37 <span v-if="payload.preBuild"> 40 <span v-else> ❌ </span> 44 <span v-if="payload.manifest.partialUpdate"> ✅ </span> 45 <span v-else> ❌ </span> [all …]
|
D | PartialCheckbox.vue | 2 <v-btn 9 </v-btn> 10 <v-row class="mb-5"> 11 <v-col 12 v-for="label in labels" 23 <label v-if="label"> {{ label }} </label> 24 </v-col> 25 </v-row>
|
/development/tools/otagui/src/components/ |
D | FileList.vue | 6 v-bind="$attrs" 10 v-for="build in modelValue" 17 <v-row 20 <v-col 24 <v-btn 30 </v-btn> 31 </v-col> 32 <v-col 36 <v-btn 37 v-if="movable" [all …]
|
D | OTAOptions.vue | 2 <v-row> 3 <v-col 4 v-for="flag in basicFlags" 10 v-model="otaConfig[flag.key]" 13 </v-col> 14 </v-row> 15 <div v-if="otaConfig.isPartial"> 16 <v-divider /> 18 <div v-if="targetDetails.length!==0"> 20 v-model="otaConfig.partial" [all …]
|
D | JobConfiguration.vue | 2 <ul v-if="job"> 4 <li v-if="job.finish_time > 0"> 7 <li v-if="job.isIncremental"> 10 <li v-if="job.isIncremental && buildDetail"> 14 <li v-if="buildDetail"> 17 <li v-if="job.isPartial">
|
/development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/ |
D | ExpandingListView.java | 188 View v = getChildAt(i); 189 v.setHasTransientState(true); 190 oldCoordinates.put(v, new int[] {v.getTop(), v.getBottom()}); 233 View v = getChildAt(i); 234 int height = v.getBottom() - Math.max(0, v.getTop()); 275 for (View v: oldCoordinates.keySet()) { 276 int[] old = oldCoordinates.get(v); 277 v.setTop(old[0]); 278 v.setBottom(old[1]); 279 if (v.getParent() == null) { [all …]
|
/development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/ |
D | ListViewRemovalAnimation.java | 76 public boolean onTouch(final View v, MotionEvent event) { 91 v.setAlpha(1); 92 v.setTranslationX(0); 97 float x = event.getX() + v.getTranslationX(); 104 mBackgroundContainer.showBackground(v.getTop(), v.getHeight()); 108 v.setTranslationX((x - mDownX)); 109 v.setAlpha(1 - deltaXAbs / v.getWidth()); 117 float x = event.getX() + v.getTranslationX(); 124 if (deltaXAbs > v.getWidth() / 4) { 126 fractionCovered = deltaXAbs / v.getWidth(); [all …]
|
/development/tools/ota_analysis/src/views/ |
D | PackageAnalysis.vue | 2 <v-row> 3 <v-col 12 v-if="zipFile && payload" 16 </v-col> 17 <v-divider 20 <v-col 25 v-if="zipFile && payload.manifest" 28 </v-col> 29 </v-row>
|
D | Demo.vue | 2 <v-row> 3 <v-col 8 v-if="zipFile && payload" 12 </v-col> 13 <v-divider 16 <v-col 21 v-if="zipFile && payload.manifest" 25 </v-col> 26 </v-row>
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | Animation.java | 77 public void onClick(View v) { 90 public void onClick(View v) { 104 public void onClick(View v) { 119 public void onClick(View v) { 134 public void onClick(View v) { 139 v, 0, 0, v.getWidth(), v.getHeight()); 146 public void onClick(View v) { 152 v.setDrawingCacheEnabled(true); 153 v.setPressed(false); 154 v.refreshDrawableState(); [all …]
|
D | FragmentHideShow.java | 59 public void onClick(View v) { in addShowHideListener() 81 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView() local 82 View tv = v.findViewById(R.id.msg); in onCreateView() 86 mTextView = (TextView)v.findViewById(R.id.saved); in onCreateView() 90 return v; in onCreateView() 107 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView() local 108 View tv = v.findViewById(R.id.msg); in onCreateView() 115 ((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true); in onCreateView() 116 return v; in onCreateView()
|
/development/tools/cargo_embargo/src/ |
D | bp.rs | 83 pub fn set<T: Into<BpValue>>(&mut self, k: &str, v: T) { in set() 84 self.map.insert(k.to_string(), v.into()); in set() 87 pub fn set_if_nonempty<T: Into<BpValue>>(&mut self, k: &str, v: Vec<T>) { in set_if_nonempty() 88 if !v.is_empty() { in set_if_nonempty() 89 self.set(k, v); in set_if_nonempty() 94 let v = in object() localVariable 96 match v { in object() 97 BpValue::Object(v) => v, in object() 152 for (k, v) in props { in write() 155 v.write(w)?; in write() [all …]
|
/development/samples/browseable/RecyclerView/src/com.example.android.recyclerview/ |
D | CustomAdapter.java | 42 public ViewHolder(View v) { in ViewHolder() argument 43 super(v); in ViewHolder() 45 v.setOnClickListener(new View.OnClickListener() { in ViewHolder() 47 public void onClick(View v) { in ViewHolder() 51 textView = (TextView) v.findViewById(R.id.textView); in ViewHolder() 74 View v = LayoutInflater.from(viewGroup.getContext()) in onCreateViewHolder() local 77 return new ViewHolder(v); in onCreateViewHolder()
|
/development/samples/ShortcutDemo/common/src/com/example/android/pm/shortcutdemo/ |
D | ShortcutAdapter.java | 142 final View v = view.findViewById(getLaunchId()); in bindView() local 143 v.setVisibility(View.GONE); in bindView() 145 v.setOnClickListener(this); in bindView() 146 v.setVisibility(View.VISIBLE); in bindView() 150 final Button v = (Button) view.findViewById(getAction2Id()); in bindView() local 151 v.setVisibility(View.GONE); in bindView() 153 v.setOnClickListener(this); in bindView() 154 v.setVisibility(View.VISIBLE); in bindView() 155 v.setText(getAction2Text(si)); in bindView() 192 public void onClick(View v) { in onClick() argument [all …]
|
/development/samples/browseable/DirectorySelection/src/com.example.android.directoryselection/ |
D | DirectoryEntryAdapter.java | 44 public ViewHolder(View v) { in ViewHolder() argument 45 super(v); in ViewHolder() 46 mFileName = (TextView) v.findViewById(R.id.textview_filename); in ViewHolder() 47 mMimeType = (TextView) v.findViewById(R.id.textview_mimetype); in ViewHolder() 48 mImageView = (ImageView) v.findViewById(R.id.entry_image); in ViewHolder() 75 View v = LayoutInflater.from(viewGroup.getContext()) in onCreateViewHolder() local 77 return new ViewHolder(v); in onCreateViewHolder()
|
/development/samples/browseable/ScopedDirectoryAccess/src/com.example.android.scopeddirectoryaccess/ |
D | DirectoryEntryAdapter.java | 31 View v = LayoutInflater.from(viewGroup.getContext()) in onCreateViewHolder() local 33 return new ViewHolder(v); in onCreateViewHolder() 67 public ViewHolder(View v) { in ViewHolder() argument 68 super(v); in ViewHolder() 69 fileName = (TextView) v.findViewById(R.id.textview_filename); in ViewHolder() 70 mimeType = (TextView) v.findViewById(R.id.textview_mimetype); in ViewHolder() 71 imageView = (ImageView) v.findViewById(R.id.imageview_entry); in ViewHolder()
|
/development/samples/browseable/AppUsageStatistics/src/com.example.android.appusagestatistics/ |
D | UsageListAdapter.java | 48 public ViewHolder(View v) { in ViewHolder() argument 49 super(v); in ViewHolder() 50 mPackageName = (TextView) v.findViewById(R.id.textview_package_name); in ViewHolder() 51 mLastTimeUsed = (TextView) v.findViewById(R.id.textview_last_time_used); in ViewHolder() 52 mAppIcon = (ImageView) v.findViewById(R.id.app_icon); in ViewHolder() 73 View v = LayoutInflater.from(viewGroup.getContext()) in onCreateViewHolder() local 75 return new ViewHolder(v); in onCreateViewHolder()
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
D | WiFiDirectServicesList.java | 46 public void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument 50 ((TextView) v.findViewById(android.R.id.text2)).setText("Connecting"); in onListItemClick() 66 View v = convertView; in getView() local 67 if (v == null) { in getView() 70 v = vi.inflate(android.R.layout.simple_list_item_2, null); in getView() 74 TextView nameText = (TextView) v in getView() 80 TextView statusText = (TextView) v in getView() 84 return v; in getView()
|
/development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/ |
D | FingerprintAuthenticationDialogFragment.java | 75 View v = inflater.inflate(R.layout.fingerprint_dialog_container, container, false); in onCreateView() local 76 mCancelButton = (Button) v.findViewById(R.id.cancel_button); in onCreateView() 84 mSecondDialogButton = (Button) v.findViewById(R.id.second_dialog_button); in onCreateView() 95 mFingerprintContent = v.findViewById(R.id.fingerprint_container); in onCreateView() 96 mBackupContent = v.findViewById(R.id.backup_container); in onCreateView() 97 mPassword = (EditText) v.findViewById(R.id.password); in onCreateView() 99 mPasswordDescriptionTextView = (TextView) v.findViewById(R.id.password_description); in onCreateView() 101 v.findViewById(R.id.use_fingerprint_in_future_check); in onCreateView() 103 v.findViewById(R.id.new_fingerprint_enrolled_description); in onCreateView() 106 (ImageView) v.findViewById(R.id.fingerprint_icon), in onCreateView() [all …]
|
/development/samples/BackupRestore/src/com/example/android/backuprestore/ |
D | BackupRestoreActivity.java | 164 Log.v(TAG, "datafile exists"); in populateUI() 168 Log.v(TAG, " mayo=" + addMayo in populateUI() 174 Log.v(TAG, "creating default datafile"); in populateUI() 201 Log.v(TAG, "New radio item selected: " + checkedId); in populateUI() 211 Log.v(TAG, "Checkbox toggled: " + buttonView); in populateUI() 229 Log.v(TAG, "NEW STATE: mayo=" + addMayo in writeDataToFileLocked() 259 public void onRestoreButtonClick(View v) { in onRestoreButtonClick() argument 260 Log.v(TAG, "Requesting restore of our most recent data"); in onRestoreButtonClick() 265 Log.v(TAG, "Restore finished, error = " + error); in onRestoreButtonClick()
|
/development/samples/devbytes/animation/WindowAnimations/src/com/example/android/windowanimations/ |
D | WindowAnimations.java | 51 public void onClick(View v) { in onCreate() 62 public void onClick(View v) { in onCreate() 79 public void onClick(View v) { in onCreate() 83 v, 0, 0, v.getWidth(), v.getHeight()).toBundle(); in onCreate() 93 public void onClick(View v) { in onCreate()
|