HomeSort by relevance Sort by last modified time
    Searched defs:indicator (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
matrix_set_diag_op.cc 63 // Create an indicator tensor that is true only on the diagonal.
68 auto indicator = builder->Eq(iota_m, variable
71 indicator = builder->Broadcast(indicator, batch_shape.dim_sizes());
83 auto output = builder->Select(indicator, diag, input);
matrix_band_part_op.cc 80 auto indicator = builder->And(builder->Le(builder->Neg(num_lower), offset), variable
82 indicator = builder->Broadcast(indicator, batch_shape.dim_sizes());
86 indicator, input,
  /external/tensorflow/tensorflow/contrib/bayesflow/python/kernel_tests/
monte_carlo_test.py 84 def indicator(x): function in function:ExpectationImportanceSampleTest.test_multivariate_normal_prob_positive_product_of_components
89 f=indicator, log_p=p.log_prob, sampling_dist_q=q, n=n, seed=42)
  /hardware/qcom/gps/msm8909w_3100/android/location_api/
MeasurementAPIClient.cpp 204 uint8_t indicator = local
207 indicator |= IGnssMeasurementCallback::GnssMultipathIndicator::INDICATOR_PRESENT;
209 indicator |= IGnssMeasurementCallback::GnssMultipathIndicator::INDICATIOR_NOT_PRESENT;
211 static_cast<IGnssMeasurementCallback::GnssMultipathIndicator>(indicator);
  /hardware/qcom/gps/msm8998/android/location_api/
GnssMeasurementAPIClient.cpp 227 uint8_t indicator = local
230 indicator |= IGnssMeasurementCallback::GnssMultipathIndicator::INDICATOR_PRESENT;
232 indicator |= IGnssMeasurementCallback::GnssMultipathIndicator::INDICATIOR_NOT_PRESENT;
234 static_cast<IGnssMeasurementCallback::GnssMultipathIndicator>(indicator);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
JoystickView.java 69 Drawable indicator = fPressed ? mJoystickPressed : mJoystickNormal; local
74 Utilities.centerAround(x, y, indicator);
75 indicator.draw(canvas);
  /frameworks/av/media/libstagefright/rtsp/
AAVCAssembler.cpp 189 unsigned indicator = data[0]; local
191 CHECK((indicator & 0x1f) == 28);
243 || data[0] != indicator
  /external/libxcam/xcore/interface/
stitcher.cpp 612 int32_t indicator = 0; local
631 indeices.push_back (indicator++);
639 indeices.push_back (indicator++);
  /external/python/cpython3/Modules/_decimal/tests/
randdec.py 38 # indicator ::= 'e' | 'E'
41 # exponent-part ::= indicator [sign] digits
60 def indicator(): function
87 return ''.join((indicator(), sign(), expdigits(maxexp)))
147 return ''.join((str(sign*coeff), indicator(), str(exp)))
  /external/syslinux/gpxe/src/arch/i386/image/
eltorito.c 45 /** Boot record indicator; must be 0 */
51 /** Boot system indicator; must be "EL TORITO SPECIFICATION" */
82 /** Boot indicator
86 uint8_t indicator; member in struct:eltorito_boot_entry
105 /** Boot indicator for a bootable ISO image */
240 if ( boot_entry->indicator != ELTORITO_BOOTABLE ) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
SignalTileView.java 104 private void layoutIndicator(View indicator) {
109 left = right - indicator.getMeasuredWidth();
112 right = left + indicator.getMeasuredWidth();
114 indicator.layout(
116 mIconFrame.getBottom() - indicator.getMeasuredHeight(),
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
ActionBarDrawerToggle.java 54 * indicator with the state of the linked DrawerLayout after <code>onRestoreInstanceState</code>
85 * Set the Action Bar's up indicator drawable and content description.
87 * @param upDrawable - Drawable to set as up indicator
93 * Set the Action Bar's up indicator content description.
227 * Synchronize the state of the drawer indicator/affordance with the linked DrawerLayout.
292 * Set the up indicator to display when the drawer indicator is not
298 * @param indicator A drawable to use for the up indicator, or null to use
302 public void setHomeAsUpIndicator(Drawable indicator) {
328 Drawable indicator = null; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropDrawingUtils.java 75 public static void drawIndicator(Canvas canvas, Drawable indicator, int indicatorSize,
79 indicator.setBounds(left, top, left + indicatorSize, top + indicatorSize);
80 indicator.draw(canvas);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
types_traits.hpp 65 typedef integral_constant<int, __simple> indicator; typedef in struct:__gnu_pbds::detail::no_throw_copies
72 typedef integral_constant<int, is_simple<Key>::value> indicator; typedef in struct:__gnu_pbds::detail::no_throw_copies
279 typedef typename __nothrowcopy::indicator no_throw_indicator;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/
types_traits.hpp 65 typedef integral_constant<int, __simple> indicator; typedef in struct:__gnu_pbds::detail::no_throw_copies
72 typedef integral_constant<int, is_simple<Key>::value> indicator; typedef in struct:__gnu_pbds::detail::no_throw_copies
279 typedef typename __nothrowcopy::indicator no_throw_indicator;
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowCoverageServlet.java 111 String indicator = ""; local
117 indicator = "<div class=\"right indicator " + color + "\">" + pct + "%</div>"
120 indicators.add(indicator);
  /external/jline/src/src/main/java/jline/
WindowsTerminal.java 326 int indicator = readCharacter(in); local
331 if (indicator == SPECIAL_KEY_INDICATOR
332 || indicator == NUMPAD_KEY_INDICATOR) {
361 } else if (indicator > 128) {
364 replayStream.setInput(indicator, in);
366 indicator = replayReader.read();
370 return indicator;
  /external/autotest/frontend/client/src/autotest/common/table/
DynamicTable.java 88 // we add a <span> with a unique ID to hold the sort indicator
104 for (SortIndicator indicator : sortIndicators) {
105 if (columns[indicator.column][COL_NAME].equals(firstSpec.getField())) {
106 indicator.sortOn(firstSpec.getDirection());
108 indicator.sortOff();
  /frameworks/support/legacy/core-ui/src/main/java/androidx/legacy/app/
ActionBarDrawerToggle.java 61 * {@link Activity#onPostCreate(android.os.Bundle) onPostCreate} to synchronize the indicator
96 * @return Up indicator drawable as defined in the Activity's theme, or null if one is not
103 * Set the Action Bar's up indicator drawable and content description.
105 * @param upDrawable - Drawable to set as up indicator
111 * Set the Action Bar's up indicator content description.
149 * The provided drawer indicator drawable will animate slightly off-screen as the drawer
158 * @param drawerImageRes A Drawable resource to use as the drawer indicator
180 * The provided drawer indicator drawable will animate slightly off-screen as the drawer
189 * @param animate True to animate the drawer indicator along with the drawer's position.
191 * @param drawerImageRes A Drawable resource to use as the drawer indicator
279 Drawable indicator = null; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
Spline.java 141 private void drawHandles(Canvas canvas, Drawable indicator, float centerX, float centerY) {
144 indicator.setBounds(left, top, left + mCurveHandleSize, top + mCurveHandleSize);
145 indicator.draw(canvas);
  /system/bt/bta/ag/
bta_ag_cmd.cc 183 size_t indicator; member in struct:__anon1215
186 /* callsetup indicator value lookup table */
199 return callsetup_indicator_map[i].indicator;
301 * Description Send an indicator CIEV result code.
312 /* If the indicator is masked out, just return */
571 /* Send indicator function tracks if the values have actually changed */
620 * Description This function returns the index of an empty HF indicator
623 * Returns int : index of the empty HF indicator structure or
624 * -1 if no empty indicator
640 * Description This function returns the index of the HF indicator
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
ScannerImpl.java 181 * A simple key is a key that is not denoted by the '?' indicator.
188 * simple key, we try to locate the corresponding ':' indicator.
315 // Is it the block entry indicator?
330 // Is it the flow sequence start indicator?
334 // Is it the flow mapping start indicator?
338 // Is it the flow sequence end indicator?
342 // Is it the flow mapping end indicator?
346 // Is it the flow entry indicator?
349 // see block entry indicator above
351 // Is it the key indicator
1429 char indicator = reader.peek(); local
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
wifilogger_diag.h 235 u32 indicator; member in struct:__anon52601
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
ActionAdapter.java 309 Drawable indicator = action.getIndicator(mContext); local
310 if (indicator != null) {
311 indicatorView.setImageDrawable(indicator);
  /frameworks/base/core/java/android/widget/
ExpandableListView.java 45 * Expandable lists are able to show an indicator beside each item to display
135 /** Left bound for drawing the indicator. */
138 /** Right bound for drawing the indicator. */
141 /** Start bound for drawing the indicator. */
144 /** End bound for drawing the indicator. */
148 * Left bound for drawing the indicator of a child. Value of
154 * Right bound for drawing the indicator of a child. Value of
160 * Start bound for drawing the indicator of a child. Value of
166 * End bound for drawing the indicator of a child. Value of
172 * Denotes when a child indicator should inherit this bound from the generi
377 Drawable indicator; local
477 Drawable indicator; local
    [all...]

Completed in 803 milliseconds

1 2 3 4 5 6 7 8 910