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

1 23 4 5 6 7 8 91011>>

  /external/libsepol/src/
mls.c 113 unsigned int i, l, len, range; local
121 range = 0;
124 p_sens_val_to_name[context->range.level[l].sens -
127 ebitmap_for_each_bit(&context->range.level[l].cat, cnode, i) {
129 if (range) {
130 range++;
136 range++;
138 if (range > 1)
143 range = 0;
146 /* Handle case where last category is the end of range */
172 unsigned int i, l, range, wrote_sep; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMismatchedRangeException.h 34 NSRange range; variable
37 @property (assign) NSRange range; variable
ANTLRFastQueue.h 39 NSUInteger range; variable
44 @property (assign) NSUInteger range; variable
57 - (NSUInteger) range;
  /external/webkit/Source/WebCore/css/
CSSPropertySourceData.cpp 57 CSSPropertySourceData::CSSPropertySourceData(const String& name, const String& value, bool important, bool parsedOk, const SourceRange& range)
62 , range(range)
71 , range(other.range)
80 , range(SourceRange(0, 0))
  /external/webkit/Source/WebCore/dom/
DOMTextContentWalker.cpp 30 #include "Range.h"
38 static PassRefPtr<Range> getRange(const Position& start, const Position& end)
47 RefPtr<Range> forwardRange = makeRange(position, endOfDocument(position));
54 if (getRange(position.deepEquivalent(), forwardChar.range()->startPosition())->text().length() == 0)
57 RefPtr<Range> backwardsRange = makeRange(startOfDocument(position), position);
63 m_hitOffsetInContent = getRange(backwardsChar.range()->endPosition(), position.deepEquivalent())->text().length();
64 m_contentRange = getRange(backwardsChar.range()->endPosition(), forwardChar.range()->startPosition());
67 PassRefPtr<Range> DOMTextContentWalker::contentOffsetsToRange(unsigned startInContent, unsigned endInContent)
75 Position start = iterator.range()->startPosition()
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebEditingDelegate.h 42 - (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range;
43 - (BOOL)webView:(WebView *)webView shouldEndEditingInDOMRange:(DOMRange *)range;
44 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
45 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action;
46 - (BOOL)webView:(WebView *)webView shouldDeleteDOMRange:(DOMRange *)range;
48 - (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range;
  /external/webkit/Tools/DumpRenderTree/mac/
PlainTextController.mm 53 - (NSString *)plainTextForRange:(DOMRange *)range
55 if (![range isKindOfClass:[DOMRange class]])
57 return [range text];
EditingDelegate.mm 60 return [NSString stringWithFormat:@"range from %ld of %@ to %ld of %@", [self startOffset], [[self startContainer] dumpPath], [self endOffset], [[self endContainer] dumpPath]];
75 - (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range
78 printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", [[range dump] UTF8String]);
82 - (BOOL)webView:(WebView *)webView shouldEndEditingInDOMRange:(DOMRange *)range
85 printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", [[range dump] UTF8String]);
89 - (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
98 printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n", [[node dumpPath] UTF8String], [[range dump] UTF8String], insertactionstring[action]);
102 - (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action
111 printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n", [[text description] UTF8String], [[range dump] UTF8String], insertactionstring[action]);
115 - (BOOL)webView:(WebView *)webView shouldDeleteDOMRange:(DOMRange *)range
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularContiguousSet.java 37 private final Range<C> range; field in class:RegularContiguousSet
39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) {
41 this.range = range;
46 return range.intersection(Ranges.upTo(toElement, BoundType.forBoolean(inclusive)))
58 return range.intersection(Ranges.range(fromElement, BoundType.forBoolean(fromInclusive),
64 return range.intersection(Ranges.downTo(fromElement, BoundType.forBoolean(inclusive))
144 @Override public Range<C> range() { method
148 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { method
173 final Range<C> range; field in class:SerializedForm
    [all...]
  /external/webkit/Source/WebCore/platform/text/
UnicodeRange.cpp 40 // 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...]
  /libcore/luni/src/main/java/java/text/
AttributedString.java 39 Map<AttributedCharacterIterator.Attribute, List<Range>> attributeMap;
41 static class Range {
48 Range(int s, int e, Object v) {
154 private boolean inRange(Range range) {
155 if (!(range.value instanceof Annotation)) {
158 return range.start >= begin && range.start < end
159 && range.end > begin && range.end <= end
165 Range range = it.next(); local
209 Range range = it.next(); local
257 Range range = it.previous(); local
305 Range range = it.next(); local
634 Range range = it.next(); local
    [all...]
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 84 /// ReplaceText - This method replaces a range of characters in the input
131 /// \brief Given a source range, true to include previous inserts at the
132 /// beginning of the range as part of the range itself (true by default).
134 /// \brief Given a source range, true to include previous inserts at the
135 /// end of the range as part of the range itself (true by default).
166 /// getRangeSize - Return the size in bytes of the specified range if they
168 int getRangeSize(SourceRange Range,
170 int getRangeSize(const CharSourceRange &Range,
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
FastQueue.java 49 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/webkit/Source/WebKit/android/content/
content_detector.h 58 WebKit::WebRange range; // Range describing the content boundaries. member in struct:ContentDetector::Result
64 Result(const WebKit::WebRange& range,
68 range(range),
75 // Returns a WebKit range delimiting the contents found around the tapped
76 // position. If no content is found a null range will be returned.
93 virtual std::string GetContentText(const WebKit::WebRange& range) = 0;
  /external/freetype/src/sfnt/
ttsbit.c 233 /* range :: The target range. */
241 Load_SBit_Const_Metrics( TT_SBit_Range range,
247 if ( FT_READ_ULONG( range->image_size ) )
250 return FT_STREAM_READ_FIELDS( sbit_metrics_fields, &range->metrics );
260 /* Loads the range codes for `EBLC' index tables format 4 and 5. */
263 /* range :: The target range. */
273 Load_SBit_Range_Codes( TT_SBit_Range range,
285 range->num_glyphs = count
542 TT_SBit_Range range; local
624 TT_SBit_Range range = strike->sbit_ranges; local
714 TT_SBit_RangeRec *range, *range_limit; local
1457 TT_SBit_Range range; local
    [all...]
  /external/libvpx/vp8/decoder/
detokenize.c 89 /*if(range < 0x80)*/ \
91 shift = vp8dx_bitreader_norm[range]; \
92 range <<= shift; \
98 split = (range + 1) >> 1; \
103 range = split; \
108 range = range-split; \
112 range +=range; \
118 split = 1 + ((( probability*(range-1) ) )>> 8);
200 register unsigned int range; local
    [all...]
  /external/libppp/src/
ncp.c 371 ncp_IsUrgentPort(struct port_range *range, u_short src, u_short dst)
375 for (f = 0; f < range->nports; f++)
376 if (range->port[f] == src || range->port[f] == dst)
383 ncp_AddUrgentPort(struct port_range *range, u_short port)
388 if (range->nports == range->maxports) {
389 range->maxports += 10;
390 newport = (u_short *)realloc(range->port,
391 range->maxports * sizeof(u_short))
    [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);
  /external/llvm/unittests/ADT/
DAGDeltaAlgorithmTest.cpp 49 std::set<unsigned> range(unsigned Start, unsigned End) { function in namespace:__anon10773
56 std::set<unsigned> range(unsigned N) { function in namespace:__anon10773
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/mesa3d/src/glsl/builtins/tools/
generate_transposeGLSL.py 13 for i in range(x):
14 for j in range(y):
  /external/webkit/Source/WebCore/platform/text/mac/
TextBoundaries.mm 38 NSRange range = [attr doubleClickAtIndex:(position >= len) ? len - 1 : position];
41 *start = range.location;
42 *end = range.location + range.length;
  /external/clang/lib/Edit/
Commit.cpp 60 CharSourceRange range,
64 if (!canRemoveRange(range, RangeOffs, RangeLen)) {
77 PPRec->areInDifferentConditionalDirectiveRegion(loc, range.getBegin())) {
86 bool Commit::remove(CharSourceRange range) {
89 if (!canRemoveRange(range, Offs, Len)) {
94 addRemove(range.getBegin(), Offs, Len);
98 bool Commit::insertWrap(StringRef before, CharSourceRange range,
100 bool commitableBefore = insert(range.getBegin(), before, /*afterToken=*/false,
103 if (range.isTokenRange())
104 commitableAfter = insertAfterToken(range.getEnd(), after)
    [all...]
  /external/iptables/extensions/
libipt_REDIRECT.c 21 " Port (range) to map to.\n"
46 mr->range[0].flags |= IP_NAT_RANGE_PROTO_SPECIFIED;
54 mr->range[0].min.tcp.port
55 = mr->range[0].max.tcp.port
66 mr->range[0].min.tcp.port = htons(port);
67 mr->range[0].max.tcp.port = htons(maxport);
98 mr->range[0].flags |= IP_NAT_RANGE_PROTO_RANDOM;
102 mr->range[0].flags |= IP_NAT_RANGE_PROTO_RANDOM;
111 const struct nf_nat_range *r = &mr->range[0];
118 if (mr->range[0].flags & IP_NAT_RANGE_PROTO_RANDOM
    [all...]
libipt_SAME.c 38 /* Parses range of IPs */
39 static void parse_to(const char *orig_arg, struct nf_nat_range *range)
47 range->flags |= IP_NAT_RANGE_MAP_IPS;
57 range->min_ip = ip->s_addr;
65 range->max_ip = ip->s_addr;
67 if (range->min_ip > range->max_ip)
68 xtables_error(PARAMETER_PROBLEM, "Bad IP range \"%s-%s\"\n",
86 parse_to(cb->arg, &mr->range[mr->rangesize]);
89 mr->range[mr->rangesize].flags
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
MidpointDisplacementHeightMap.java 48 private float range; // The offset in which randomness will be added field in class:MidpointDisplacementHeightMap
57 * The random value is generated between the values <code>-range</code>
58 * and <code>range</code>. The <code>range</code> parameter is multiplied by
66 * @param range
67 * The range in which randomness will be added. A value of 1 will
70 * The factor by which the range will evolve at each iteration.
71 * A value of 0.5f will halve the range at each iteration and is
77 public MidpointDisplacementHeightMap(int size, float range, float persistence, long seed) throws Exception {
83 this.range = range;
    [all...]

Completed in 389 milliseconds

1 23 4 5 6 7 8 91011>>