Searched refs:hasMore (Results 1 - 25 of 26) 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/webkit/Source/WebKit/chromium/public/
H A DWebFileSystemCallbacks.h55 // multiple times if the directory has many entries. |hasMore| must be
57 virtual void didReadDirectory(const WebVector<WebFileSystemEntry>&, bool hasMore) = 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/webkit/Source/WebCore/platform/
H A DAsyncFileSystemCallbacks.h61 // 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.
62 virtual void didReadDirectoryEntries(bool hasMore) = 0;
/external/webkit/Source/WebKit/chromium/src/
H A DWebFileSystemCallbacksImpl.cpp80 void WebFileSystemCallbacksImpl::didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore) argument
84 m_callbacks->didReadDirectoryEntries(hasMore);
H A DWebFileSystemCallbacksImpl.h59 virtual void didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore);
H A DWorkerFileSystemCallbacksBridge.cpp124 virtual void didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore) argument
126 m_bridge->didReadDirectoryOnMainThread(entries, hasMore, m_mode);
297 void WorkerFileSystemCallbacksBridge::didReadDirectoryOnMainThread(const WebVector<WebFileSystemEntry>& entries, bool hasMore, const String& mode) argument
299 mayPostTaskToWorker(createCallbackTask(&didReadDirectoryOnWorkerThread, this, entries, hasMore), mode);
336 void WorkerFileSystemCallbacksBridge::didReadDirectoryOnWorkerThread(ScriptExecutionContext*, WorkerFileSystemCallbacksBridge* bridge, const WebVector<WebFileSystemEntry>& entries, bool hasMore) argument
338 bridge->m_callbacksOnWorkerThread->didReadDirectory(entries, hasMore);
H A DWorkerFileSystemCallbacksBridge.h104 void didReadDirectoryOnMainThread(const WebVector<WebFileSystemEntry>&, bool hasMore, const String& mode);
129 static void didReadDirectoryOnWorkerThread(WebCore::ScriptExecutionContext*, WorkerFileSystemCallbacksBridge*, const WebVector<WebFileSystemEntry>&, bool hasMore);
H A DAsyncFileSystemChromium.cpp143 virtual void didReadDirectory(const WebKit::WebVector<WebKit::WebFileSystemEntry>& entries, bool hasMore) argument
H A DWorkerAsyncFileSystemChromium.cpp168 virtual void didReadDirectoryEntries(bool hasMore) argument
/external/webkit/Source/WebCore/fileapi/
H A DFileSystemCallbacks.h71 // For EntriesCallbacks. didReadDirectoryEntry is called each time the API reads an entry, and didReadDirectoryDone is called when a chunk of entries have been read (i.e. good time to call back to the application). If hasMore is true there can be more chunks.
73 virtual void didReadDirectoryEntries(bool hasMore);
105 virtual void didReadDirectoryEntries(bool hasMore);
H A DFileSystemCallbacks.cpp164 void EntriesCallbacks::didReadDirectoryEntries(bool hasMore) argument
166 m_directoryReader->setHasMoreEntries(hasMore);
/external/clang/lib/Analysis/
H A DPrintfFormatString.cpp99 bool hasMore = true; local
102 default: hasMore = false; break;
113 if (!hasMore)
/external/javassist/src/main/javassist/compiler/
H A DJavac.java214 if (p.hasMore())
565 while (p.hasMore()) {
H A DParser.java27 public boolean hasMore() { return lex.lookAhead() >= 0; } method in class:Parser
/external/clang/include/clang/Analysis/
H A DCFG.h444 bool hasMore() const { return I != E; }
447 do { ++I; } while (hasMore() && Filter(*I));
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp138 I = cfg->getExit().filtered_pred_start_end(FO); I.hasMore(); ++I) {
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 514 milliseconds

12