HomeSort by relevance Sort by last modified time
    Searched refs:number (Results 451 - 475 of 1948) sorted by null

<<11121314151617181920>>

  /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...]
  /external/webkit/Source/JavaScriptCore/runtime/
UString.h 90 static UString number(int);
91 static UString number(unsigned);
92 static UString number(long);
93 static UString number(long long);
94 static UString number(double);
  /external/webkit/Source/WebCore/history/
HistoryItem.h 148 void setItemSequenceNumber(long long number) { m_itemSequenceNumber = number; }
151 void setDocumentSequenceNumber(long long number) { m_documentSequenceNumber = number; }
167 HistoryItem* childItemWithDocumentSequenceNumber(long long number) const;
266 // If two HistoryItems have the same item sequence number, then they are
272 // If two HistoryItems have the same document sequence number, then they
  /external/webkit/Source/WebKit/chromium/src/
LocalizedStrings.cpp 206 return query(WebLocalizedString::MultipleFileUploadText, String::number(numberOfFiles));
233 result.append(String::number(size.width()));
235 result.append(String::number(size.height()));
367 return query(WebLocalizedString::ValidationTooLong, String::number(valueLength), String::number(maxLength));
WebBindings.cpp 86 NPIdentifier WebBindings::getIntIdentifier(int32_t number)
88 return _NPN_GetIntIdentifier(number);
187 void WebBindings::extractIdentifierData(const NPIdentifier& identifier, const NPUTF8*& string, int32_t& number, bool& isString)
192 number = 0;
200 number = data->value.number;
243 result->Set(i, v8::Number::New(data[i]));
  /packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetailsHelper.java 40 /** The maximum number of icons will be shown to represent the call types in a group. */
67 // Display up to a given number of icons.
75 // Show the total call count only if there are more than the maximum number of icons.
97 // Only show a label if the number is shown and it is not a SIP address.
98 if (!TextUtils.isEmpty(details.number)
99 && !PhoneNumberUtils.isUriNumber(details.number.toString())) {
108 mPhoneNumberHelper.getDisplayNumber(details.number, details.formattedNumber);
112 || mPhoneNumberHelper.isVoicemailNumber(details.number)) {
118 // We have a real phone number as "nameView" so make it always LTR
124 // We have a real phone number as "numberView" so make it always LT
    [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/iptables/extensions/
libip6t_mh.c 96 unsigned int number; local
98 if (!xtables_strtoui(name, NULL, &number, 0, UINT8_MAX))
101 return number;
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
AreaCodeMap.java 33 * A utility that maps phone number prefixes to a string describing the geographical area the prefix
107 * @param sortedAreaCodeMap a map from phone number prefixes to descriptions of corresponding
108 * geographical areas, sorted in ascending order of the phone number prefixes as integers.
137 * Returns the description of the geographical area the {@code number} corresponds to. This method
140 * string is returned. If no description was found for the provided number, null is returned.
142 * @param number the phone number to look up
145 String lookup(PhoneNumber number) {
151 Long.parseLong(number.getCountryCode() + phoneUtil.getNationalSignificantNumber(number));
    [all...]
  /external/libxml2/
triop.h 138 void trio_print_int TRIO_PROTO((trio_pointer_t ref, int number));
139 void trio_print_uint TRIO_PROTO((trio_pointer_t ref, unsigned int number));
140 /* void trio_print_long TRIO_PROTO((trio_pointer_t ref, long number)); */
141 /* void trio_print_ulong TRIO_PROTO((trio_pointer_t ref, unsigned long number)); */
142 void trio_print_double TRIO_PROTO((trio_pointer_t ref, double number));
  /external/protobuf/src/google/protobuf/compiler/java/
java_enum.cc 54 descriptor_->FindValueByNumber(value->number());
87 vars["number"] = SimpleItoa(canonical_values_[i]->number());
89 "$name$($index$, $number$),\n");
121 "case $number$: return $name$;\n",
123 "number", SimpleItoa(canonical_values_[i]->number()));
140 " public $classname$ findValueByNumber(int number) {\n"
141 " return $classname$.valueOf(number)\n;"
  /external/webkit/Source/WebCore/svg/
SVGAnimateElement.cpp 79 String number = parse.left(parse.length() - unitLength); local
80 if ((!unit.isEmpty() && newUnit != unit) || number.isEmpty())
82 UChar last = number[number.length() - 1];
87 value = number.toDouble(&ok);
210 double number; local
212 number = isInFirstHalfOfAnimation ? m_fromNumber : m_toNumber;
214 number = (m_toNumber - m_fromNumber) * percentage + m_fromNumber;
218 number += m_toNumber * repeat;
220 results->m_animatedNumber += number;
    [all...]
  /bionic/libc/tools/
bionic_utils.py 239 number = line[pos_rparen+1:].strip()
240 if number == "stub":
247 if number[0] == '#':
248 number = number[1:].strip()
249 numbers = string.split(number,',')
262 E("invalid syscall number format in '%s'" % line)
265 E("invalid syscall number in '%s'" % line)
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dot.rb 122 number = node_number( tree )
123 unless known_nodes.include?( number )
126 known_nodes.add( number )
131 number = @node_to_number_map[ child ]
132 unless known_nodes.include?( number )
135 known_nodes.add( number )
  /external/bison/src/
state.c 139 res->number = nstates++;
166 res->number = nstates++;
413 if (bitset_test (reachable, s->number))
415 bitset_set (reachable, s->number);
434 if (bitset_test (reachable, states[i]->number))
437 states[nstates_reachable]->number = nstates_reachable;
451 /* All the decorated states, indexed by the state number. */
state.h 33 A core represents one state. States are numbered in the NUMBER
35 state 0 and NSTATES is the number of states. (FIXME: This sentence
36 is no longer true: A transition to a state whose state number is
55 of one state, the state whose number is in the number field. Each
64 state whose number is in the number field. rules is an array of
138 (TRANSITION_SYMBOL (Transitions, Num) == errtoken->number)
186 /* Sorted ascendingly on rule number. */
200 state_number number; member in struct:state
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/
PhoneCallDetailsHelperTest.java 41 /** The number to be used to access the voicemail. */
48 /** The number of the caller/callee in the log entry. */
180 assertNameEquals("1-412-555-5555"); // The phone number is shown as the name.
181 assertNumberEquals("Pennsylvania"); // The geocode is shown as the number.
186 assertNameEquals("1-412-555-5555"); // The phone number is shown as the name.
187 assertNumberEquals("-"); // The empty geocode is shown as the number.
192 assertNameEquals("1-412-555-5555"); // The phone number is shown as the name.
193 assertNumberEquals("-"); // The empty geocode is shown as the number.
198 assertNumberEquals("-"); // The empty geocode is shown as the number.
220 assertEquals("Private number", mNameView.getText().toString())
    [all...]
  /external/dropbear/libtommath/
bn.tex 391 mp_int number;
394 if ((result = mp_init(&number)) != MP_OKAY) \{
395 printf("Error initializing the number. \%s",
400 /* use the number */
422 mp_int number;
425 if ((result = mp_init(&number)) != MP_OKAY) \{
426 printf("Error initializing the number. \%s",
431 /* use the number */
434 mp_clear(&number);
515 default number of digits. By default, all initializers allocate \textbf{MP\_PREC} digits. This function let
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
DataUtil.java 50 String number) {
53 values.put(CommonDataKinds.Phone.NUMBER, number);
  /cts/tools/dasm/src/dasm/
Scanner.java 247 case '.': // a number
313 "Bad relative offset number");
448 * Reads number
464 Number num;
469 throw new DasmError("Bad number format");
470 throw new DasmError("Unknown directive or bad number format");
  /cts/tools/dasm/src/java_cup/
terminal_set.java 20 _elements = new BitSet(terminal.number());
233 for (int t = 0; t < terminal.number(); t++)
  /external/chromium/chrome/browser/chromeos/
sms_observer.cc 100 VLOG(1) << "New message notification from " << message->number
108 IDS_SMS_NOTIFICATION_TITLE, UTF8ToUTF16(message->number)));
  /external/chromium/chrome/browser/policy/
asynchronous_policy_loader_unittest.cc 46 ACTION_P(CreateSequencedTestDictionary, number) {
48 test_dictionary->SetInteger("id", ++(*number));
  /external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 40 // Track the number of callbacks from chrome.history.getVisits()
68 // Maps URLs to a count of the number of times the user typed that URL into
72 // Callback for chrome.history.getVisits(). Counts the number of
104 // Sort the URLs by the number of times the user typed them.

Completed in 919 milliseconds

<<11121314151617181920>>