/cts/tools/vm-tests/src/dot/junit/opcodes/invoke_direct_range/d/ |
T_invoke_direct_range_15.d | 23 invoke-direct/range {v1}, java/lang/Object/<init>()V 37 invoke-direct/range {v3}, dot/junit/opcodes/invoke_direct_range/d/T_invoke_direct_range_15/getInt()I
|
T_invoke_direct_range_16.d | 22 invoke-direct/range {v1}, java/lang/Object/<init>()V 29 invoke-direct/range {v2}, dot/junit/opcodes/invoke_direct_range/d/T_invoke_direct_range_16/toInt()F
|
T_invoke_direct_range_17.d | 30 invoke-direct/range {v0} java/lang/String/<init>()V 31 invoke-direct/range {v0} java/lang/String/<init>()V
|
T_invoke_direct_range_2.d | 23 invoke-direct/range {v1}, java/lang/Object/<init>()V 37 invoke-direct/range {v2}, dot/junit/opcodes/invoke_direct_range/d/T_invoke_direct_range_2/getInt()I
|
/dalvik/vm/mterp/c/ |
OP_EXECUTE_INLINE_RANGE.c | 10 vdst = FETCH(2); /* range base */ 11 ILOGV("|execute-inline-range args=%d @%d {regs=v%d-v%d}",
|
/external/easymock/src/org/easymock/internal/ |
IMocksControlState.java | 44 void times(Range range);
|
MocksControl.java | 220 state.times(new Range(times));
229 state.times(new Range(min, max));
266 public static final Range ONCE = new Range(1);
271 public static final Range AT_LEAST_ONCE = new Range(1, Integer.MAX_VALUE);
276 public static final Range ZERO_OR_MORE = new Range(0, Integer.MAX_VALUE);
|
/external/icu4c/i18n/ |
bocsu.h | 51 * For correct ordering, we must treat the entire value range -10ffff..+10ffff 53 * Instead, we split the lead byte range in the middle and encode non-negative values 60 * is added to a lead byte avoiding the single-byte range. 64 * for lead/single bytes so that the middle range of single bytes is as large 70 * subtracting the lower bound of the range. However, that would also slow down the 115 /* The difference value range for single-byters. */ 119 /* The difference value range for double-byters. */ 123 /* The difference value range for 3-byters. */
|
/external/icu4c/test/intltest/ |
utxttest.h | 52 int32_t nativeStart, // Range to be replaced, in UText native units. 54 int32_t u16Start, // Range to be replaced, in UTF-16 units
|
/external/iptables/extensions/ |
libipt_NETMAP.c | 71 parse_to(char *arg, struct ip_nat_range *range) 78 range->flags |= IP_NAT_RANGE_MAP_IPS; 87 range->min_ip = ip->s_addr; 109 if (range->min_ip & ~netmask) { 115 range->max_ip = range->min_ip | ~netmask; 134 parse_to(optarg, &mr->range[0]); 159 struct ip_nat_range *r = &mr->range[0];
|
/external/skia/include/core/ |
SkFloatBits.h | 47 If the value is out of range, or NaN, return return +/- SK_MaxS32 52 If the value is out of range, or NaN, return return +/- SK_MaxS32 57 If the value is out of range, or NaN, return return +/- SK_MaxS32 62 If the value is out of range, or NaN, return return +/- SK_MaxS32 110 If the value is out of range, or NaN, return +/- SK_MaxS32 117 If the value is out of range, or NaN, return +/- SK_MaxS32 124 If the value is out of range, or NaN, return +/- SK_MaxS32 131 If the value is out of range, or NaN, return +/- SK_MaxS32
|
/external/webkit/WebCore/editing/ |
VisibleSelection.h | 47 VisibleSelection(const Range*, EAffinity = SEL_DEFAULT_AFFINITY); 86 // We don't yet support multi-range selections, so we only ever have one range to return. 87 PassRefPtr<Range> firstRange() const; 90 // for historical reasons. toNormalizedRange contracts the range around 91 // text, and moves the caret upstream before returning the range. 92 PassRefPtr<Range> toNormalizedRange() const; 131 SelectionType m_selectionType; // None, Caret, Range
|
markup.cpp | 55 #include "Range.h" 143 static void appendEscapedContent(Vector<UChar>& result, pair<const UChar*, size_t> range, bool escapeNBSP) 145 const UChar* uchars = range.first; 146 unsigned len = range.second; 216 static String stringValueForRange(const Node* node, const Range* range) 218 if (!range) 223 if (node == range->endContainer(ec)) 224 str.truncate(range->endOffset(ec)); 225 if (node == range->startContainer(ec) [all...] |
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebEditorClient.mm | 210 bool WebEditorClient::shouldDeleteRange(Range* range) 213 shouldDeleteDOMRange:kit(range)]; 232 bool WebEditorClient::shouldApplyStyle(CSSStyleDeclaration* style, Range* range) 235 shouldApplyStyle:kit(style) toElementsInDOMRange:kit(range)]; 238 bool WebEditorClient::shouldMoveRangeAfterDelete(Range* range, Range* rangeToBeReplaced) 241 shouldMoveRangeAfterDelete:kit(range) replacingRange:kit(rangeToBeReplaced)] [all...] |
/frameworks/base/core/java/android/widget/ |
ScrollBarDrawable.java | 85 public void setParameters(int range, int offset, int extent, boolean vertical) { 90 if (mRange != range || mOffset != offset || mExtent != extent) { 94 mRange = range; 104 final int range = mRange; local 108 if (extent <= 0 || range <= extent) { 125 int length = Math.round((float) size * extent / range); 126 int offset = Math.round((float) (size - length) * mOffset / (range - extent)); 248 return "ScrollBarDrawable: range=" + mRange + " offset=" + mOffset +
|
/external/elfcopy/ |
rangesort.c | 46 static inline int IN_RANGE(range_t *range, GElf_Off point) { 48 range->start <= point && 49 point < (range->start + range->length); 84 FAILIF(1, "Range sorting error: [%lld, %lld) contains [%lld, %lld)!\n", 91 FAILIF(1, "Range sorting error: [%lld, %lld) contains [%lld, %lld)!\n", 98 FAILIF(1, "Range sorting error: [%lld, %lld)and [%lld, %lld) intersect!\n", 157 ASSERT(ranges->is_sorted); /* The range list must be sorted */ 174 ASSERT(ranges->is_sorted); /* The range list must be sorted */ 204 ASSERT(!"Unknown range error code!") [all...] |
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
IExceptionHandlerTable.java | 17 * exception handler range. The order of these entries is the order in which 33 * @param offset exception offset [must be in [0, size()) range; input not checked] 36 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range 74 * @param offset exception offset [must be in [0, size()) range; input not checked] 78 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
|
/external/proguard/src/proguard/obfuscate/ |
MappingPrinter.java | 137 * Returns the line number range of the given class member, followed by a 138 * colon, or just an empty String if no range is available. 142 String range = programMember.getLineNumberRange(programClass); local 143 return range != null ? 144 (range + ":") :
|
/external/proguard/src/proguard/shrink/ |
UsagePrinter.java | 167 * Returns the line number range of the given class member, followed by a 168 * colon, or just an empty String if no range is available. 172 String range = programMember.getLineNumberRange(programClass); local 173 return range != null ? 174 (range + ":") :
|
/external/qemu/memcheck/ |
memcheck_api.h | 52 /* Checks if given address range in the context of the current process is 55 * addr - Starting address of a range. 56 * size - Range size. 58 * boolean: 1 if address range contains memory that requires access 59 * violation detection, or 0 if given address range is in no interest to
|
/external/webkit/WebCore/rendering/ |
SVGRootInlineBox.cpp | 712 float cummulatedWidthOfInlineBoxCharacterRange(SVGInlineBoxCharacterRange& range) 714 ASSERT(!range.isOpen()); 715 ASSERT(range.isClosed()); 716 ASSERT(range.box->isInlineTextBox()); 718 InlineTextBox* textBox = static_cast<InlineTextBox*>(range.box); 722 return style->font().floatWidth(svgTextRunForInlineTextBox(text->characters() + textBox->start() + range.startOffset, range.endOffset - range.startOffset, style, textBox, 0)); 725 float cummulatedHeightOfInlineBoxCharacterRange(SVGInlineBoxCharacterRange& range) 727 ASSERT(!range.isOpen()) 763 SVGInlineBoxCharacterRange& range = *it; local 881 SVGInlineBoxCharacterRange& range = *boxIt; local 1495 SVGInlineBoxCharacterRange& range = info.chunk.boxes.last(); local 1540 SVGInlineBoxCharacterRange& range = info.chunk.boxes.last(); local 1568 SVGInlineBoxCharacterRange& range = info.chunk.boxes.last(); local 1660 SVGInlineBoxCharacterRange& range = *boxIt; i++; local 1747 SVGInlineBoxCharacterRange& range = *boxIt; local [all...] |
/external/webkit/WebKitTools/Scripts/ |
compare-timing-files | 51 printf("range of fastest $count runs: %.2f%% (%d)\n", $oldRangePercent, $oldRange); 59 printf("range of fastest $count runs: %.2f%% (%d)\n", $newRangePercent, $newRange); 83 my $range = $results[$count - 1] - $results[0]; 84 my $rangePercent = $range / $results[$count - 1] * 100; 86 return ($average, $range, $rangePercent);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameDistance.java | 105 int range = length2 / 2 - 1; local 106 if (range < 0) { 107 range = 0; 114 int from = i - range; 119 int to = i + range + 1;
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
ualgo.h | 38 /// Returns the first iterator i in the range [first, last) such that 102 /// iterator i in the range [first, last), and assigns the result of that 121 /// op(*i1, *i2) for each iterator i1 in the range [first1, last1) and assigns 123 /// input range and where o is the corresponding output iterator. That is, 138 /// Replace replaces every element in the range [first, last) equal to 151 /// Replace_copy copies elements from the range [first, last) to the range 167 /// takes no arguments, to each element in the range [first, last). 179 /// takes no arguments, to each element in the range [first, first+n). 192 /// \brief Reverse reverses a range [all...] |
/external/webkit/WebKit/android/WebCoreSupport/ |
EditorClientAndroid.cpp | 48 bool EditorClientAndroid::shouldDeleteRange(Range*) { return true; } 62 bool EditorClientAndroid::shouldBeginEditing(Range*) 67 bool EditorClientAndroid::shouldEndEditing(Range*) 72 bool EditorClientAndroid::shouldInsertNode(Node*, Range*, EditorInsertAction) { notImplemented(); return true; } 73 bool EditorClientAndroid::shouldInsertText(const String&, Range*, EditorInsertAction) { return true; } 74 bool EditorClientAndroid::shouldApplyStyle(CSSStyleDeclaration*, Range*) { notImplemented(); return true; } 242 bool EditorClientAndroid::shouldChangeSelectedRange(Range*, Range*, EAffinity, 254 bool EditorClientAndroid::shouldMoveRangeAfterDelete(Range*, Range*) { return true; [all...] |