Searched defs:number (Results 276 - 300 of 338) sorted by relevance

<<11121314

/external/webkit/Source/WebCore/bindings/v8/
H A DSerializedScriptValue.cpp180 void writeNumber(double number) argument
183 doWriteNumber(number);
293 void doWriteNumber(double number) argument
295 append(reinterpret_cast<uint8_t*>(&number), sizeof(number));
905 double number; local
906 if (!doReadNumber(&number))
908 *value = v8::Number::New(number);
1027 bool doReadNumber(double* number) argument
1031 uint8_t* numberAsByteArray = reinterpret_cast<uint8_t*>(number);
[all...]
/external/webkit/Source/WebCore/platform/
H A DKURL.cpp593 // 2) The URL contains a colon but there's no port number before the path component of the URL begins.
599 unsigned number = charactersToUIntStrict(stringData + m_hostEnd + 1, m_portEnd - m_hostEnd - 1, &ok); local
600 if (!ok || number > maximumValidPortNumber)
602 return number;
760 parse(m_string.left(portStart) + (colonNeeded ? ":" : "") + String::number(i) + m_string.substring(m_portEnd));
889 append(authority, String::number(port()));
1949 // Allow any port number in a file URL, since the port number is ignored.
/external/webkit/Source/WebCore/rendering/
H A DRenderListMarker.cpp47 static String toRoman(int number, bool upper) argument
52 ASSERT(number >= 1 && number <= 3999);
54 // Big enough to store largest roman number less than 3999 which
65 int num = number % 10;
75 number /= 10;
77 } while (number);
83 static inline String toAlphabeticOrNumeric(int number, const UChar* sequence, unsigned sequenceSize, SequenceType type) argument
87 const int lettersSize = sizeof(number) * 8 + 1; // Binary is the worst case; requires one character per bit plus a minus sign.
92 unsigned numberShadow = number;
119 toSymbolic(int number, const UChar* symbols, unsigned symbolsSize) argument
135 toAlphabetic(int number, const UChar* alphabet, unsigned alphabetSize) argument
140 toNumeric(int number, const UChar* numerals, unsigned numeralsSize) argument
145 toAlphabetic(int number, const UChar(&alphabet)[size]) argument
150 toNumeric(int number, const UChar(&alphabet)[size]) argument
155 toSymbolic(int number, const UChar(&alphabet)[size]) argument
160 toHebrewUnder1000(int number, UChar letters[5]) argument
188 toHebrew(int number) argument
215 toArmenianUnder10000(int number, bool upper, bool addCircumflex, UChar letters[9]) argument
256 toArmenian(int number, bool upper) argument
270 toGeorgian(int number) argument
316 toCJKIdeographic(int number, const UChar table[16]) argument
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DLayoutTestController.cpp212 // globalFlag is used by a number of layout tests in
1271 long number = strtol(source, &end, 10); local
1272 if (end == source + stringSource.length() && number >= numeric_limits<int32_t>::min() && number <= numeric_limits<int32_t>::max())
1273 return static_cast<int32_t>(number);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp692 void LayoutTestController::observeStorageTrackerNotifications(unsigned number) argument
/external/webkit/Tools/DumpRenderTree/qt/
H A DLayoutTestControllerQt.cpp889 void LayoutTestController::observeStorageTrackerNotifications(unsigned number) argument
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp1114 UINT number = 0;
1115 if (FAILED(framePrivate->numberOfActiveAnimations(&number)))
1118 return number;
1486 void LayoutTestController::observeStorageTrackerNotifications(unsigned number) argument
/external/webkit/Tools/DumpRenderTree/wx/
H A DLayoutTestControllerWx.cpp595 void LayoutTestController::observeStorageTrackerNotifications(unsigned number) argument
/external/bison/src/
H A Dscan-gram.c159 /* Action number for EOF rule of a given start state. */
325 static int yy_n_chars; /* number of characters read into yy_ch_buf */
331 static int yy_start = 0; /* start state number */
975 /* Within well-formed rules, RULE_LENGTH is the number of values in
1116 /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
1340 /* %% [10.0] code to find the action number goes here */
3112 * @param len the number of bytes in the buffer pointed to by @a bytes.
3184 /** Get the current line number.
3229 /** Set the current line number.
3363 /* Keeps track of the maximum number o
3656 scan_integer(char const *number, int base, location loc) argument
[all...]
/external/icu4c/i18n/
H A Dsmpdtfmt.cpp164 * before they are compared to the parsed number.
745 // no matter what the locale's default number format looked like, we want
872 // by subFormat(); count the number of times it is repeated
934 // Map index into pattern character string to Calendar field number.
954 // Map index into pattern character string to DateFormat field number
1159 Formattable number; local
1160 parseInt(text, number, 6, pos, FALSE,currentNumberFormat);
1169 int32_t numVal = number.getLong();
1182 parseInt(text, number, 2, pos, FALSE,currentNumberFormat);
1186 min = number
2531 Formattable number; local
3213 parseInt(const UnicodeString& text, Formattable& number, ParsePosition& pos, UBool allowNegative, NumberFormat *fmt) const argument
3224 parseInt(const UnicodeString& text, Formattable& number, int32_t maxDigits, ParsePosition& pos, UBool allowNegative, NumberFormat *fmt) const argument
[all...]
H A Dvtzone.cpp87 * Simple fixed digit ASCII number to integer converter
118 static UnicodeString& appendAsciiDigits(int32_t number, uint8_t length, UnicodeString& str) { argument
123 if (number < 0) {
125 number *= -1;
133 digits[i++] = number % 10;
134 number /= 10;
135 } while (number != 0);
140 digits[i] = number % 10;
141 number /= 10;
157 int64_t number; local
[all...]
H A Ddecimfmt.cpp253 // Constructs a DecimalFormat instance with the specified number format
264 // Constructs a DecimalFormat instance with the specified number format
265 // pattern and the number format symbols in the default locale. The
289 // Constructs a DecimalFormat instance with the specified number format
290 // pattern and the number format symbols in the default locale. The
302 // Constructs a DecimalFormat instance with the specified number format
303 // pattern, the number format symbols, and the number format style.
352 // Constructs a DecimalFormat instance with the specified number format
353 // pattern and the number forma
923 format(int32_t number, UnicodeString& appendTo, FieldPosition& fieldPosition) const argument
931 format(int32_t number, UnicodeString& appendTo, FieldPositionIterator* posIter, UErrorCode& status) const argument
942 format(int64_t number, UnicodeString& appendTo, FieldPosition& fieldPosition) const argument
951 format(int64_t number, UnicodeString& appendTo, FieldPositionIterator* posIter, UErrorCode& status) const argument
961 _format(int64_t number, UnicodeString& appendTo, FieldPositionHandler& handler) const argument
974 format( double number, UnicodeString& appendTo, FieldPosition& fieldPosition) const argument
983 format( double number, UnicodeString& appendTo, FieldPositionIterator* posIter, UErrorCode& status) const argument
993 _format( double number, UnicodeString& appendTo, FieldPositionHandler& handler) const argument
1023 format(const StringPiece &number, UnicodeString &toAppendTo, FieldPositionIterator *posIter, UErrorCode &status) const argument
1040 format(const DigitList &number, UnicodeString &appendTo, FieldPositionIterator *posIter, UErrorCode &status) const argument
1052 format(const DigitList &number, UnicodeString& appendTo, FieldPosition& pos, UErrorCode &status) const argument
1064 _format(const DigitList &number, UnicodeString& appendTo, FieldPositionHandler& handler, UErrorCode &status) const argument
3271 expandAffix(const UnicodeString& pattern, UnicodeString& affix, double number, FieldPositionHandler& handler, UBool doFormat, const UnicodeString* pluralCount) const argument
3426 appendAffix(UnicodeString& buf, double number, FieldPositionHandler& handler, UBool isNegative, UBool isPrefix) const argument
[all...]
/external/icu4c/test/intltest/
H A Dnumfmtst.cpp146 errln("Yuck... Formatted a duck... As a number!");
177 virtual UnicodeString& format(int64_t number,UnicodeString& appendTo,FieldPosition& pos) const { argument
178 return NumberFormat::format(number, appendTo, pos);
1490 // Test padding between a sign and a number
1690 // Make sure currency formats do not have a variable number
2085 /*2*/ "f:", // <pattern or '-'> <number> <exp. string>
2086 /*3*/ "fp:", // <pattern or '-'> <number> <exp. string> <exp. number>
2087 /*4*/ "rt:", // <pattern or '-'> <(exp.) number> <(exp.) string>
2088 /*5*/ "p:", // <pattern or '-'> <string> <exp. number>
[all...]
/external/kernel-headers/original/linux/
H A Dpci.h237 unsigned char number; /* bus number */ member in struct:pci_bus
238 unsigned char primary; /* number of primary bridge */
239 unsigned char secondary; /* number of secondary bridge */
240 unsigned char subordinate; /* max number of subordinate buses */
/external/libvpx/nestegg/src/
H A Dnestegg.c219 struct ebml_type number; member in struct:track_entry
395 E_FIELD(ID_TRACK_NUMBER, TYPE_UINT, struct track_entry, number),
/external/qemu/telephony/
H A Dandroid_modem.c545 qemu_put_buffer( f, (uint8_t *)call->number, A_CALL_NUMBER_MAX_SIZE+1 );
570 qemu_get_buffer( f, (uint8_t *)call->number, A_CALL_NUMBER_MAX_SIZE+1 );
860 remote_call_cancel( call->call.number, modem->base_port );
901 amodem_add_inbound_call( AModem modem, const char* number )
915 vcall->is_remote = (remote_number_string_to_port(number) > 0);
917 len = strlen(number);
918 if (len >= sizeof(call->number))
919 len = sizeof(call->number)-1;
921 memcpy( call->number, number, le
958 const char* number = call->call.number; local
1654 char number[16]; local
[all...]
/external/v8/src/
H A Dbootstrapper.cc58 // The resources are small objects and we only make a fixed number of
646 int number = descs->Search(*name); local
647 AccessorPair* accessors = AccessorPair::cast(descs->GetValue(number));
2022 // not scale well if we want to support a large number of extensions.
2075 // the line number at which this happened to the console in the isolate
H A Dlog.cc1211 void Logger::HeapSampleItemEvent(const char* type, int number, int bytes) { argument
1214 msg.Append("heap-sample-item,%s,%d,%d\n", type, number, bytes);
/external/valgrind/main/callgrind/
H A Dglobal.h325 UInt cjmp_count; /* number of conditional exits */
347 * To get a unique number for a full execution context, use
349 * unique_no = <number> + rec_index
354 UInt size; // number of function dependencies
367 ULong ecounter; /* number of times the BB was left at this exit */
413 /* the <number> of fn_node, file_node and obj_node are for compressed dumping
419 UInt number; member in struct:_fn_node
454 UInt number; member in struct:_file_node
472 UInt number; member in struct:_obj_node
520 Int jmps_passed; /* number o
[all...]
/external/elfutils/src/
H A Dldgeneric.c87 size_t number);
201 /* Pick an not too small number for the initial size of the tables. */
661 gettext ("cannot determine number of sections: %s"),
674 /* XXX Print source file and line number. */
698 /* XXX Print source file and line number. */
1122 gettext ("cannot determine number of sections: %s"),
1881 unique number. */
1972 /* This is an archive therefore it must have a number. */
2685 /* Failed this round. We keep trying a number of times. */
3530 number o
7026 ld_generic_special_section_number_p(struct ld_state *statep, size_t number) argument
[all...]
/external/libxml2/
H A Dtree.c76 * @code: the error number
100 msg = "unexpected error number\n";
360 * Returns 0 if this validates, a positive error code number otherwise
434 * Returns 0 if this validates, a positive error code number otherwise
532 * Returns 0 if this validates, a positive error code number otherwise
601 * Returns 0 if this validates, a positive error code number otherwise
3404 * Finds the current number of child nodes of that element which are
4503 * Get line number of @node. This requires activation of this option
4506 * Returns the line number if successful, -1 otherwise
6140 * Returns the number o
7973 xmlDOMWrapNSNormAddNsMapItem2(xmlNsPtr **list, int *size, int *number, xmlNsPtr oldNs, xmlNsPtr newNs) argument
[all...]
/external/netperf/
H A Dnetlib.c28 /* format_number() format the number (KB, MB,etc) */
197 lib_num_loc_cpus, /* the number of cpus in the system */
1027 /* some number of milliseconds, we know that the interval timer is */
1030 /* the number of itimer events */
1153 /* is used primarily for the command-line options taking a number */
1155 /* enters 32M, then the number will be converted to 32 * 1024 * 1024. */
1156 /* If they inter 32m, the number will be converted to 32 * 1000 * */
1567 /* initialize the random number generator */
1764 format_number(double number)
1770 snprintf(fmtbuf, sizeof(fmtbuf), "%-7.2f" , number / 1024.
1748 format_number(double number) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc162 // 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));
621 FindExtension( const Descriptor* extendee, int number) argument
988 int number = numbers[i]; local
4321 SetInt32(int number, int32 value, FieldDescriptor::Type type, UnknownFieldSet* unknown_fields) argument
4344 SetInt64(int number, int64 value, FieldDescriptor::Type type, UnknownFieldSet* unknown_fields) argument
4366 SetUInt32(int number, uint32 value, FieldDescriptor::Type type, UnknownFieldSet* unknown_fields) argument
4383 SetUInt64(int number, uint64 value, FieldDescriptor::Type type, UnknownFieldSet* unknown_fields) argument
[all...]
/external/v8/src/ia32/
H A Dcode-stubs-ia32.cc495 // heap number -> false iff +0, -0, or NaN.
600 // be either a smi or a heap number object (fp value). Requirements:
601 // operand in register number. Returns operand as floating point number
603 static void LoadFloatOperand(MacroAssembler* masm, Register number);
606 // be either smi or heap number objects (fp values). Requirements:
617 // Test if operands are smi or number objects (fp). Requirements:
650 // either operand is not a number. Operands are in edx and eax.
666 // Get the integer part of a heap number. Surprisingly, all this bit twiddling
690 // Load x87 register with heap number
2748 LoadFloatOperand(MacroAssembler* masm, Register number) argument
[all...]
/external/v8/src/mips/
H A Dcode-stubs-mips.cc59 // Check if the operand is a heap number.
588 // Heap number check
591 // Handle loading a double from a heap number.
603 // Load the double from heap number to dst1 and dst2 in double format.
735 // Get the number of bits to set in the lower part of the mantissa.
791 // Load the number.
862 // Object is a heap number.
945 // number cannot be represented as an int32.
1012 // Store answer in the overwritable heap number.
1094 // The max negative int32 is stored as a positive number i
1927 Label zero_or_nan, number; local
[all...]

Completed in 647 milliseconds

<<11121314