/external/webkit/WebKit/chromium/public/ |
WebRange.h | 37 namespace WebCore { class Range; } 47 // Provides readonly access to some properties of a DOM range. 74 WebRange(const WTF::PassRefPtr<WebCore::Range>&); 75 WebRange& operator=(const WTF::PassRefPtr<WebCore::Range>&); 76 operator WTF::PassRefPtr<WebCore::Range>() const;
|
/external/iptables/extensions/ |
libipt_SAME.c | 48 /* Parses range of IPs */ 50 parse_to(char *arg, struct ip_nat_range *range) 55 range->flags |= IP_NAT_RANGE_MAP_IPS; 65 range->min_ip = ip->s_addr; 73 range->max_ip = ip->s_addr; 75 if (range->min_ip > range->max_ip) 76 exit_error(PARAMETER_PROBLEM, "Bad IP range `%s-%s'\n", 104 parse_to(optarg, &mr->range[mr->rangesize]); 146 struct ip_nat_range *r = &mr->range[count] [all...] |
/external/webkit/WebCore/page/ |
EditorClient.h | 52 class Range; 87 virtual bool shouldDeleteRange(Range*) = 0; 99 virtual bool shouldBeginEditing(Range*) = 0; 100 virtual bool shouldEndEditing(Range*) = 0; 101 virtual bool shouldInsertNode(Node*, Range*, EditorInsertAction) = 0; 102 virtual bool shouldInsertText(const String&, Range*, EditorInsertAction) = 0; 103 virtual bool shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting) = 0; 105 virtual bool shouldApplyStyle(CSSStyleDeclaration*, Range*) = 0; 108 virtual bool shouldMoveRangeAfterDelete(Range*, Range*) = 0 [all...] |
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebEditorClient.h | 54 virtual bool shouldDeleteRange(WebCore::Range*); 57 virtual bool shouldBeginEditing(WebCore::Range*); 58 virtual bool shouldEndEditing(WebCore::Range*); 59 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction); 60 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction); 61 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity, bool stillSelecting); 63 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*); 65 virtual bool shouldMoveRangeAfterDelete(WebCore::Range* range, WebCore::Range* rangeToBeReplaced); [all...] |
/external/icu4c/common/ |
usetiter.cpp | 53 if (range < endRange) { 54 loadRange(++range); 69 * else the value is a range of codepoints in the <codepoint, codepointEnd> fields. 85 if (range < endRange) { 86 loadRange(++range); 119 range = 0; 123 loadRange(range);
|
rbbisetb.h | 39 UChar32 fStartChar; // Start of range, unicode 32 bit value. 40 UChar32 fEndChar; // End of range, unicode 32 bit value. 41 int32_t fNum; // runtime-mapped input value for this range. 43 // Unicode sets that include this range. 50 void split(UChar32 where, UErrorCode &status); // Spit this range in two at "where", with 52 void setDictionaryFlag(); // Check whether this range appears as part of
|
/external/icu4c/layout/ |
OpenTypeUtilities.cpp | 87 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/webkit/WebKit/mac/DefaultDelegates/ |
WebDefaultEditingDelegate.m | 55 - (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range 60 - (BOOL)webView:(WebView *)webView shouldEndEditingInDOMRange:(DOMRange *)range 65 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action 70 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action 75 - (BOOL)webView:(WebView *)webView shouldDeleteDOMRange:(DOMRange *)range 85 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range 90 - (BOOL)webView:(WebView *)webView shouldMoveRangeAfterDelete:(DOMRange *)range replacingRange:(DOMRange *)rangeToBeReplaced
|
/build/tools/apriori/ |
rangesort.c | 46 static inline int IN_RANGE(range_t *range, GElf_Off point) { 48 range->start <= point && 49 point < (range->start + range->length); 75 FAILIF(1, "Range sorting error: [%lld, %lld) contains [%lld, %lld)!\n", 82 FAILIF(1, "Range sorting error: [%lld, %lld) contains [%lld, %lld)!\n", 89 FAILIF(1, "Range sorting error: [%lld, %lld)and [%lld, %lld) intersect!\n", 139 ASSERT(ranges->is_sorted); /* The range list must be sorted */ 156 ASSERT(ranges->is_sorted); /* The range list must be sorted */ 186 ASSERT(!"Unknown range error code!") [all...] |
/external/webkit/WebKit/gtk/WebCoreSupport/ |
EditorClientGtk.h | 60 virtual bool shouldDeleteRange(WebCore::Range*); 72 virtual bool shouldBeginEditing(WebCore::Range*); 73 virtual bool shouldEndEditing(WebCore::Range*); 74 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction); 75 virtual bool shouldInsertText(const WebCore::String&, WebCore::Range*, WebCore::EditorInsertAction); 76 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity, bool stillSelecting); 78 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*); 80 virtual bool shouldMoveRangeAfterDelete(WebCore::Range*, WebCore::Range*); [all...] |
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ls/ |
LSSerializerFilter.java | 21 * based on the <code>NodeFilter</code> interface defined in [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>] 57 * <br> Unlike [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>] 60 * <br> The constants used here are defined in [<a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>DOM Level 2 Traversal and Range</a>]
|
/external/webkit/WebCore/accessibility/mac/ |
AccessibilityObjectWrapper.mm | 253 static void AXAttributeStringSetFont(NSMutableAttributedString* attrString, NSString* attribute, NSFont* font, NSRange range) 265 [attrString addAttribute:attribute value:dict range:range]; 267 [attrString removeAttribute:attribute range:range]; 294 static void AXAttributeStringSetColor(NSMutableAttributedString* attrString, NSString* attribute, NSColor* color, NSRange range) 297 CGColorRef existingColor = (CGColorRef) [attrString attribute:attribute atIndex:range.location effectiveRange:nil]; 300 [attrString addAttribute:attribute value:(id)cgColor range:range]; 304 [attrString removeAttribute:attribute range:range] [all...] |
/dalvik/dx/src/com/android/dx/ssa/back/ |
FirstFitLocalCombiningAllocator.java | 52 /** list of invoke-range instructions seen in this method */ 61 /** end of rop registers range (starting at 0) reserved for parameters */ 131 if (DEBUG) System.out.println("--->Mapping invoke-range"); 228 * Tries to find an unreserved range that's wide enough for all of 230 * range. If not all fit, a new range is tried until all registers 318 * Marks a range of rop registers as "reserved for a local variable." 328 * Checks to see if any rop registers in the specified range are reserved 332 * @param width {@code > 0;} number of rop registers in range. 333 * @return {@code true} if any register in range is marked reserve [all...] |
/dalvik/vm/mterp/x86-atom/ |
OP_INVOKE_SUPER_QUICK.S | 19 * Code: Optimization for invoke-super and invoke-super/range 21 * For: invoke-super/quick, invoke-super/quick-range 30 and $$15, %edx # %edx<- D if not range
|
/external/easymock/src/org/easymock/internal/ |
Range.java | 20 public class Range implements Serializable {
28 public Range(int count) {
32 public Range(int minimum, int maximum) {
|
/external/icu4c/test/intltest/ |
sfwdchit.h | 40 * in the iteration range 48 * in the iteration range 56 * at or after the current position in the iteration range.
|
/external/iptables/include/libipq/ |
ip_queue_64.h | 30 u_int64_t range; /* Optional range of packet requested */ member in struct:ipq_mode_msg 51 IPQ_COPY_PACKET /* Copy metadata + packet (range) */
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ip_queue.h | 40 size_t range; /* Optional range of packet requested */ member in struct:ipq_mode_msg 61 IPQ_COPY_PACKET /* Copy metadata + packet (range) */
|
/external/proguard/src/proguard/classfile/visitor/ |
ExceptionHandlerFilter.java | 30 * targets an instruction in the given range of offsets. 44 * @param startOffset the start of the instruction offset range. 45 * @param endOffset the end of the instruction offset range.
|
ExceptionRangeFilter.java | 30 * overlaps with the given instruction range. 44 * @param startOffset the start offset of the instruction range. 45 * @param endOffset the end offset of the instruction range.
|
/external/webkit/WebCore/platform/gtk/ |
DataObjectGtk.h | 25 #include "Range.h" 45 void setRange(PassRefPtr<Range> newRange) { m_range = newRange; } 73 RefPtr<Range> m_range;
|
/external/webkit/WebKit/mac/Misc/ |
WebNSAttributedStringExtras.h | 30 class Range; 35 + (NSAttributedString *)_web_attributedStringFromRange:(WebCore::Range*)range;
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
PlainTextController.mm | 53 - (NSString *)plainTextForRange:(DOMRange *)range 55 if (![range isKindOfClass:[DOMRange class]]) 57 return [range text];
|
/frameworks/base/core/tests/coretests/src/android/widget/focus/ |
LinearLayoutGrid.java | 41 throw new IllegalArgumentException("row out of range"); 44 throw new IllegalArgumentException("column out of range"); 60 throw new IllegalArgumentException("column out of range");
|
/dalvik/libcore/awt-kernel/src/main/java/java/awt/font/ |
NumericShaper.java | 44 * The Constant EUROPEAN indicates the latin and extended range, 49 /** The Constant ARABIC indicates the ARABIC range and decimal base. */ 53 * The Constant EASTERN_ARABIC indicates the ARABIC range and 59 * The Constant DEVANAGARI indicates the DEVANAGARI range and 64 /** The Constant BENGALI indicates the BENGALI range and decimal base. */ 67 /** The Constant GURMUKHI indicates the GURMUKHI range and decimal base. */ 70 /** The Constant GUJARATI indicates the GUJARATI range and decimal base. */ 73 /** The Constant ORIYA indicates the ORIYA range and decimal base. */ 76 /** The Constant TAMIL indicates the TAMIL range and decimal base. */ 79 /** The Constant TELUGU indicates the TELUGU range and decimal base. * [all...] |