HomeSort by relevance Sort by last modified time
    Searched refs:hasMore (Results 1 - 25 of 55) sorted by null

1 2 3

  /dalvik/dexgen/src/com/android/dexgen/util/
Leb128Utils.java 63 boolean hasMore = true;
66 while (hasMore) {
67 hasMore = (remaining != end)
ByteArrayAnnotatedOutput.java 246 boolean hasMore = true;
249 while (hasMore) {
250 hasMore = (remaining != end)
253 writeByte((value & 0x7f) | (hasMore ? 0x80 : 0));
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeInput.java 29 public boolean hasMore();
ShortArrayCodeInput.java 41 public boolean hasMore() {
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
CodeInput.java 29 public boolean hasMore();
ShortArrayCodeInput.java 41 public boolean hasMore() {
  /external/dexmaker/src/dx/java/com/android/dx/util/
Leb128Utils.java 64 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)));
  /libcore/dex/src/main/java/com/android/dex/
Leb128.java 63 boolean hasMore = true;
66 while (hasMore) {
67 hasMore = (remaining != end)
149 boolean hasMore = true;
152 while (hasMore) {
153 hasMore = (remaining != end)
156 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Leb128Utils.java 72 boolean hasMore = true;
75 while (hasMore) {
76 hasMore = (remaining != end)
ByteArrayOutput.java 252 boolean hasMore = true;
255 while (hasMore) {
256 hasMore = (remaining != end)
259 writeByte((value & 0x7f) | (hasMore ? 0x80 : 0));
ByteArrayAnnotatedOutput.java 258 boolean hasMore = true;
261 while (hasMore) {
262 hasMore = (remaining != end)
265 writeByte((value & 0x7f) | (hasMore ? 0x80 : 0));
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ATResponseParserTest.java 29 assertFalse(p.hasMore());
41 assertFalse(p.hasMore());
46 assertFalse(p.hasMore());
52 assertFalse(p.hasMore());
63 assertFalse(p.hasMore());
94 assertFalse(p.hasMore());
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileSystemCallbacks.h 61 // multiple times if the directory has many entries. |hasMore| must be
63 virtual void didReadDirectory(const WebVector<WebFileSystemEntry>&, bool hasMore) = 0;
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncId.java 65 boolean hasMore = tokenizer.hasMoreTokens();
68 while (hasMore)
71 hasMore = tokenizer.hasMoreTokens();
85 if ((null != ref) && (hasMore || mayBeMore))
  /external/chromium_org/third_party/WebKit/Source/core/platform/
AsyncFileSystemCallbacks.h 62 // 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.
63 virtual void didReadDirectoryEntries(bool hasMore) { ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/Source/web/
WebFileSystemCallbacksImpl.h 64 virtual void didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore);
WebFileSystemCallbacksImpl.cpp 108 void WebFileSystemCallbacksImpl::didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore)
112 m_callbacks->didReadDirectoryEntries(hasMore);
WorkerFileSystemCallbacksBridge.cpp 137 virtual void didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore)
139 m_bridge->didReadDirectoryOnMainThread(entries, hasMore, m_mode);
406 void WorkerFileSystemCallbacksBridge::didReadDirectoryOnMainThread(const WebVector<WebFileSystemEntry>& entries, bool hasMore, const String& mode)
410 this, entries, hasMore), mode);
452 void WorkerFileSystemCallbacksBridge::didReadDirectoryOnWorkerThread(ScriptExecutionContext*, PassRefPtr<WorkerFileSystemCallbacksBridge> bridge, const WebVector<WebFileSystemEntry>& entries, bool hasMore)
454 bridge->m_callbacksOnWorkerThread->didReadDirectory(entries, hasMore);
WorkerFileSystemCallbacksBridge.h 105 void didReadDirectoryOnMainThread(const WebVector<WebFileSystemEntry>&, bool hasMore, const String& mode);
132 static void didReadDirectoryOnWorkerThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerFileSystemCallbacksBridge>, const WebVector<WebFileSystemEntry>&, bool hasMore);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
ATResponseParser.java 90 hasMore()
DriverCall.java 74 if (p.hasMore()) {
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FilterOperationResolver.cpp 193 for (; parameterIterator.hasMore(); parameterIterator.advance()) {
210 if (!iterator.hasMore())
271 while (iterator.hasMore()) {
303 if (iterator.hasMore() && iterator.isPrimitiveValue()) {
312 if (iterator.hasMore() && iterator.isPrimitiveValue()) {
322 if (iterator.hasMore() && iterator.isPrimitiveValue()) {
375 for (CSSValueListIterator i = inValue; i.hasMore(); i.advance()) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSValueList.h 118 bool hasMore() const { return m_position < m_inspector.length(); }
  /external/chromium_org/v8/test/mjsunit/
fuzz-natives-part1.js 84 var hasMore = true;
86 while (hasMore) {
99 var hasMore = false;
105 hasMore = true;
fuzz-natives-part2.js 84 var hasMore = true;
86 while (hasMore) {
99 var hasMore = false;
105 hasMore = true;

Completed in 378 milliseconds

1 2 3