HomeSort by relevance Sort by last modified time
    Searched refs:hasMore (Results 1 - 25 of 64) 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() {
DecodedInstruction.java 88 while (in.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)));
  /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/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))
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
LayoutState.java 72 boolean hasMore(RecyclerView.State state) {
  /external/chromium_org/third_party/WebKit/Source/platform/
AsyncFileSystemCallbacks.h 67 // 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(); }
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileSystemCallbacks.h 86 // 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/v8/test/fuzz-natives/
base.js 65 var hasMore = true;
67 while (hasMore) {
80 hasMore = false;
86 hasMore = true;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebFileSystemCallbacks.cpp 115 void WebFileSystemCallbacks::didReadDirectory(const WebVector<WebFileSystemEntry>& entries, bool hasMore)
120 m_private->callbacks()->didReadDirectoryEntries(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/
CSSValueList.h 106 bool hasMore() const { return m_position < m_inspector.length(); }
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderConverter.cpp 140 currentValue = it.hasMore() ? toCSSPrimitiveValue(it.value()) : 0;
146 currentValue = it.hasMore() ? toCSSPrimitiveValue(it.value()) : 0;
154 ASSERT(!it.hasMore());
188 for (CSSValueListIterator i = value; i.hasMore(); i.advance()) {
192 for (CSSValueListIterator j = lineNamesValue; j.hasMore(); j.advance()) {
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemCallbacks.h 101 virtual void didReadDirectoryEntries(bool hasMore) OVERRIDE;
FileSystemCallbacks.cpp 164 void EntriesCallbacks::didReadDirectoryEntries(bool hasMore)
166 m_directoryReader->setHasMoreEntries(hasMore);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
IndexedDBViews.js 309 * @param {boolean} hasMore
312 function callback(entries, hasMore)
330 this._pageForwardButton.disabled = !hasMore;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IndexedDBModel.js 382 * @param {boolean} hasMore
385 function innerCallback(error, dataEntries, hasMore)
401 callback(entries, hasMore);
  /external/javassist/src/main/javassist/compiler/
Javac.java 214 if (p.hasMore())
565 while (p.hasMore()) {

Completed in 419 milliseconds

1 2 3