Searched refs:hasMore (Results 1 - 25 of 36) sorted by relevance

12

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeInput.java29 public boolean hasMore(); method in interface:CodeInput
H A DShortArrayCodeInput.java41 public boolean hasMore() { method in class:ShortArrayCodeInput
H A DDecodedInstruction.java88 while (in.hasMore()) {
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DLeb128Utils.java64 boolean hasMore = true;
67 while (hasMore) {
68 hasMore = (remaining != end)
150 boolean hasMore = true;
153 while (hasMore) {
154 hasMore = (remaining != end)
157 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
/external/chromium_org/v8/test/fuzz-natives/
H A Dbase.js69 var hasMore = true;
71 while (hasMore) {
84 hasMore = false;
90 hasMore = true;
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncId.java65 boolean hasMore = tokenizer.hasMoreTokens();
68 while (hasMore)
71 hasMore = tokenizer.hasMoreTokens();
85 if ((null != ref) && (hasMore || mayBeMore))
/external/chromium_org/third_party/WebKit/Source/platform/
H A DAsyncFileSystemCallbacks.h67 // Called after a chunk of directory entries have been read (i.e. indicates it's good time to call back to the application). If hasMore is true there can be more chunks.
68 virtual void didReadDirectoryEntries(bool hasMore) { ASSERT_NOT_REACHED(); } argument
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFileSystemCallbacks.h84 // multiple times if the directory has many entries. |hasMore| must be
86 BLINK_PLATFORM_EXPORT void didReadDirectory(const WebVector<WebFileSystemEntry>&, bool hasMore);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebFileSystemCallbacks.cpp113 void WebFileSystemCallbacks::didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore) argument
118 m_private->callbacks()->didReadDirectoryEntries(hasMore);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueList.h99 bool hasMore() const { return m_position < m_inspector.length(); } function in class:blink::CSSValueListIterator
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileSystemCallbacks.cpp186 void EntriesCallbacks::didReadDirectoryEntries(bool hasMore) argument
188 m_directoryReader->setHasMoreEntries(hasMore);
196 if (!hasMore)
H A DFileSystemCallbacks.h108 virtual void didReadDirectoryEntries(bool hasMore) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilderConverter.h93 for (CSSValueListIterator i(value); i.hasMore(); i.advance())
H A DStyleBuilderConverter.cpp303 currentValue = it.hasMore() ? toCSSPrimitiveValue(it.value()) : 0;
309 currentValue = it.hasMore() ? toCSSPrimitiveValue(it.value()) : 0;
317 ASSERT(!it.hasMore());
351 for (CSSValueListIterator i = value; i.hasMore(); i.advance()) {
355 for (CSSValueListIterator j = lineNamesValue; j.hasMore(); j.advance()) {
H A DFilterOperationResolver.cpp91 for (CSSValueListIterator i = inValue; i.hasMore(); i.advance()) {
H A DStyleBuilderCustom.cpp550 for (CSSValueListIterator i(value); i.hasMore(); i.advance()) {
896 for (CSSValueListIterator i(value); i.hasMore(); i.advance()) {
932 for (CSSValueListIterator i = value; i.hasMore(); i.advance()) {
H A DFontBuilder.cpp170 for (CSSValueListIterator i = value; i.hasMore(); i.advance()) {
H A DTransformBuilder.cpp91 for (CSSValueListIterator i = inValue; i.hasMore(); i.advance()) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DIndexedDBViews.js309 * @param {boolean} hasMore
312 function callback(entries, hasMore)
330 this._pageForwardButton.disabled = !hasMore;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DIndexedDBModel.js393 * @param {boolean} hasMore
396 function innerCallback(error, dataEntries, hasMore)
412 callback(entries, hasMore);
/external/javassist/src/main/javassist/compiler/
H A DJavac.java214 if (p.hasMore())
565 while (p.hasMore()) {
/external/clang/lib/Analysis/
H A DPrintfFormatString.cpp101 bool hasMore = true; local
104 default: hasMore = false; break;
115 if (!hasMore)
/external/clang/include/clang/Analysis/
H A DCFG.h585 while (hasMore() && Filter(*I))
589 bool hasMore() const { return I != E; } function in class:clang::CFGBlock::ElementList::FilteredCFGBlockIterator
592 do { ++I; } while (hasMore() && Filter(*I));
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DInspectorIndexedDBAgent.cpp465 void end(bool hasMore) argument
469 m_requestCallback->sendSuccess(m_result.release(), hasMore);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.cpp2481 ASSERT(hasMore());
2487 bool hasMore() const { return m_colIndex >= 0; } function in class:blink::ColumnRectIterator
2528 for (ColumnRectIterator it(*this); it.hasMore(); it.advance()) {
2550 for (ColumnRectIterator it(*this); it.hasMore(); it.advance()) {

Completed in 1652 milliseconds

12