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

<<11121314151617181920>>

  /external/valgrind/main/coregrind/m_debuginfo/
storage.c 379 "warning: line info address range too large "
488 /* Now we know the range is at least partially inside the r-x
490 range falls inside the area. If necessary, clip it so it is
522 /* Because: either cfsi was entirely inside the range, in which
524 inside the range, in which case we reduced it by some size
691 DiAddrRange* range; local
695 range = VG_(OSetGen_Next)( scope );
696 if (!range) break;
697 VG_(printf)(" %#lx .. %#lx: %lu vars\n", range->aMin, range->aMax
716 DiAddrRange *first, *last, *range; local
1024 DiAddrRange *range, *rangep; local
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.cpp 105 static PassRefPtr<InspectorObject> buildSourceRangeObject(const SourceRange& range)
108 result->setNumber("start", range.start);
109 result->setNumber("end", range.end);
170 result->setObject("range", buildSourceRangeObject(sourceData->styleSourceData->styleBodyRange));
221 propertyStart = property.sourceData.range.start;
222 unsigned propertyEnd = property.sourceData.range.end;
266 propertyStart = property.sourceData.range.start;
318 *errorString = "Property index is outside of property range";
372 unsigned propertyStart = property.sourceData.range.start;
380 disabledProperty.sourceData.range.end = propertyStart
553 SourceRange& range = m_disabledProperties.at(i).sourceData.range; local
566 const SourceRange& range = property.sourceData.range; local
    [all...]
  /external/v8/src/
hydrogen-instructions.cc 119 int32_t Range::Mask() const {
132 void Range::AddConstant(int32_t value) {
143 void Range::Intersect(Range* other) {
151 void Range::Union(Range* other) {
159 void Range::Sar(int32_t value) {
167 void Range::Shl(int32_t value) {
181 bool Range::AddAndCheckOverflow(Range* other)
1056 Range* range = new(zone) Range(kMinInt, kMaxInt); local
1059 Range* range = OperandAt(0)->range()->Copy(zone); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 191 bool EditorClientImpl::shouldBeginEditing(Range* range)
194 return m_webView->client()->shouldBeginEditing(WebRange(range));
198 bool EditorClientImpl::shouldEndEditing(Range* range)
201 return m_webView->client()->shouldEndEditing(WebRange(range));
206 Range* range,
211 WebRange(range),
218 Range* range
    [all...]
  /external/webkit/Source/WebCore/page/
DOMSelection.cpp 37 #include "Range.h"
191 return "Range";
365 PassRefPtr<Range> DOMSelection::getRangeAt(int index, ExceptionCode& ec)
375 // If you're hitting this, you've added broken multi-range selection support
381 return Range::create(shadowAncestor->document(), container, offset, container, offset);
395 void DOMSelection::addRange(Range* r)
409 RefPtr<Range> range = selection->selection().toNormalizedRange(); local
411 if (r->compareBoundaryPoints(Range::START_TO_START, range.get(), ec) == -1)
    [all...]
  /hardware/invensense/mlsdk/mllite/
ml.h 282 #define RANGE_FLOAT_TO_FIXEDPOINT(range, x) { \
283 range.mantissa = (long)x; \
284 range.fraction = (long)((float)(x-(long)x)*PRECISION); \
286 #define RANGE_FIXEDPOINT_TO_FLOAT(range, x) { \
287 x = (float)(range.mantissa); \
288 x += ((float)range.fraction/PRECISION); \
549 inv_error_t inv_set_gyro_calibration(float range, signed char *orientation);
550 inv_error_t inv_set_accel_calibration(float range,
552 inv_error_t inv_set_compass_calibration(float range,
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BufferedTokenStream.java 69 protected int range = -1; // how deep have we gone? field in class:BufferedTokenStream
81 public int range() { return range; } method in class:BufferedTokenStream
143 throw new NoSuchElementException("token index "+i+" out of range 0.."+(tokens.size()-1));
180 if ( i>range ) range = i;
LegacyCommonTokenStream.java 62 protected int range = -1; // how deep have we gone? field in class:LegacyCommonTokenStream
265 if ( i>range ) range = i;
334 public int range() { method in class:LegacyCommonTokenStream
335 return range;
  /external/ipsec-tools/src/racoon/
security.c 206 * configured range for a policy rule.
208 * char *range Range
209 * return: 1 if the sl is within the range
210 * 0 if the sl is not within the range or an error
215 within_range(security_context_t sl, security_context_t range)
224 if (!*range) /* This policy doesn't have security context */
231 * Get the sids for the sl and range contexts
240 rtn = avc_context_to_sid(range, &rangesid);
244 "sid for range context (%s).\n", range)
    [all...]
  /external/libppp/src/
iplist.c 62 iplist_setrange(struct iplist *list, char *range)
66 if ((ptr = strpbrk(range, ",-")) == NULL) {
67 if (!inet_aton(range, &list->cur.ip))
72 if (!do_inet_aton(range, ptr, &list->cur.ip))
94 list->cur.srcptr = range;
114 log_Printf(LogWARN, "%.*s: Invalid IP range (skipping)\n",
  /external/v8/tools/
gen-postmortem-metadata.py 261 for ii in range(start, len(parts)):
330 for ii in range(0, len(call)):
383 for ii in range(0, len(line)):
403 for ii in range(len(prefix), len(line)):
425 for ii in range(0, len(consts)):
  /external/webkit/Source/WebCore/editing/
TextIterator.h 31 #include "Range.h"
64 String plainText(const Range*, TextIteratorBehavior defaultBehavior = TextIteratorDefaultBehavior);
65 UChar* plainTextToMallocAllocatedBuffer(const Range*, unsigned& bufferLength, bool isDisplayString, TextIteratorBehavior = TextIteratorDefaultBehavior);
66 PassRefPtr<Range> findPlainText(const Range*, const String&, FindOptions);
84 // Iterates through the DOM range, returning all the text, and 0-length boundaries
92 explicit TextIterator(const Range*, TextIteratorBehavior = TextIteratorDefaultBehavior);
100 PassRefPtr<Range> range() const;
103 static int rangeLength(const Range*, bool spacesForReplacedElements = false)
323 PassRefPtr<Range> range() const { return m_range; } function in class:WebCore::WordAwareIterator
    [all...]
SpellChecker.cpp 38 #include "Range.h"
180 RefPtr<Range> range = Range::create(m_requestNode->document(), start, end); local
182 String destination = range->text();
185 m_requestNode->document()->markers()->addMarker(range.get(), toMarkerType(results[i].type));
  /external/webkit/Source/WebCore/rendering/
RenderMarquee.cpp 281 int range = m_end - m_start; local
283 if (range == 0)
291 range = -range;
294 bool positive = range > 0;
RenderSlider.cpp 54 StepRange range(element);
55 return range.proportionFromValue(range.valueFromElement(element));
  /libcore/luni/src/main/java/java/awt/font/
NumericShaper.java 38 * The Constant EUROPEAN indicates the latin and extended range,
43 /** The Constant ARABIC indicates the ARABIC range and decimal base. */
47 * The Constant EASTERN_ARABIC indicates the ARABIC range and
53 * The Constant DEVANAGARI indicates the DEVANAGARI range and
58 /** The Constant BENGALI indicates the BENGALI range and decimal base. */
61 /** The Constant GURMUKHI indicates the GURMUKHI range and decimal base. */
64 /** The Constant GUJARATI indicates the GUJARATI range and decimal base. */
67 /** The Constant ORIYA indicates the ORIYA range and decimal base. */
70 /** The Constant TAMIL indicates the TAMIL range and decimal base. */
73 /** The Constant TELUGU indicates the TELUGU range and decimal base. *
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityRenderObject.cpp 1487 VisiblePositionRange range = VisiblePositionRange(visSelection.visibleStart(), visSelection.visibleEnd()); local
2230 float range = maxValueForRange() - minValueForRange(); local
2483 RefPtr<Range> range = Range::create(m_renderer->document()); local
2507 RefPtr<Range> range = Range::create(m_renderer->document()); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 123 indexed within the range <tt>op.index .. op.last_index</tt>
138 when Range then super( val )
160 skip over the tokens indexed within the range <tt>op.index .. op.last_index</tt>
181 range, text = cast_range( range_arguments, 1 )
183 op = Replace.new( @stream, range, text )
205 range, = cast_range( range_arguments )
206 op = Delete.new( @stream, range )
275 range = 0 ... @stream.length
277 range, = cast_range( range_arguments )
286 cursor = range.firs
    [all...]
  /external/chromium/chrome/browser/profiles/
profile_dependency_manager.cc 95 std::pair<EdgeMap::iterator, EdgeMap::iterator> range = local
97 EdgeMap::iterator it = range.first;
98 while (it != range.second) {
  /external/freetype/src/truetype/
ttinterp.h 144 FT_Int curRange; /* current code range number */
145 FT_Byte* code; /* current code range */
147 FT_Long codeSize; /* size of current range */
229 FT_Int range,
234 FT_Int range,
240 FT_Int range );
  /external/proguard/src/proguard/shrink/
ShortestUsagePrinter.java 200 * Returns the line number range of the given class member, followed by a
201 * colon, or just an empty String if no range is available.
205 String range = programMember.getLineNumberRange(programClass); local
206 return range != null ?
207 (" (" + range + ")") :
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 270 bool EditorClient::shouldDeleteRange(Range* range)
273 GRefPtr<WebKitDOMRange> kitRange(adoptGRef(kit(range)));
274 g_signal_emit_by_name(m_webView, "should-delete-range", kitRange.get(), &accept);
308 bool EditorClient::shouldBeginEditing(WebCore::Range* range)
313 GRefPtr<WebKitDOMRange> kitRange(adoptGRef(kit(range)));
318 bool EditorClient::shouldEndEditing(WebCore::Range* range)
323 GRefPtr<WebKitDOMRange> kitRange(adoptGRef(kit(range)));
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
Paper.java 73 // range int [-1/4, 5/4]*mWidth. So if part of the thumbnail is outside
76 int range = 3 * mWidth / 2; local
77 float t = ((range - x) * left - x * right) / range;
78 // compress t to the range (-1, 1) by the function
80 // then multiply by 90 to make the range (-45, 45)
131 // The deltaDistance's magnitude is in the range of -1 (no change) to 1.
  /external/icu4c/common/
unames.c 861 getAlgName(AlgorithmicRange *range, uint32_t code, UCharNameChoice nameChoice,
874 switch(range->type) {
877 const char *s=(const char *)(range+1);
888 count=range->variant;
914 const uint16_t *factors=(const uint16_t *)(range+1);
915 uint16_t count=range->variant;
925 s, code-range->start, indexes, NULL, NULL, buffer, bufferLength);
945 enumAlgNames(AlgorithmicRange *range,
956 switch(range->type) {
962 length=getAlgName(range, (uint32_t)start, nameChoice, buffer, sizeof(buffer))
1226 AlgorithmicRange *range; local
    [all...]
  /external/chromium/chrome/browser/printing/
print_job_worker.cc 119 PageRange range; local
120 if (dict->GetInteger("from", &range.from) &&
121 dict->GetInteger("to", &range.to)) {
123 range.from--;
124 range.to--;
125 new_ranges.push_back(range);

Completed in 758 milliseconds

<<11121314151617181920>>