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

<<41424344454647484950>>

  /packages/apps/Phone/src/com/android/phone/
CallFeaturesSetting.java 114 // Extra put in the return from VM provider config containing voicemail number to set
116 // Extra put in the return from VM provider config containing call forwarding number to set
118 // Extra put in the return from VM provider config containing call forwarding number to set
128 // Used to tell the saving logic to leave forwarding number as is
130 // Suffix appended to provider key for storing vm number
141 public static final String FWD_SETTING_NUMBER = "#Number";
155 private static final String NUM_PROJECTION[] = {CommonDataKinds.Phone.NUMBER};
302 * Constructs settings object, setting all conditional forwarding to the specified number
318 fi.number = forwardingNumber;
356 i1.number != i2.number |
    [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 203 return SimpleItoa(field.default_value_enum()->number());
331 make_pair(value_descriptor.name(), value_descriptor.number()));
406 printer_->Print("$constant_name$ = $number$\n",
408 "number", SimpleItoa(extension_field.number()));
816 m["number"] = SimpleItoa(descriptor.number());
821 " name='$name$', index=$index$, number=$number$,\n"
846 m["number"] = SimpleItoa(field.number())
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xxf86dga/
XF86DGA2.c 314 size -= rep.number * sz_xXDGAModeInfo; /* find text size */
315 modes = (SDL_NAME(XDGAMode)*)Xmalloc((rep.number * sizeof(SDL_NAME(XDGAMode))) + size);
316 offset = (char*)(&modes[rep.number]); /* start of text */
320 for(i = 0; i < rep.number; i++) {
353 *num = rep.number;
  /external/v8/src/
objects-debug.cc 529 Object* number = to_number(); local
530 if (number->IsHeapObject()) {
531 ASSERT(number == HEAP->nan_value());
533 ASSERT(number->IsSmi());
534 int value = Smi::cast(number)->value();
  /external/valgrind/main/callgrind/
bbcc.c 520 fn_number = CLG_(current_state).bbcc->cxt->fn[0]->number;
673 (last_bb->obj->number != bb->obj->number)) {
807 level = *CLG_(get_fn_entry)(top->number);
825 *CLG_(get_fn_entry)(top->number) = 1;
global.h 333 UInt cjmp_count; /* number of side exits */
354 * To get a unique number for a full execution context, use
356 * unique_no = <number> + rec_index
361 UInt size; // number of function dependencies
374 ULong ecounter; /* number of times the BB was left at this exit */
420 /* the <number> of fn_node, file_node and obj_node are for compressed dumping
426 UInt number; member in struct:_fn_node
461 UInt number; member in struct:_file_node
479 UInt number; member in struct:_obj_node
527 Int jmps_passed; /* number of conditional jumps passed in last BB *
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/Getopt/
Mixed.pm 48 $floatRegexp = '^[-+]?(\d*\.?\d+|\d+\.)$'; # Match a real number
51 # Convert RCS revision number (must be main branch) to d.ddd format:
53 or die "Invalid version number";
445 =f :f option takes a mandatory (=) or optional (:) real number argument
502 number, but B<-s> is perfectly legal; its argument is the null string,
530 get the null string (because it isn't a number).
588 number first. The easiest way to do this is like this:
677 A regular expression that matches a floating point number. Default is
  /external/webkit/Source/WebCore/html/shadow/
MediaControlElements.cpp 694 setValue(String::number(currentTime));
699 setAttribute(maxAttr, String::number(isfinite(duration) ? duration : 0));
722 slider->setAttribute(valueAttr, String::number(mediaElement->volume()));
751 setValue(String::number(volume));
773 slider->setAttribute(valueAttr, String::number(mediaElement->volume()));
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 73 builder.append(String::number(arg.x()));
75 builder.append(String::number(arg.y()));
77 builder.append(String::number(arg.maxX()));
79 builder.append(String::number(arg.maxY()));
100 return String::number(value);
239 // Computes the number of times a query line starting at the given
260 // Returns the number of control point triangles associated with
276 // Number of vertices along the inside edge of this segment. This
549 // number of curve crossings at a random point on the contour,
757 // and count the number of crossings a horizontal line t
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardUtils.java 192 String number) {
193 if (number == null) {
194 number = "";
231 // 3. TYPE_PAGER is prefered when the number contains @ surronded by
232 // a pager number and a domain name.
237 final int indexOfAt = number.indexOf("@");
239 && 0 < indexOfAt && indexOfAt < number.length() - 1)
701 * the high number and exact location of generated = signs, there is a high likely-hood that
    [all...]
  /packages/apps/Email/src/com/android/email/
NotificationController.java 168 * @param number A number to display using {@link Builder#setNumber(int)}. May
176 Integer number, boolean enableAudio, boolean ongoing) {
190 .setNumber(number == null ? 0 : number)
460 final Integer number = unreadCount > 1 ? unreadCount : null; local
474 intent, largeIcon, number, enableAudio, false);
    [all...]
  /external/libxml2/
xpath.c 233 "Number encoding\n",
244 "Invalid number of arguments\n",
382 * @line: the line number
383 * @no: the error number
408 int number; member in struct:_xmlPointerList
430 list->number = 0;
432 } else if (list->size <= list->number) {
443 list->items[list->number++] = item;
468 ret->number = 0;
575 int nbStep; /* Number of steps in this expression *
    [all...]
  /external/chromium/chrome/common/
json_schema_validator.cc 32 double* number) {
33 if (value->GetDouble(key, number))
38 *number = int_value;
107 return "number";
227 else if (type == "number" || type == "integer")
481 (expected_type == "number" && actual_type == "integer")) {
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
echo_client.py 670 number = random.randint(0, maxnum)
673 product = number * spaces
692 return number, key
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 435 // Check if the number of arguments is consistent with out expectations.
450 // Count the number of X's, taking into account a possible cutoff suffix.
584 // Check: Linear congruent random number generators should not be used
614 os1 << '\'' << *FD << "' is a poor random number generator";
619 << "' is obsolete because it implements a poor random number generator."
652 "'random' is not a secure random number generator",
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 194 Number number = Double.valueOf(42); local
195 Function<String, Number> function = Functions.forMap(map, number);
198 assertEquals(number, function.apply("Two"));
  /external/icu4c/i18n/
smpdtfmt.cpp 168 * before they are compared to the parsed number.
752 // no matter what the locale's default number format looked like, we want
888 // by subFormat(); count the number of times it is repeated
949 // Map index into pattern character string to Calendar field number.
2350 Formattable number; local
    [all...]
  /external/icu4c/test/cintltst/
custrtrn.c 977 int number; local
    [all...]
  /external/openssl/crypto/store/
store.h 84 /* All the following functions return 0, a negative number or NULL on error.
224 BIGNUM *number; member in union:STORE_OBJECT_st::__anon12676
234 /* The following functions handle the storage. They return 0, a negative number
405 BIGNUM *number);
413 BIGNUM *number);
  /external/qemu/
qemu-option.c 191 uint64_t number; local
194 number = strtoull(value, &postfix, 0);
196 qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a number");
199 *ret = number;
201 qerror_report(QERR_INVALID_PARAMETER_VALUE, name, "a number");
  /external/quake/
NOTICE 262 Each version is given a distinguishing version number. If the Program
263 specifies a version number of this License which applies to it and "any
266 Software Foundation. If the Program does not specify a version number of
607 Each version is given a distinguishing version number. If the Program
608 specifies a version number of this License which applies to it and "any
611 Software Foundation. If the Program does not specify a version number of
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
smaliFlexLexer.java     [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8Binding.cpp 151 // Can the value be converted to a number?
152 v8::Local<v8::Number> numberObject = value->ToNumber();
191 // Can the value be converted to a number?
192 v8::Local<v8::Number> numberObject = value->ToNumber();
386 AtomicString valueString = AtomicString(String::number(value));
391 webCoreString = String::number(value);
400 return String::number(value);
  /external/webkit/Source/WebCore/inspector/
InspectorCSSAgent.cpp 62 // startOffset : <number>, // Optional - property text start offset in enclosing style declaration. Absent for computed styles and such.
63 // endOffset : <number>, // Optional - property text end offset in enclosing style declaration. Absent for computed styles and such.
110 // selectorRange: { start: <number>, end: <number> } // Optional - for source-based rules only
114 // styleSheetId : <number>
121 // styleSheetId : <number>
396 String newStyleSheetId = String::number(m_lastStyleSheetId++);
424 String id = String::number(m_lastStyleSheetId++);
465 String id = String::number(m_lastStyleSheetId++);
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWinInternal.cpp 96 String text = String::number(owner()->owner()->platformCALayerIncrementRepaintCount());
352 // If number of tiles vertically or horizontally is < sqrt(cMaxTileCount)
418 // FIXME: In addition to redoing the number of tiles, we need to only render and have backing
453 String name = "Tile (" + String::number(i) + "," + String::number(j) + ")";

Completed in 623 milliseconds

<<41424344454647484950>>