HomeSort by relevance Sort by last modified time
    Searched defs:more (Results 1 - 25 of 182) sorted by null

1 2 3 4 5 6 7 8

  /build/tools/droiddoc/templates-pdk/
sdkpage.cs 79 access application resources, and more, when programming in C or C++. If you write external variable declarations
87 href="<?cs var:toroot ?>sdk/ndk/overview.html">What is the NDK?</a> for more information about what
221 href="<?cs var:toroot ?>sdk/preview/start.html">Getting Started</a> document for more information
  /external/tpm2/
Handle.c 74 // the largest permanent handle, an empty list will be returned with more set to NO.
78 // YES if there are more handles available
88 TPMI_YES_NO more = NO; local
110 more = YES;
114 return more;
PropertyCap.c 90 // more significant 32-bits of a vendor-specific value
431 // YES more properties are available
432 // NO no more properties to be reported
442 TPMI_YES_NO more = NO; local
468 // If the return list is full but there are more properties
470 more = YES;
475 return more;
AlgorithmCap.c 123 // YES more algorithms to report
124 // NO no more algorithms to report
133 TPMI_YES_NO more = NO; local
151 // If we have not filled up the return list, add more algorithms
162 more = YES;
166 return more;
PP.c 121 // YES if there are more command codes available
131 TPMI_YES_NO more = NO; local
153 more = YES;
158 return more;
CommandAudit.c 180 // YES if there are more command code available
190 TPMI_YES_NO more = NO;
214 more = YES;
219 return more;
189 TPMI_YES_NO more = NO; local
CommandCodeAttributes.c 250 // YES more command attributes are available
251 // NO no more command attributes are available
261 TPMI_YES_NO more = NO; local
283 // If the list is full but there are more commands to report,
285 more = YES;
290 return more;
Session.c 689 // YES if there are more handles available
699 TPMI_YES_NO more = NO; local
732 more = YES;
738 return more;
749 // YES if there are more handles available
759 TPMI_YES_NO more = NO; local
786 more = YES;
792 return more;
815 // one or more, then at least one session must be loadable.
    [all...]
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 69 bool more = true; local
77 more = false;
83 } while (more);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue100/
DataBean.java 21 private DataMore more; field in class:DataBean
40 return more;
43 public void setMore(DataMore more) {
44 this.more = more;
  /bionic/tools/relocation_packer/src/
sleb128.cc 52 bool more = true; local
55 while (more) {
66 more = false;
  /libcore/json/src/test/java/org/json/
JSONTokenerTest.java 32 new JSONTokener(null).more();
107 assertFalse(new JSONTokener("").more());
151 assertFalse(abcdeTokener.more());
153 assertTrue(abcdeTokener.more());
159 assertTrue(abcTokener.more());
162 assertTrue(abcTokener.more());
164 assertFalse(abcTokener.more());
166 assertTrue(abcTokener.more());
168 assertFalse(abcTokener.more());
357 assertFalse(tokener.more());
    [all...]
  /art/tools/ahat/src/
SubsetSelector.java 25 * requiring the user to explicitly request more, so users not interested in
26 * more don't have to wait for everything to render.
82 // (showing X of Y - show none - show less - show more - show all)
98 int more = Math.min(mLimit + kIncrAmount, all); local
99 menu.appendLink(mQuery.with(mId, more), DocString.text("show more"));
104 menu.append("show more - show all)");
  /build/tools/atree/
atree.cpp 28 " -f FILELIST Specify one or more files containing the\n"
30 " -I INPUTDIR Specify one or more base directories in\n"
206 vector<FileRecord> more; local
231 err |= list_dir(*it, excludes, &more);
234 for (vector<FileRecord>::iterator it=more.begin();
235 it!=more.end(); it++) {
  /external/clang/test/CodeGen/
blockstret.c 23 char more[32]; member in struct:bigbig
  /external/v8/src/interpreter/
source-position-table.cc 21 // where each byte contains 7 bits of payload data, and 1 'more' bit that
56 bool more; local
58 more = encoded > ValueBits::kMax;
59 bytes.push_back(MoreBit::encode(more) |
62 } while (more);
80 bool more; local
84 more = MoreBit::decode(current);
86 } while (more);
  /frameworks/av/media/libstagefright/
ESDS.cpp 82 bool more; local
92 more = (x & 0x80) != 0;
94 while (more);
  /art/test/003-omnibus-opcodes/src/
Classes.java 34 MoreClasses more; local
41 more = (MoreClasses) moreRef;
46 more = (MoreClasses) thisRef;
69 more = (MoreClasses) nullRef;
212 MoreClasses more = new MoreClasses(); local
213 classes.checkCast(classes, more, null);
215 more.subFunc(true);
216 more.superFunc(false);
  /external/curl/lib/
formdata.h 68 struct FormInfo *more; member in struct:FormInfo
  /external/doclava/src/com/google/doclava/
AttrTagInfo.java 67 String more = m.group(2); local
70 String ref = more.trim();
83 m = NAME_TEXT.matcher(more);
85 Errors.error(Errors.BAD_ATTR_TAG, position, "Bad @attr name tag: " + more);
92 mDescrComment = new Comment(more, base, position);
  /external/elfutils/libdwfl/
gzip.c 23 General Public License for more details.
85 size_t more = state->size ? state->size * 2 : start; local
86 char *b = realloc (state->buffer, more);
87 while (unlikely (b == NULL) && more >= state->size + 1024)
88 b = realloc (state->buffer, more -= 1024);
92 state->size = more;
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONTokener.java 110 public boolean more() throws JSONException { method in class:JSONTokener
212 * @return A character, or 0 if there are no more characters.
  /external/toybox/toys/lsb/
mount.c 79 static long flag_opts(char *new, long flags, char **more)
122 if (more && i == ARRAY_LEN(opts)) {
123 i = *more ? strlen(*more) : 0;
124 *more = xrealloc(*more, i + strlen(new) + 2);
125 if (i) (*more)[i++] = ',';
126 strcpy(i+*more, new);
376 char *more = 0; local
378 mount_filesystem(dev, dir, TT.type, flag_opts(opts, flags, &more), more)
    [all...]
  /packages/experimental/NotificationLog/src/com/android/notificationlog/
NotificationLogActivity.java 85 TextView more = (TextView)view.findViewById(R.id.text); local
106 more.setText(text);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asynchat.py 102 # grab some more data from the socket,
226 data = first.more()
260 def more (self): member in class:simple_producer

Completed in 6679 milliseconds

1 2 3 4 5 6 7 8