HomeSort by relevance Sort by last modified time
    Searched refs:ranges (Results 76 - 100 of 164) sorted by null

1 2 34 5 6 7

  /external/webkit/Source/WebCore/platform/graphics/gtk/
FontGtk.cpp 294 int ranges[] = {start - utf8, end - utf8}; local
295 partialRegion = gdk_pango_layout_line_get_clip_region(layoutLine, 0, 0, ranges, 1);
  /prebuilts/tools/common/m2/internal/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 
  /prebuilts/tools/common/m2/internal/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar 
  /dalvik/vm/compiler/codegen/x86/
AnalysisO1.h 213 //!information for a virtual register such as live ranges, in memory
220 LiveRange* ranges; member in struct:MemoryVRInfo
AnalysisO1.cpp 173 LiveRange* ranges
491 memVRTable[num_memory_vr].ranges = NULL;
507 memVRTable[num_memory_vr].ranges = NULL;
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.cc 925 std::set<std::pair<int, int> > ranges; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
FixImportsJob.java 109 ISourceRange[] ranges) {
  /external/v8/src/
parser.cc 5206 ZoneList<CharacterRange>* ranges = local
5277 ZoneList<CharacterRange>* ranges = local
5774 ZoneList<CharacterRange>* ranges = new(zone()) ZoneList<CharacterRange>(2); local
    [all...]
ast.h 2345 ZoneList<CharacterRange>* ranges() { return set_.ranges(); } function in class:v8::internal::RegExpCharacterClass
    [all...]
ast.cc 840 for (int i = 0; i < that->ranges()->length(); i++) {
842 VisitCharacterRange(that->ranges()->at(i));
    [all...]
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp 475 // live-range starts. If there are no intervening live ranges between them in
529 LiveInterval::Ranges::iterator BI =
530 std::upper_bound(IntB.ranges.begin(), IntB.ranges.end(), AI->start);
531 if (BI != IntB.ranges.begin())
533 for (; BI != IntB.ranges.end() && AI->end >= BI->start; ++BI) {
714 // Extend BValNo by merging in IntA live ranges of AValNo. Val# definition
    [all...]
  /external/opencv/cv/src/
cvmotempl.cpp 299 float* ranges = _ranges; local
328 CV_CALL( hist = cvCreateHist( 1, &hist_size, CV_HIST_ARRAY, &ranges ));
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp 316 WCHAR start = glyphset->ranges[i].wcLow;
317 cmap->add(start, start + glyphset->ranges[i].cGlyphs - 1);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 1025 setTest(ranges) ::= <<
1026 <ranges; separator=" || ">
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 184 // Make the ranges of the start and end point self-consistent with adjacent edges
231 // Output the ranges (if any).
232 ArrayRef<SourceRange> Ranges = P.getRanges();
234 if (!Ranges.empty()) {
235 Indent(o, indent) << "<key>ranges</key>\n";
238 for (ArrayRef<SourceRange>::iterator I = Ranges.begin(), E = Ranges.end();
358 // ranges of the diagnostics.
383 ArrayRef<SourceRange> Ranges = piece->getRanges();
384 for (ArrayRef<SourceRange>::iterator I = Ranges.begin()
    [all...]
  /external/icu4c/tools/gennorm2/
n2builder.cpp 73 if(rangeIndex<LENGTHOF(ranges)) {
74 return ranges+rangeIndex++;
81 static const Range ranges[4]; member in class:HangulIterator
85 const HangulIterator::Range HangulIterator::ranges[4]={ member in class:HangulIterator
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bsd.sh 144 echo Testing address ranges
  /external/webkit/Source/WebCore/inspector/front-end/
SourceFrame.js 443 _collectRegexMatches: function(regexObject, ranges)
451 ranges.push(new WebInspector.TextRange(i, offset + match.index, i, offset + match.index + match[0].length));
457 return ranges;
    [all...]
  /external/libxml2/
xmlregexp.c 196 xmlRegRangePtr *ranges; member in struct:_xmlRegAtom
813 xmlRegFreeRange(atom->ranges[i]);
814 if (atom->ranges != NULL)
815 xmlFree(atom->ranges);
851 ret->ranges = (xmlRegRangePtr *) xmlMalloc(sizeof(xmlRegRangePtr) *
853 if (ret->ranges == NULL) {
858 ret->ranges[i] = xmlRegCopyRange(ctxt, atom->ranges[i]);
859 if (ret->ranges[i] == NULL)
947 fprintf(output, "ranges "); break
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrJIT.cpp 114 void matchCharacterClassRange(RegisterID character, JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount)
119 char lo = ranges[which].begin;
120 char hi = ranges[which].end;
122 // check if there are any ranges or matches below lo. If not, just jl to failure -
127 // generate code for all ranges before this one
129 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
141 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
156 ranges += next;
    [all...]
  /external/opencv/cv/include/
cv.h     [all...]
  /external/v8/test/mjsunit/
cyrillic.js 28 // Test Unicode character ranges in regexps.
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg     [all...]
  /external/chromium/base/metrics/
histogram.h 268 typedef int Sample; // Used for samples (and ranges of samples).
275 typedef std::vector<Sample> Ranges;
409 // 0x8000 means print ranges in hex.
429 // Check to see if bucket ranges, counts and tallies in the snapshot are
430 // consistent with the bucket ranges and checksums in our histogram. This can
443 virtual Sample ranges(size_t i) const;
566 Ranges ranges_;
568 // For redundancy, we store a checksum of all the sample ranges when ranges
628 // For some ranges, we store a printable description of a bucket range
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 2512 StyleRange[] ranges = mErrorLabel.getStyleRanges(); local
    [all...]

Completed in 725 milliseconds

1 2 34 5 6 7