Searched refs:hasMore (Results 1 - 25 of 37) 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/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DLeb128Utils.java72 boolean hasMore = true;
75 while (hasMore) {
76 hasMore = (remaining != end)
H A DByteArrayOutput.java252 boolean hasMore = true;
255 while (hasMore) {
256 hasMore = (remaining != end)
259 writeByte((value & 0x7f) | (hasMore ? 0x80 : 0));
H A DByteArrayAnnotatedOutput.java258 boolean hasMore = true;
261 while (hasMore) {
262 hasMore = (remaining != end)
265 writeByte((value & 0x7f) | (hasMore ? 0x80 : 0));
/external/v8/test/mjsunit/
H A Dfuzz-natives.js84 var hasMore = true;
86 while (hasMore) {
99 var hasMore = false;
105 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/v8/test/mjsunit/
H A Dfuzz-natives-part1.js84 var hasMore = true;
86 while (hasMore) {
99 var hasMore = false;
105 hasMore = true;
H A Dfuzz-natives-part2.js84 var hasMore = true;
86 while (hasMore) {
99 var hasMore = false;
105 hasMore = true;
H A Dfuzz-natives-part3.js84 var hasMore = true;
86 while (hasMore) {
99 var hasMore = false;
105 hasMore = true;
H A Dfuzz-natives-part4.js84 var hasMore = true;
86 while (hasMore) {
99 var hasMore = false;
105 hasMore = true;
/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.h86 // multiple times if the directory has many entries. |hasMore| must be
88 BLINK_PLATFORM_EXPORT void didReadDirectory(const WebVector<WebFileSystemEntry>&, bool hasMore);
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DFilterOperationResolver.cpp176 for (; parameterIterator.hasMore(); parameterIterator.advance()) {
193 if (!iterator.hasMore())
262 while (iterator.hasMore()) {
295 if (iterator.hasMore() && iterator.isPrimitiveValue()) {
304 if (iterator.hasMore() && iterator.isPrimitiveValue()) {
314 if (iterator.hasMore() && iterator.isPrimitiveValue()) {
368 for (CSSValueListIterator i = inValue; i.hasMore(); i.advance()) {
H A DStyleBuilderCustom.cpp511 for (CSSValueListIterator i(value); i.hasMore(); i.advance()) {
570 for (CSSValueListIterator i(value); i.hasMore(); i.advance())
828 for (CSSValueListIterator i(value); i.hasMore(); i.advance()) {
929 for (CSSValueListIterator i = value; i.hasMore(); i.advance()) {
933 for (CSSValueListIterator j = lineNamesValue; j.hasMore(); j.advance()) {
988 currentValue = it.hasMore() ? toCSSPrimitiveValue(it.value()) : 0;
994 currentValue = it.hasMore() ? toCSSPrimitiveValue(it.value()) : 0;
1002 ASSERT(!it.hasMore());
1122 for (CSSValueListIterator i = value; i.hasMore(); i.advance()) {
1225 for (CSSValueListIterator i = value; i.hasMore();
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebFileSystemCallbacks.cpp115 void WebFileSystemCallbacks::didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore) argument
120 m_private->callbacks()->didReadDirectoryEntries(hasMore);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueList.h105 bool hasMore() const { return m_position < m_inspector.length(); } function in class:WebCore::CSSValueListIterator
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileSystemCallbacks.cpp127 void EntriesCallbacks::didReadDirectoryEntries(bool hasMore) argument
129 m_directoryReader->setHasMoreEntries(hasMore);
H A DFileSystemCallbacks.h89 virtual void didReadDirectoryEntries(bool hasMore);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DIndexedDBModel.js368 * @param {boolean} hasMore
371 function innerCallback(error, dataEntries, hasMore)
387 callback(entries, hasMore);
H A DIndexedDBViews.js320 * @param {boolean} hasMore
323 function callback(entries, hasMore)
341 this._pageForwardButton.disabled = !hasMore;
/external/clang/lib/Analysis/
H A DPrintfFormatString.cpp101 bool hasMore = true; local
104 default: hasMore = false; break;
115 if (!hasMore)
/external/javassist/src/main/javassist/compiler/
H A DJavac.java214 if (p.hasMore())
565 while (p.hasMore()) {

Completed in 787 milliseconds

12