/external/libffi/src/s390/ |
sysv.S | 177 .4byte .LFE1-.LFB1 # FDE address range 216 .4byte .LFE2-.LFB2 # FDE address range 376 .4byte .LFE1-.LFB1 # FDE address range 415 .4byte .LFE2-.LFB2 # FDE address range
|
/external/llvm/lib/TableGen/ |
TGLexer.cpp | 394 return ReturnError(TokStart, "Hexadecimal number out of range");
|
/external/llvm/utils/lit/lit/ |
Util.py | 111 histo = [set() for i in range(N)] 129 print "[%s] :: [%s] :: [%s]" % ('Range'.center((pDigits+1)*2 + 3),
|
/external/markdown/markdown/extensions/ |
toc.py | 55 for i in range(len(p)):
|
/external/protobuf/gtest/test/ |
gtest_xml_test_utils.py | 83 for i in range(expected_attributes.length):
|
/external/webkit/Source/WebCore/editing/ |
MarkupAccumulator.h | 40 class Range; 69 MarkupAccumulator(Vector<Node*>* nodes, EAbsoluteURLs shouldResolveURLs, const Range* range = 0); 83 void appendNodeValue(Vector<UChar>& out, const Node*, const Range*, EntityMask); 105 const Range* const m_range;
|
VisibleSelection.cpp | 35 #include "Range.h" 82 VisibleSelection::VisibleSelection(const Range* range, EAffinity affinity) 83 : m_base(range->startPosition()) 84 , m_extent(range->endPosition()) 120 PassRefPtr<Range> VisibleSelection::firstRange() const 126 return Range::create(start.anchorNode()->document(), start, end); 129 PassRefPtr<Range> VisibleSelection::toNormalizedRange() const 146 // If the selection is a caret, move the range start upstream. This helps us match 152 // If the selection is a range, select the minimum range that encompasses the selection [all...] |
/external/webkit/Source/WebCore/html/ |
InputType.h | 272 const AtomicString& range();
|
/external/webkit/Source/WebCore/loader/archive/cf/ |
LegacyWebArchive.cpp | 46 #include "Range.h" 458 PassRefPtr<LegacyWebArchive> LegacyWebArchive::create(Range* range) 460 if (!range) 463 Node* startContainer = range->startContainer(); 478 String markupString = frame->documentTypeString() + createMarkup(range, &nodeList, AnnotateForInterchange); 566 RefPtr<Range> selectionRange = frame->selection()->toNormalizedRange();
|
/external/webkit/Source/WebCore/platform/mac/ |
WebCoreSystemInterface.mm | 175 CFTypeRef (*wkCopyAXTextMarkerRangeStart)(CFTypeRef range); 176 CFTypeRef (*wkCopyAXTextMarkerRangeEnd)(CFTypeRef range);
|
/external/webkit/Source/WebCore/storage/ |
IDBObjectStoreBackendImpl.cpp | 455 RefPtr<IDBKeyRange> range = prpRange; local 458 if (!transaction->scheduleTask(createCallbackTask(&IDBObjectStoreBackendImpl::openCursorInternal, objectStore, range, direction, callbacks, transaction))) 462 void IDBObjectStoreBackendImpl::openCursorInternal(ScriptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl> objectStore, PassRefPtr<IDBKeyRange> range, unsigned short tmpDirection, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<IDBTransactionBackendInterface> transaction) 466 RefPtr<IDBBackingStore::Cursor> backingStoreCursor = objectStore->m_backingStore->openObjectStoreCursor(objectStore->m_databaseId, objectStore->id(), range.get(), direction);
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebEditorClient.h | 55 virtual bool shouldDeleteRange(WebCore::Range*); 58 virtual bool shouldBeginEditing(WebCore::Range*); 59 virtual bool shouldEndEditing(WebCore::Range*); 60 virtual bool shouldInsertNode(WebCore::Node*, WebCore::Range*, WebCore::EditorInsertAction); 61 virtual bool shouldInsertText(const WTF::String&, WebCore::Range*, WebCore::EditorInsertAction); 62 virtual bool shouldChangeSelectedRange(WebCore::Range* fromRange, WebCore::Range* toRange, WebCore::EAffinity, bool stillSelecting); 64 virtual bool shouldApplyStyle(WebCore::CSSStyleDeclaration*, WebCore::Range*); 66 virtual bool shouldMoveRangeAfterDelete(WebCore::Range* range, WebCore::Range* rangeToBeReplaced); [all...] |
/external/webkit/Tools/CygwinDownloader/ |
cygwin-downloader.py | 42 package_mirror_url = mirror_servers[random.choice(range(len(mirror_servers)))]
|
/external/webkit/WebKitLibraries/ |
WebKitSystemInterface.h | 83 CFTypeRef WKCopyAXTextMarkerRangeStart(CFTypeRef range); 84 CFTypeRef WKCopyAXTextMarkerRangeEnd(CFTypeRef range); 139 NSFont *WKGetFontInLanguageForRange(NSFont *font, NSString *string, NSRange range); 462 NSRange WKExtractWordDefinitionTokenRangeFromContextualString(NSString *contextString, NSRange range, NSDictionary **options);
|
/frameworks/ex/common/tools/ |
make-iana-tld-pattern.py | 116 for letter in range(ord('b'), ord('z')):
|
/hardware/invensense/mlsdk/platform/include/linux/ |
mpu.h | 234 * @range: full scale range of the slave ouput: struct fix_pnt_range 273 struct fix_pnt_range range; member in struct:ext_slave_descr
|
/libcore/luni/src/test/java/tests/api/java/util/ |
EnumSetTest.java | 125 set = EnumSet.range(HugeEnumCount.NO1, HugeEnumCount.NO65); 133 set = EnumSet.range(HugeEnumCount.NO1, HugeEnumCount.NO130); [all...] |
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_edit_view_gtk.cc | 85 // Range of selected text. 254 g_signal_connect(text_buffer_, "delete-range", 558 CharRange range(static_cast<int>(caret_pos), static_cast<int>(caret_pos)); 559 SetTextAndSelectedRange(text, range); 646 CharRange range(display_text.size(), user_text_length); 647 SetTextAndSelectedRange(display_text, range); [all...] |
/external/linux-tools-perf/util/ |
probe-event.c | 367 * Show line-range always requires debuginfo to find source file and 378 /* Search a line range */ 591 * Stuff 'lr' according to the line range described by 'arg'. 592 * The line range syntax is described by: 599 char *range, *file, *name = strdup(arg); local 608 range = strchr(name, ':'); 609 if (range) { 610 *range++ = '\0'; 612 err = parse_line_num(&range, &lr->start, "start line"); 616 if (*range == '+' || *range == '-') [all...] |
/external/webkit/Source/WebCore/dom/ |
Range.cpp | 25 #include "Range.h" 51 static WTF::RefCountedLeakCounter rangeCounter("Range"); 56 inline Range::Range(PassRefPtr<Document> ownerDocument) 68 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument) 70 return adoptRef(new Range(ownerDocument)); 73 inline Range::Range(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset) 93 PassRefPtr<Range> Range::create(PassRefPtr<Document> ownerDocument, PassRefPtr<Node> startContainer, int startOffse (…) 1703 RefPtr<Range> range = Range::create(node->document()); local [all...] |
/external/checkpolicy/ |
policy_scan.l | 127 RANGE | 128 range { return(RANGE); }
|
/external/chromium/net/websockets/ |
websocket_handshake.cc | 217 uint64 range = static_cast<int64>(max) - min + 1; local 221 uint32 result = min + static_cast<uint32>(number % range);
|
/external/clang/include/clang/AST/ |
TypeLoc.h | 96 /// \brief Get the full source range. 103 /// \brief Get the local source range. 707 void setAttrOperandParensRange(SourceRange range) { 709 getLocalData()->OperandParens = range; 713 // Note that this does *not* include the range of the attribute 722 SourceRange range(getAttrNameLoc()); 724 range.setEnd(getAttrOperandParensRange().getEnd()); 725 return range; [all...] |
/external/clang/lib/Frontend/ |
DiagnosticRenderer.cpp | 50 // range. This is where the macro name was spelled in order to begin 79 virtual void replace(CharSourceRange range, StringRef text) { 80 MergedFixits.push_back(FixItHint::CreateReplacement(range, text));
|
/external/easymock/src/org/easymock/internal/ |
RecordState.java | 216 public void times(Range range) {
221 : Result.createReturnResult(null), range);
|