HomeSort by relevance Sort by last modified time
    Searched refs:area (Results 76 - 100 of 541) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r11/platforms/android-17/arch-mips/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-17/arch-x86/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-18/arch-arm/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-18/arch-mips/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-18/arch-x86/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-19/arch-arm/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-19/arch-mips/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-19/arch-x86/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-3/arch-arm/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-4/arch-arm/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-5/arch-arm/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-8/arch-arm/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-9/arch-arm/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-9/arch-mips/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/sys/
_system_properties.h 49 #define TOC_TO_INFO(area, toc) ((prop_info*) (((char*) area) + ((toc) & 0xFFFFFF)))
  /external/iproute2/lib/
dnet_ntop.c 39 u_int16_t addr, area; local
45 area = addr >> 10;
55 if (do_digit(str + pos, &area, 10, &pos, len, &started))
58 if (do_digit(str + pos, &area, 1, &pos, len, &started))
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsCbLocation.java 24 * For GSM/UMTS, the Location Area and Cell ID are set when the broadcast
25 * geographical scope is cell wide or Location Area wide. For CDMA, the
86 * Returns the GSM location area code, or UMTS service area code.
87 * @return location area code, -1 if unknown, 0xffff max legal value
127 * Test whether this location is within the location area of the specified object.
129 * @param area the location area to compare with this location
130 * @return true if this location is contained within the specified location area
132 public boolean isInLocationArea(SmsCbLocation area) {
    [all...]
  /packages/services/Car/tools/emulator/
vhal_emulator_test.py 199 # Get the area to test
200 area = areas & (areas -1)
201 area ^= areas
203 # Remove the area from areas
204 areas ^= area
206 self._log.debug(" Testing propId=0x%X, area=0x%X", cfg.prop, area)
209 self._vhal.getProperty(cfg.prop, area)
216 self._log.error("testGetSet: Could not get value for prop=0x%X, area=0x%X",
217 cfg.prop, area)
    [all...]
  /packages/services/Car/car-lib/src/android/car/hardware/cabin/
CarCabinManager.java 249 * Positive value widens the lumbar area.
250 * Negative value makes the lumbar area thinner.
496 * @param area
500 public boolean getBooleanProperty(@PropertyId int propertyId, int area)
502 return mMgr.getBooleanProperty(propertyId, area);
508 * @param area
512 public float getFloatProperty(@PropertyId int propertyId, int area)
514 return mMgr.getFloatProperty(propertyId, area);
520 * @param area
524 public int getIntProperty(@PropertyId int propertyId, int area)
    [all...]
  /packages/services/Car/car-lib/src/android/car/hardware/hvac/
CarHvacManager.java 355 * @param area
359 public boolean getBooleanProperty(@PropertyId int propertyId, int area)
361 return mMgr.getBooleanProperty(propertyId, area);
367 * @param area
371 public float getFloatProperty(@PropertyId int propertyId, int area)
373 return mMgr.getFloatProperty(propertyId, area);
379 * @param area
383 public int getIntProperty(@PropertyId int propertyId, int area)
385 return mMgr.getIntProperty(propertyId, area);
391 * @param area
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
StringXmlPropertyDialog.java 38 Composite area = (Composite) super.createDialogArea(parent); local
40 Composite workaround = PropertyFactory.addWorkaround(area);
45 return area;
  /external/bart/bart/common/
signal.py 147 \\alpha_{v} = \\frac{area\_under\_curve(S_A\ |\ C(t)\ is\ true)}
148 {area\_under\_curve(S_B\ |\ C(t)\ is\ true)} \\\\
166 :param method: The method for area calculation. This can
171 :param step: The step behaviour for area and time
236 area = area_under_curve(a_piv[mask[pivot_val]], **kwargs)
238 area /= area_under_curve(b_piv[mask[pivot_val]], **kwargs)
240 area = float("nan")
248 result[self._pivot][pivot_val] = area, duration
250 result = area, duration
261 :param method: The method for area calculation. This ca
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/common/
PictureSizeCalculator.java 116 long pixels = candidate.area();
162 long largestArea = largestSize.area();
164 long area = candidate.area(); local
165 if (area > largestArea) {
  /frameworks/support/design/tests/src/android/support/design/testutils/
TestUtilsMatchers.java 292 // just the center half rect of the content area
293 final Rect area = new Rect();
294 fab.getContentRect(area);
296 final int rectHeightQuarter = area.height() / 4;
297 final int rectWidthQuarter = area.width() / 4;
298 area.left += rectWidthQuarter;
299 area.top += rectHeightQuarter;
300 area.right -= rectWidthQuarter;
301 area.bottom -= rectHeightQuarter;
306 fillColor, area, 0, true)
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 203 NJ_UINT8 *area; local
214 area = YOMI_AREA_TOP_ADDR(hdl) + DATA_YOMI(data);
225 NJ_CHAR_COPY(stroke, area);
227 area += sizeof(NJ_CHAR);
232 dic_ylen = convert_to_yomi(hdl, area, DATA_YOMI_SIZE(data), stroke, size);
359 NJ_UINT8 *area, *data; local
373 area = YOMI_AREA_TOP_ADDR(loc->handle) + DATA_YOMI(data);
385 NJ_CHAR_COPY(stroke, area);
387 area += sizeof(NJ_CHAR);
392 len = convert_to_yomi(loc->handle, area, DATA_YOMI_SIZE(data), stroke, size)
405 NJ_UINT8 *data, *area; local
    [all...]

Completed in 939 milliseconds

1 2 34 5 6 7 8 91011>>