HomeSort by relevance Sort by last modified time
    Searched refs:number (Results 676 - 700 of 2876) sorted by null

<<21222324252627282930>>

  /external/chromium_org/testing/gtest/src/
gtest-filepath.cc 174 // Given directory = "dir", base_name = "test", number = 0,
175 // extension = "xml", returns "dir/test.xml". If number is greater
180 int number,
183 if (number == 0) {
186 file = base_name.string() + "_" + StreamableToString(number)
275 // directory/base_name_<number>.extension if directory/base_name.extension
276 // already exists. The number will be incremented until a pathname is found
285 int number = 0; local
287 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
NumberInputType.cpp 79 const unsigned sizeOfDigits = String::number(value.value().coefficient()).length();
109 return InputTypeNames::number;
126 // FIXME: We should use numeric_limits<double>::max for number input type.
129 exceptionState.throwDOMException(InvalidStateError, "The value provided (" + String::number(newValue) + ") is outside the range (" + String::number(-floatMax) + ", " + String::number(floatMax) + ").");
137 // FIXME: We should use numeric_limits<double>::max for number input type.
161 // FIXME: We should use numeric_limits<double>::max for number input type.
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedType.h 113 const float& number() const function in class:WebCore::FINAL
116 return *m_data.number;
216 float& number() function in class:WebCore::FINAL
219 return *m_data.number;
292 float* number; member in union:WebCore::FINAL::DataUnion
  /external/chromium_org/third_party/icu/source/i18n/unicode/
unum.h 27 * <h2> Number Format C API </h2>
29 * Number Format C API Provides functions for
30 * formatting and parsing a number. Also provides methods for
31 * determining which locales have number formats, and what their names
37 * decimal digits used, or whether the number format is even decimal.
38 * There are different number format styles like decimal, currency,
41 * To format a number for the current Locale, use one of the static
83 * To format a number for a different Locale, specify it in the
99 * Use UNUM_DECIMAL to get the normal number format for that country.
101 * to get the currency number format for that country. Use UNUM_PERCEN
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-filepath.cc 172 // Given directory = "dir", base_name = "test", number = 0,
173 // extension = "xml", returns "dir/test.xml". If number is greater
178 int number,
181 if (number == 0) {
184 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
273 // directory/base_name_<number>.extension if directory/base_name.extension
274 // already exists. The number will be incremented until a pathname is found
283 int number = 0; local
285 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
  /external/chromium_org/v8/tools/
codemap.js 63 * The number of alignment bits in a page address.
78 * @param {number} start The starting address.
91 * @param {number} from The starting address of the entry being moved.
92 * @param {number} to The destination address.
105 * @param {number} start The starting address of the entry being deleted.
115 * @param {number} start The starting address.
128 * @param {number} start The starting address.
186 * @param {number} addr Address.
215 * @param {number} addr Address.
259 * @param {number} size Code entry size in bytes
    [all...]
  /external/gtest/src/
gtest-filepath.cc 172 // Given directory = "dir", base_name = "test", number = 0,
173 // extension = "xml", returns "dir/test.xml". If number is greater
178 int number,
181 if (number == 0) {
184 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
273 // directory/base_name_<number>.extension if directory/base_name.extension
274 // already exists. The number will be incremented until a pathname is found
283 int number = 0; local
285 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
  /external/icu4c/common/
putilimp.h 243 * Floating point utility to determine if a double is Not a Number (NaN).
263 * Floating point utility that returns a Not a Number (NaN) value.
335 # define uprv_isNegative(number) (*((signed char *)&(number))<0)
337 # define uprv_isNegative(number) (*((signed char *)&(number)+sizeof(number)-1)<0)
341 * Return the largest positive number that can be represented by an integer
355 * @param x the double number
363 * Returns the number of digits after the decimal point in a double number x
    [all...]
  /external/icu4c/i18n/unicode/
unum.h 27 * <h2> Number Format C API </h2>
29 * Number Format C API Provides functions for
30 * formatting and parsing a number. Also provides methods for
31 * determining which locales have number formats, and what their names
37 * decimal digits used, or whether the number format is even decimal.
38 * There are different number format styles like decimal, currency,
41 * To format a number for the current Locale, use one of the static
83 * To format a number for a different Locale, specify it in the
99 * Use UNUM_DECIMAL to get the normal number format for that country.
101 * to get the currency number format for that country. Use UNUM_PERCEN
    [all...]
  /external/iptables/extensions/
libip6t_icmp6.c 121 unsigned int number; local
129 if (!xtables_strtoui(buffer, NULL, &number, 0, UINT8_MAX))
132 *type = number;
134 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX))
138 code[0] = code[1] = number;
libipt_icmp.c 145 unsigned int number; local
153 if (!xtables_strtoui(buffer, NULL, &number, 0, UINT8_MAX))
156 *type = number;
158 if (!xtables_strtoui(slash+1, NULL, &number, 0, UINT8_MAX))
162 code[0] = code[1] = number;
  /external/llvm/utils/unittest/googletest/
gtest-filepath.cc 170 // Given directory = "dir", base_name = "test", number = 0,
171 // extension = "xml", returns "dir/test.xml". If number is greater
176 int number,
179 if (number == 0) {
182 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
271 // directory/base_name_<number>.extension if directory/base_name.extension
272 // already exists. The number will be incremented until a pathname is found
281 int number = 0; local
283 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
  /external/mesa3d/src/gtest/src/
gtest-filepath.cc 172 // Given directory = "dir", base_name = "test", number = 0,
173 // extension = "xml", returns "dir/test.xml". If number is greater
178 int number,
181 if (number == 0) {
184 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
273 // directory/base_name_<number>.extension if directory/base_name.extension
274 // already exists. The number will be incremented until a pathname is found
283 int number = 0; local
285 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
  /external/open-vcdiff/gtest/src/
gtest-filepath.cc 141 // Given directory = "dir", base_name = "test", number = 0,
142 // extension = "xml", returns "dir/test.xml". If number is greater
147 int number,
150 if (number == 0) {
153 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
242 // directory/base_name_<number>.extension if directory/base_name.extension
243 // already exists. The number will be incremented until a pathname is found
252 int number = 0; local
254 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
  /external/protobuf/gtest/src/
gtest-filepath.cc 141 // Given directory = "dir", base_name = "test", number = 0,
142 // extension = "xml", returns "dir/test.xml". If number is greater
147 int number,
150 if (number == 0) {
153 file = String::Format("%s_%d.%s", base_name.c_str(), number, extension);
242 // directory/base_name_<number>.extension if directory/base_name.extension
243 // already exists. The number will be incremented until a pathname is found
252 int number = 0; local
254 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
  /external/v8/tools/
codemap.js 63 * The number of alignment bits in a page address.
78 * @param {number} start The starting address.
91 * @param {number} from The starting address of the entry being moved.
92 * @param {number} to The destination address.
105 * @param {number} start The starting address of the entry being deleted.
115 * @param {number} start The starting address.
128 * @param {number} start The starting address.
186 * @param {number} addr Address.
215 * @param {number} addr Address.
259 * @param {number} size Code entry size in bytes
    [all...]
  /frameworks/base/core/java/android/provider/
CallLog.java 62 * Query parameter used to limit the number of call logs returned.
134 * The phone number as the user entered it.
137 public static final String NUMBER = "number";
140 * The number presenting rules set by the network.
156 /** Number is allowed to display for caller id. */
158 /** Number is blocked by user. */
160 /** Number is not specified or unknown by network. */
162 /** Number is a pay phone. */
195 * The cached name associated with the phone number, if it exists
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc 174 // Given directory = "dir", base_name = "test", number = 0,
175 // extension = "xml", returns "dir/test.xml". If number is greater
180 int number,
183 if (number == 0) {
186 file = base_name.string() + "_" + StreamableToString(number)
275 // directory/base_name_<number>.extension if directory/base_name.extension
276 // already exists. The number will be incremented until a pathname is found
285 int number = 0; local
287 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
  /packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetailsHelper.java 43 /** The maximum number of icons will be shown to represent the call types in a group. */
72 // Display up to a given number of icons.
81 // Show the total call count only if there are more than the maximum number of icons.
105 mPhoneNumberHelper.getDisplayNumber(details.number,
110 || mPhoneNumberUtilsWrapper.isVoicemailNumber(details.number)) {
116 // We have a real phone number as "nameView" so make it always LTR
139 // Only show a label if the number is shown and it is not a SIP address.
140 if (!TextUtils.isEmpty(details.number)
141 && !PhoneNumberUtils.isUriNumber(details.number.toString())) {
169 mPhoneNumberHelper.getDisplayNumber(details.number, details.numberPresentation
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialNameMatcher.java 30 * characters and normalize a phone number. It also contains the matching logic that determines if
89 * Strips a phone number of unnecessary characters (spaces, dashes, etc.)
91 * @param number Phone number we want to normalize
92 * @return Phone number consisting of digits from 0-9
94 public static String normalizeNumber(String number, SmartDialMap map) {
95 return normalizeNumber(number, 0, map);
99 * Strips a phone number of unnecessary characters (spaces, dashes, etc.)
101 * @param number Phone number we want to normaliz
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 162 // The keys to these hash_maps are (parent, name) or (parent, number)
355 int number);
449 const Descriptor* parent, int number) const;
455 const EnumDescriptor* parent, int number) const;
600 const Descriptor* parent, int number) const {
601 return FindPtrOrNull(fields_by_number_, make_pair(parent, number));
617 const EnumDescriptor* parent, int number) const {
618 return FindPtrOrNull(enum_values_by_number_, make_pair(parent, number));
622 const Descriptor* extendee, int number) {
623 return FindPtrOrNull(extensions_, make_pair(extendee, number));
988 int number = numbers[i]; local
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/
exif_encoder.js 84 * @param {number} quality (0..1] Thumbnail encoding quality.
327 * @param {{format:number, id:number}} tag EXIF tag object.
328 * @return {number} Width in bytes of the data unit associated with this tag.
351 Number(tag.id).toString(16) + ': ' + tag.format);
365 'String size mismatch for 0x' + Number(tag.id).toString(16));
392 * @param {{Object.<number,Object>}} directory EXIF directory.
393 * @param {number} id Tag id.
394 * @param {number} format Tag format
396 * @param {number} componentCount Number of components in this tag
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/extensions/searchvox/
util.js 42 * @param {number} index Index to add to.
43 * @param {number} length Length to wrap at.
44 * @return {number} The new index++, wrapped if exceeding length.
52 * @param {number} index Index to subtract from.
53 * @param {number} length Length to wrap at.
54 * @return {number} The new index--, wrapped if below 0.
  /external/chromium_org/remoting/webapp/
jscompiler_hacks.js 30 /** @type {number} */
33 /** @param {number} flags
44 /** @type {number} */
47 /** @type {number} */
199 /** @type {number} */
206 /** @param {number} id
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMarqueeElement.cpp 133 exceptionState.throwDOMException(IndexSizeError, "The provided value (" + String::number(scrollAmount) + ") is negative.");
148 exceptionState.throwDOMException(IndexSizeError, "The provided value (" + String::number(scrollDelay) + ") is negative.");
163 exceptionState.throwDOMException(IndexSizeError, "The provided value (" + String::number(loop) + ") is neither positive nor -1.");

Completed in 1325 milliseconds

<<21222324252627282930>>