HomeSort by relevance Sort by last modified time
    Searched full:range (Results 326 - 350 of 3739) sorted by null

<<11121314151617181920>>

  /external/iptables/extensions/
libipt_length.c 17 "[!] --length length[:length] Match packet length against value or range\n"
60 "length min. range value `%u' greater than max. "
61 "range value `%u'", info->min, info->max);
  /external/iptables/libipq/
ipq_set_mode.3 29 .BI "int ipq_set_mode(const struct ipq_handle *" h ", u_int8_t " mode ", size_t " range );
54 .I range
59 .I range
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
project.h 17 // Functions and classes to project an Fst on to its domain or range.
54 // Projects an FST onto its domain or range by either copying each arcs'
68 // Projects an FST onto its domain or range by either copying each arc's
union-find.h 33 // Ctor: creates a disjoint set forest for the range [0;max).
35 // initialized using MakeSet(...). The upper bound of the range
64 // 'item'. The range [0;max) is reset if item >= max.
  /external/stlport/test/eh/
TestClass.h 55 static inline unsigned int get_random(unsigned range = UINT_MAX);
154 inline unsigned int TestClass::get_random( unsigned range )
156 return random_number( range );
  /external/webkit/WebCore/dom/
Range.idl 24 interface Range {
67 in Range sourceRange)
80 Range cloneRange()
  /external/webkit/WebCore/page/
DOMSelection.h 40 class Range;
81 PassRefPtr<Range> getRangeAt(int, ExceptionCode&);
83 void addRange(Range*);
  /external/webkit/WebCore/platform/gtk/
ClipboardGtk.cpp 167 void ClipboardGtk::writeRange(Range* range, Frame* frame)
176 gtk_clipboard_set_text(htmlClipboard, createMarkup(range, 0, AnnotateForInterchange).utf8().data(), -1);
  /external/webkit/WebCore/platform/mac/
WebCoreNSStringExtras.mm 55 [filename replaceOccurrencesOfString:[NSString stringWithCharacters:&nullChar length:0] withString:@"" options:0 range:NSMakeRange(0, [filename length])];
58 [filename replaceOccurrencesOfString:@"/" withString:@"-" options:0 range:NSMakeRange(0, [filename length])];
61 [filename replaceOccurrencesOfString:@":" withString:@"-" options:0 range:NSMakeRange(0, [filename length])];
  /external/webkit/WebKit/mac/DOM/
WebDOMOperations.mm 107 DOMRange *range = [self createRange];
108 [range selectNode:node];
109 return range;
  /external/webkit/WebKit/win/Interfaces/
DOMRange.idl 42 // DOM range exception codes
50 // DOM Range comparison codes
177 HRESULT cloneRange([out, retval] IDOMRange** range);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
TextInputController.m 124 [self addAttribute:attrName value:value range:NSMakeRange(0, [self length])];
129 [self addAttribute:attrName value:value range:NSMakeRange((unsigned)from, (unsigned)length)];
134 [self addAttribute:attrName value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange(0, [self length])];
139 [self addAttribute:attrName value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange((unsigned)from, (unsigned)length)];
144 [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange(0, [self length])];
149 [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange((unsigned)from, (unsigned)length)];
303 NSRange range = [textInput markedRange];
304 return [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:range.location], [NSNumber numberWithUnsignedInt:range.length], nil];
315 NSRange range = [textInput selectedRange]
    [all...]
  /packages/apps/Camera/src/com/android/camera/
RotateImageView.java 51 // make sure in the range of [0, 359]
60 diff = diff >= 0 ? diff : 360 + diff; // make it in range [0, 359]
62 // Make it in range [-179, 180]. That's the shorted distance between the
  /external/icu4c/i18n/unicode/
basictz.h 63 * Checks if the time zone has equivalent transitions in the time range.
66 * time range.
68 * @param start The start time of the evaluated time range (inclusive)
69 * @param end The end time of the evaluated time range (inclusive)
79 * time range.
88 * <code>InitialTimeZoneRule</code>. The return value range is 0 or any positive value.
  /frameworks/base/core/java/android/widget/
MultiAutoCompleteTextView.java 88 * range of the text where the user is typing.
96 * this subclass method filters on the range from
98 * if the length of that range meets or exceeds {@link #getThreshold}.
120 * length of the range from
174 * pattern is the specified range of text from the edit box. Subclasses may
184 * <p>Performs the text completion by replacing the range from
  /bootable/recovery/tools/ota/
convert-to-bmp.py 71 for j in range(im.size[1]-1, -1, -1): # rows bottom-to-top
72 for i in range(j*im.size[0]*4, (j+1)*im.size[0]*4, 4):
  /dalvik/docs/opcodes/
opcode-0c-move-result-object.html 50 invoke-kind, filled-new-array, or filled-new-array/range instruction.
55 filled-new-array or filled-new-array/range instruction (it must not be
opcode-0f-return.html 80 the invoke-kind or invoke-kind/range instruction that caused this
85 following the invoke-kind or invoke-kind/range instruction that caused
opcode-2b-packed-switch.html 18 table of offsets corresponding to each value in a particular integral range, or
79 If vA is in the range of the table, that is, if vA >= table.first_key and
  /dalvik/dx/src/com/android/dx/dex/code/
InsnFormat.java 109 * and are in-range. If this format has a branch target but the
313 * @return {@code true} iff it's in the range -8..+7
323 * @return {@code true} iff it's in the range 0..0xf
333 * @return {@code true} iff it's in the range -0x80..+0x7f
343 * @return {@code true} iff it's in the range 0..0xff
353 * @return {@code true} iff it's in the range -0x8000..+0x7fff
363 * @return {@code true} iff it's in the range 0..0xffff
373 * @return {@code true} iff it's in the range -0x800000..+0x7fffff
406 throw new IllegalArgumentException("arg out of range 0..255");
412 throw new IllegalArgumentException("opcode out of range 0..255")
    [all...]
  /dalvik/libcore/math/src/main/java/org/apache/harmony/math/internal/nls/
messages.properties 19 math.02=Scale out of range.
36 math.11=Radix out of range
  /dalvik/libcore/text/src/main/java/java/text/
Annotation.java 24 * <li>it is connected to a range of main text; if this range or the main text
  /dalvik/tools/gdbjithelper/
README.txt 4 code cache address range*, copy them into codePC and codeLR in gdbjithelper.c,
7 *Caveats: debuggerd doesn't know the range of code cache. So apply this tool if
  /dalvik/vm/mterp/armv5te/
OP_EXECUTE_INLINE_RANGE.S 4 * Execute a "native inline" instruction, using "/range" semantics.
14 /* [opt] execute-inline/range {vCCCC..v(CCCC+AA-1)}, inline@BBBB */
  /external/easymock/src/org/easymock/internal/
ReplayState.java 131 public void times(Range range) {

Completed in 151 milliseconds

<<11121314151617181920>>