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

<<31323334353637383940>>

  /external/chromium_org/net/ftp/
ftp_util.cc 136 // Converts abbreviated month name |text| to its number (in range 1-12).
137 // On success returns true and puts the number in |number|.
138 bool GetMonthNumber(const base::string16& text, int* number) {
146 *number = map_[text_lower];
220 int* number) {
221 return AbbreviatedMonthsMap::GetInstance()->GetMonthNumber(text, number);
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormDataList.h 65 appendString(String::number(value));
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTParser.h 96 static unsigned collectDigitsToInt(const String& input, unsigned* position, int& number);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptProfile.cpp 85 .setScriptId(String::number(node->GetScriptId()))
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathValue.cpp 131 return String::number(m_number);
  /external/chromium_org/third_party/lcov/bin/
gendesc 127 -v, --version Print version number, then exit
  /external/chromium_org/v8/src/
messages.js 38 unexpected_token_number: ["Unexpected number"],
372 * Find a line number given a specific source position.
373 * @param {number} position The source position.
374 * @return {number} 0 if input too small, -1 if input too large,
375 else the line number.
410 * @param {number} position The source position
449 * @param {number} opt_line The line within the source. Default value is 0
450 * @param {number} opt_column The column in within the line. Default value is 0
451 * @param {number} opt_offset_position The offset from the begining of the
493 * @param {number} opt_from_line The first line (zero bound) in the slice
    [all...]
  /external/chromium_org/v8/test/mjsunit/
array-length-number-conversion.js 30 // it is converted to a number.
36 assertEquals("number", typeof a.length);
binary-op-newspace.js 30 // Check that a mod where the stub code hits a failure in heap number
46 // Check that an add where the stub code hits a failure in heap number
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2186.js 38 assertEquals("number", typeof ONE);
39 assertEquals("number", typeof ANOTHER_ONE);
regress-create-exception.js 43 // garbage collector. 93 is chosen to be a prime number to avoid the
46 j *= 1.123567; // An arbitrary floating point number.
  /external/chromium_org/v8/test/webkit/fast/js/kde/
arguments-scope.js 49 shouldBeOfType("test2", arguments, 'number');
65 shouldBeOfType('test4.(2)', arguments, 'number');
  /external/chromium_org/v8/test/webkit/
number-cell-reuse.js 25 "This test checks corner cases of the number cell reuse code. In particular, it checks for known cases where code generation for number cell reuse caused assertions to fail."
  /external/chromium_org/webkit/browser/fileapi/
sandbox_origin_database.cc 310 bool SandboxOriginDatabase::GetLastPathNumber(int* number) {
312 DCHECK(number);
317 return base::StringToInt(number_string, number);
325 if (iter->Valid()) { // DB was not empty, but had no last path number!
330 // version number, they should go in in a single transaction.
337 *number = -1;
  /external/clang/test/Analysis/
uninit-vals-ps.c 74 extern Boolean CFNumberGetValue(CFNumberRef number, CFNumberType theType, void *valuePtr);
  /external/elfutils/tests/
funcretval.c 83 printf (" {%#x, %#" PRIx64 "}", locops[i].atom, locops[i].number);
  /external/icu4c/common/unicode/
umachine.h 163 # error int64_t is required for decimal format and rule-based number format.
254 /** Number of bytes in a UChar. @stable ICU 2.0 */
  /external/kernel-headers/original/linux/
mca.h 87 int number; member in struct:mca_bus
  /external/kernel-headers/original/linux/raid/
md_u.h 75 int active_disks; /* 2 Number of currently active disks */
76 int working_disks; /* 3 Number of working disks */
77 int failed_disks; /* 4 Number of failed disks */
78 int spare_disks; /* 5 Number of spare disks */
92 int number; member in struct:mdu_disk_info_s
  /external/llvm/lib/Analysis/
PathProfileInfo.cpp 64 // make a reference table to refer to function by number
70 // process path number information from the input file
112 ProfilePath::ProfilePath (unsigned int number, unsigned int count,
114 : _number(number) , _count(count), _countStdDev(countStdDev), _ppi(ppi) {}
251 // return the path based on its number
252 ProfilePath* PathProfileInfo::getPath(unsigned int number) {
253 return _functionPaths[_currentFunction][number];
256 // return the number of paths which a function may potentially execute
271 // returns the total number of paths run in the function
358 // get the number of functions in this profil
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.cc 67 return a->number() < b->number();
71 // Sort the fields of the given Descriptor by number into a new[]'d array
210 printer->Print("public static final int $constant_name$ = $number$;\n",
212 "number", SimpleItoa(descriptor_->field(i)->number()));
329 uint32 tag = WireFormatLite::MakeTag(field->number(),
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_centscreen.c 56 modeinfo.number = listedmode.mode;
  /external/v8/src/
messages.js 138 "unexpected_token_number", ["Unexpected number"],
333 * Find a line number given a specific source position.
334 * @param {number} position The source position.
335 * @return {number} 0 if input too small, -1 if input too large,
336 else the line number.
371 * @param {number} position The source position
410 * @param {number} opt_line The line within the source. Default value is 0
411 * @param {number} opt_column The column in within the line. Default value is 0
412 * @param {number} opt_offset_position The offset from the begining of the
454 * @param {number} opt_from_line The first line (zero bound) in the slice
    [all...]
property.h 210 void DescriptorResult(JSObject* holder, PropertyDetails details, int number) {
214 number_ = number;
217 void DescriptorResult(JSObject* holder, Smi* details, int number) {
221 number_ = number;
  /external/v8/test/mjsunit/
array-length-number-conversion.js 30 // it is converted to a number.
36 assertEquals("number", typeof a.length);

Completed in 1087 milliseconds

<<31323334353637383940>>