HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 126 - 150 of 250) sorted by null

1 2 3 4 56 7 8 910

  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
FieldIdsSection.java 50 public Collection<? extends Item> items() {
129 FieldIdItem item = fieldIds.get(ref); local
131 if (item == null) {
135 return item.getIndex();
MethodIdsSection.java 50 public Collection<? extends Item> items() {
129 MethodIdItem item = methodIds.get(ref); local
131 if (item == null) {
135 return item.getIndex();
ProtoIdsSection.java 50 public Collection<? extends Item> items() {
121 ProtoIdItem item = protoIds.get(prototype); local
123 if (item == null) {
127 return item.getIndex();
OffsettedItem.java 23 * An item in a Dalvik file which is referenced by absolute offset.
25 public abstract class OffsettedItem extends Item
35 * {@code null-ok;} section the item was added to, or {@code null} if
41 * {@code >= -1;} assigned offset of the item from the start of its section,
47 * Gets the absolute offset of the given item, returning {@code 0}
50 * @param item {@code null-ok;} the item in question
51 * @return {@code >= 0;} the item's absolute offset, or {@code 0}
52 * if {@code item == null}
54 public static int getAbsoluteOffsetOr0(OffsettedItem item) {
    [all...]
StringIdsSection.java 52 public Collection<? extends Item> items() {
  /external/icu4c/tools/toolutil/
package.cpp 380 return (int32_t)strcmp(((Item *)left)->name, ((Item *)right)->name);
501 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */
515 /* offset of the last item plus at least 20 bytes for its header */
524 /* do not modify the package length variable until the last item's length is set */
536 /* swap the item name strings */
540 // don't include padding bytes at the end of the item names
546 fprintf(stderr, "icupkg: total length of item name strings too long\n");
553 fprintf(stderr, "icupkg failed to swap the input .dat package item name strings\n");
558 // reset the Item entrie
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
StringIdItem.java 35 public class StringIdItem extends Item<StringIdItem> {
40 * @param dexFile The <code>DexFile</code> that this item belongs to
48 * @param dexFile The <code>DexFile</code> that this item belongs to
59 * @param dexFile The <code>DexFile</code> that this item will belong to
60 * @param stringValue The string value that this item represents
160 //"getInterned..." style methods to make new items, and any item created
  /external/v8/test/mjsunit/regress/
regress-swapelements.js 31 function Item(val) {
48 array1[i] = new Item(i);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 87 ScriptField_TestScripts_s.Item[] mIndividualTests;
115 ScriptField_TestScripts_s.Item[] newTests = testSet.getTests();
117 ScriptField_TestScripts_s.Item[] combined;
118 combined = new ScriptField_TestScripts_s.Item[newTests.length + mIndividualTests.length];
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ProgramFragmentTest.java 56 c1.set(new ScriptField_ConstMatrix.Item(), 0, true);
62 c2.set(new ScriptField_ConstComplex.Item(), 0, true);
68 c3.set(new ScriptField_ConstExtra.Item(), 0, true);
ProgramVertexTest.java 67 c1.set(new ScriptField_ConstMatrix.Item(), 0, true);
73 c2.set(new ScriptField_ConstComplex.Item(), 0, true);
79 c3.set(new ScriptField_ConstExtra.Item(), 0, true);
  /external/emma/core/java12/com/vladium/emma/report/
SrcFileItem.java 23 final class SrcFileItem extends Item
110 // coverage computation dependent on the order of how item
290 private static final Item.ItemMetadata METADATA; // set in <clinit>
294 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_SRCFILE, "srcfile",
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
ValueParser.java 102 * Retrieves Item information from the COMPREHENSION-TLV object.
105 * @return An Item
108 static Item retrieveItem(ComprehensionTlv ctlv) throws ResultException {
109 Item item = null; local
122 item = new Item(id, text);
128 return item;
132 * Retrieves Item id information from the COMPREHENSION-TLV object.
135 * @return An Item i
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
CompoundTransform.java 38 protected ScriptField_TransformComponent_s.Item mData;
41 mData = new ScriptField_TransformComponent_s.Item();
58 ScriptField_TransformComponent_s.Item getRSData() {
  /external/valgrind/unittest/
windows_tests.cc 394 struct Item {
400 Item *item = new Item; local
401 item->foo = 42;
402 InterlockedPushEntrySList(&list, (PSINGLE_LIST_ENTRY)item);
406 Item *item; local
407 while (0 == (item = (Item*)InterlockedPopEntrySList(&list)))
    [all...]
  /build/tools/releasetools/
ota_from_target_files 111 class Item:
123 self.parent = Item.Get(os.path.dirname(name), dir=True)
144 cls.ITEMS[name] = Item(name, dir=dir)
156 # uid, gid, and mode for every Item object. Note this uses the
192 sets the best_subtree of each directory Item to the (uid, gid,
194 Item.
236 def recurse(item, current):
238 # item (and all its children) have already been set to. We only
241 if item.dir:
242 if current != item.best_subtree
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
AccessPermissionWithDiffSigTest.java 70 ClipData.Item item = clip.getItemAt(i); local
71 Uri uri = item.getUri();
75 Intent intent = item.getIntent();
107 ClipData.Item item = clip.getItemAt(i); local
108 Uri uri = item.getUri();
112 Intent intent = item.getIntent();
163 new ClipData.Item(uri));
173 new ClipData.Item(grantClip1Uri))
487 ClipData.Item item = clip.getItemAt(i); local
603 ClipData.Item item = clip.getItemAt(i); local
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
ImapFolder.java 546 if (fp.contains(FetchProfile.Item.FLAGS)) {
549 if (fp.contains(FetchProfile.Item.ENVELOPE)) {
554 if (fp.contains(FetchProfile.Item.STRUCTURE)) {
558 if (fp.contains(FetchProfile.Item.BODY_SANE)) {
561 if (fp.contains(FetchProfile.Item.BODY)) {
598 if (fp.contains(FetchProfile.Item.FLAGS)) {
614 if (fp.contains(FetchProfile.Item.ENVELOPE)) {
626 if (fp.contains(FetchProfile.Item.STRUCTURE)) {
640 if (fp.contains(FetchProfile.Item.BODY)
641 || fp.contains(FetchProfile.Item.BODY_SANE))
    [all...]
  /frameworks/base/services/java/com/android/server/
ClipboardService.java 219 private final void checkItemOwnerLocked(ClipData.Item item, int uid) {
220 if (item.getUri() != null) {
221 checkUriOwnerLocked(item.getUri(), uid);
223 Intent intent = item.getIntent();
247 private final void grantItemLocked(ClipData.Item item, String pkg) {
248 if (item.getUri() != null) {
249 grantUriLocked(item.getUri(), pkg);
251 Intent intent = item.getIntent()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
OffsettedItem.java 23 * An item in a Dalvik file which is referenced by absolute offset.
25 public abstract class OffsettedItem extends Item
35 * {@code null-ok;} section the item was added to, or {@code null} if
41 * {@code >= -1;} assigned offset of the item from the start of its section,
47 * Gets the absolute offset of the given item, returning {@code 0}
50 * @param item {@code null-ok;} the item in question
51 * @return {@code >= 0;} the item's absolute offset, or {@code 0}
52 * if {@code item == null}
54 public static int getAbsoluteOffsetOr0(OffsettedItem item) {
    [all...]
StringIdsSection.java 53 public Collection<? extends Item> items() {
TypeIdsSection.java 50 public Collection<? extends Item> items() {
158 TypeIdItem item = typeIds.get(type); local
160 if (item == null) {
164 return item.getIndex();
  /dalvik/dx/src/com/android/dx/dex/file/
OffsettedItem.java 23 * An item in a Dalvik file which is referenced by absolute offset.
25 public abstract class OffsettedItem extends Item
35 * {@code null-ok;} section the item was added to, or {@code null} if
41 * {@code >= -1;} assigned offset of the item from the start of its section,
47 * Gets the absolute offset of the given item, returning {@code 0}
50 * @param item {@code null-ok;} the item in question
51 * @return {@code >= 0;} the item's absolute offset, or {@code 0}
52 * if {@code item == null}
54 public static int getAbsoluteOffsetOr0(OffsettedItem item) {
    [all...]
StringIdsSection.java 52 public Collection<? extends Item> items() {
TypeIdsSection.java 50 public Collection<? extends Item> items() {
158 TypeIdItem item = typeIds.get(type); local
160 if (item == null) {
164 return item.getIndex();

Completed in 587 milliseconds

1 2 3 4 56 7 8 910