Searched defs:range (Results 1 - 25 of 249) sorted by relevance

12345678910

/external/webkit/Tools/DumpRenderTree/qt/
H A DPlainTextControllerQt.cpp41 QString PlainTextController::plainText(const QVariant& range) argument
43 return DumpRenderTreeSupportQt::plainText(range);
/external/freetype/src/base/
H A Dftgasp.c38 TT_GaspRange range = ttface->gasp.gaspRanges; local
39 TT_GaspRange range_end = range + ttface->gasp.numRanges;
42 while ( ppem > range->maxPPEM )
44 range++;
45 if ( range >= range_end )
49 result = range->gaspFlag;
/external/webkit/LayoutTests/fast/dom/Selection/script-tests/
H A DgetRangeAt.js1 description("Test to make sure that getRangeAt does not modify the range when returning it.")
10 var range = sel.getRangeAt(0); variable
12 var result = range.comparePoint(textNode, 0);
14 testPassed("range is correctly (text, 0)");
16 testFailed("range did not match (text, 0)");
24 debug("startContainer: " + range.startContainer);
25 debug("startOffset: " + range.startOffset);
26 debug("endContainer: " + range.endContainer);
27 debug("endOffset: " + range.endOffset);
/external/webkit/Source/WebKit/wx/
H A DWebDOMSelection.cpp61 WTF::RefPtr<WebCore::Range> range = m_selection->toNormalizedRange(); local
64 if (range) {
65 range->ref();
66 return new WebDOMRange(range.get());
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
H A DUtilities.js37 function range(n) { function
/external/chromium/base/
H A Drand_util.cc19 uint64 range = static_cast<uint64>(max) - min + 1; local
20 int result = min + static_cast<int>(base::RandGenerator(range));
28 // produce output in the range [0, 1). For IEEE 754 doubles, the mantissa
/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_SAME.h15 struct nf_nat_range range[IPT_SAME_MAX_RANGE]; member in struct:ipt_same_info
/external/libvpx/vp8/encoder/
H A Dboolhuff.h26 unsigned int range; member in struct:__anon6242
/external/antlr/src/org/antlr/runtime/
H A DTokenStream.java45 int range(); method in interface:TokenStream
/external/chromium/net/http/
H A Dhttp_byte_range_unittest.cc27 net::HttpByteRange range; local
28 range.set_first_byte_position(tests[i].first_byte_position);
29 range.set_last_byte_position(tests[i].last_byte_position);
30 range.set_suffix_length(tests[i].suffix_length);
31 EXPECT_EQ(tests[i].valid, range.IsValid());
59 net::HttpByteRange range; local
60 range.set_first_byte_position(tests[i].first_byte_position);
61 range.set_last_byte_position(tests[i].last_byte_position);
62 range.set_suffix_length(tests[i].suffix_length);
64 bool return_value = range
[all...]
/external/clang/test/CodeGenCXX/
H A Dreference-in-blocks.cpp5 template<typename T> class range { class
8 range(T i) {_i = i;}; function in class:range
35 void (^bl)(range<int> ) = ^(range<int> i){printf("Hello Blocks %d\n", i.get()); };
38 void (^bl2)(range<int>& ) = ^(range<int>& i){printf("Hello Blocks %d\n", i.get()); };
/external/easymock/src/org/easymock/internal/
H A DResults.java33 public void add(Result result, Range range) { argument
41 ranges.add(range);
/external/icu4c/test/intltest/
H A Ddtfmtrtts.h65 * Return a random value from -range..+range (closed).
67 static double randDouble(double range) argument
72 return (2.0 * range * a) - range;
/external/webkit/Source/WebCore/platform/graphics/
H A DSegmentedFontData.h58 void appendRange(const FontDataRange& range) { m_ranges.append(range); } argument
/external/webkit/Source/WebCore/platform/text/
H A DUnicodeRange.cpp40 // This table depends on unicode range definitions.
41 // Each item's index must correspond to a unicode range value
380 // code points so that the number of entries in the tertiary range
381 // table for that range is obtained by dividing (0x1700 - 0x0700) by 128.
422 // A two level index is almost enough for locating a range, with the
423 // exception of u03xx and u05xx. Since we don't really care about range for
435 unsigned int range; local
438 range = gUnicodeSubrangeTable[0][ch >> 12];
440 if (range < cRangeTableBase)
441 // we try to get a specific range
[all...]
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/
H A DInjectedBundleRangeHandle.cpp44 PassRefPtr<InjectedBundleRangeHandle> InjectedBundleRangeHandle::getOrCreate(Range* range) argument
46 if (!range)
49 std::pair<DOMHandleCache::iterator, bool> result = domHandleCache().add(range, 0);
53 RefPtr<InjectedBundleRangeHandle> rangeHandle = InjectedBundleRangeHandle::create(range);
58 PassRefPtr<InjectedBundleRangeHandle> InjectedBundleRangeHandle::create(Range* range) argument
60 return adoptRef(new InjectedBundleRangeHandle(range));
63 InjectedBundleRangeHandle::InjectedBundleRangeHandle(Range* range) argument
64 : m_range(range)
/external/antlr/src/org/antlr/runtime/misc/
H A DFastQueue.java49 protected int range = -1; // how deep have we gone? field in class:FastQueue
70 public int range() { return range; } method in class:FastQueue
86 if ( absIndex>range ) range = absIndex;
/external/clang/include/clang/ARCMigrate/
H A DARCMT.h100 virtual void remove(CharSourceRange range) { } argument
/external/icu4c/common/unicode/
H A Dusetiter.h83 * iteration range, if <tt>codepoint != IS_STRING</tt>. If
127 * code point range, depending on whether <tt>next()</tt> or
134 * of the range, and <tt>getCodepointEnd()</tt> returns the end
135 * of the range.
148 * Returns the end of the current code point range, if
193 * Returns the next element in the set, either a code point range
197 * range of one or more code points from <tt>getCodepoint()</tt> to
253 /** End range
260 int32_t range; member in class:UnicodeSetIterator
296 /** Load range
[all...]
/external/icu4c/layout/
H A DOpenTypeUtilities.cpp87 le_int32 range = 0; local
94 range = extra;
100 if (SWAPW(records[range + probe].firstGlyph) <= glyphID) {
101 range += probe;
105 if (SWAPW(records[range].firstGlyph) <= glyphID && SWAPW(records[range].lastGlyph) >= glyphID) {
106 return range;
/external/llvm/unittests/ADT/
H A DDAGDeltaAlgorithmTest.cpp49 std::set<unsigned> range(unsigned Start, unsigned End) { function in namespace:__anon7157
56 std::set<unsigned> range(unsigned N) { function in namespace:__anon7157
57 return range(0, N);
72 EXPECT_EQ(fixed_set(4, 1, 3, 5, 7), FDA.Run(range(20), Deps));
91 EXPECT_EQ(fixed_set(4, 0, 1, 2, 3), FDA2.Run(range(5), Deps));
100 EXPECT_EQ(fixed_set(2, 0, 4), FDA3.Run(range(5), Deps));
/external/webkit/Source/WebCore/css/
H A DCSSPropertySourceData.cpp57 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range) argument
62 , range(range)
71 , range(other.range)
80 , range(SourceRange(0, 0))
H A DCSSPropertySourceData.h55 CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range);
66 SourceRange range; member in struct:WebCore::CSSPropertySourceData
/external/bluetooth/bluez/test/
H A Dsdptest.c64 uint32_t range = 0x0000ffff; local
79 attrids = sdp_list_append(NULL, &range);
/external/chromium/chrome/browser/profiles/
H A Dprofile_dependency_manager.cc95 std::pair<EdgeMap::iterator, EdgeMap::iterator> range = local
97 EdgeMap::iterator it = range.first;
98 while (it != range.second) {

Completed in 594 milliseconds

12345678910