HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 176 - 200 of 475) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction41c.java 39 import org.jf.dexlib.Item;
48 public Instruction41c(Opcode opcode, int regA, Item referencedItem) {
Instruction52c.java 38 import org.jf.dexlib.Item;
47 public Instruction52c(Opcode opcode, int regA, int regB, Item referencedItem) {
  /frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
RsListRS.java 123 ScriptField_ListAllocs_s.Item listElem = new ScriptField_ListAllocs_s.Item();
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Camera.java 36 ScriptField_Camera_s.Item mData;
40 mData = new ScriptField_Camera_s.Item();
LightBase.java 36 ScriptField_Light_s.Item mFieldData;
99 mFieldData = new ScriptField_Light_s.Item();
RenderState.java 87 ScriptField_RenderState_s.Item item = new ScriptField_RenderState_s.Item(); local
88 item.pv = mVertex.getRSData().getAllocation();
89 item.pf = mFragment.getRSData().getAllocation();
90 item.ps = mStore;
91 item.pr = mRaster;
93 mField.set(item, 0, true);
VertexShader.java 94 ScriptField_VertexShader_s.Item item = new ScriptField_VertexShader_s.Item(); local
95 item.program = mProgram;
99 item.shaderConst = mConstantBuffer;
100 item.shaderConstParams = mConstantBufferParams.getAllocation();
101 mProgram.bindConstants(item.shaderConst, 0);
104 item.objectConstIndex = -1;
106 item.objectConstIndex = mPerShaderConstants != null ? 1 : 0;
110 mField.set(item, 0, true)
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UnitTest.java 25 private ScriptField_ListAllocs_s.Item mItem;
134 public void setItem(ScriptField_ListAllocs_s.Item item) {
135 mItem = item;
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UnitTest.java 25 private ScriptField_ListAllocs_s.Item mItem;
123 public void setItem(ScriptField_ListAllocs_s.Item item) {
124 mItem = item;
  /cts/tests/tests/content/src/android/content/cts/
ClipboardManagerTest.java 24 import android.content.ClipData.Item;
98 new Item("Text", intent, uri));
110 textData.addItem(new Item("More Text"));
111 textData.addItem(new Item(intent));
112 textData.addItem(new Item(uri));
179 private void assertClipItem(ExpectedClipItem expectedItem, Item item) {
180 assertEquals(expectedItem.mText, item.getText());
182 assertNotNull(item.getIntent());
184 assertNull(item.getIntent())
    [all...]
  /external/chromium_org/webkit/browser/blob/
view_blob_internals_job.cc 193 const BlobData::Item& item = blob_data.items().at(i); local
195 switch (item.type()) {
196 case BlobData::Item::TYPE_BYTES:
199 case BlobData::Item::TYPE_FILE:
202 net::EscapeForHTML(item.path().AsUTF8Unsafe()),
204 if (!item.expected_modification_time().is_null()) {
206 TimeFormatFriendlyDateAndTime(item.expected_modification_time())),
210 case BlobData::Item::TYPE_BLOB:
213 case BlobData::Item::TYPE_FILE_FILESYSTEM
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
OfflineMessageManager.java 116 for (Iterator<DiscoverItems.Item> it = items.getItems(); it.hasNext();) {
117 DiscoverItems.Item item = it.next(); local
118 answer.add(new OfflineMessageHeader(item));
139 OfflineMessageRequest.Item item = new OfflineMessageRequest.Item(node); local
140 item.setAction("view");
141 request.addItem(item);
238 OfflineMessageRequest.Item item = new OfflineMessageRequest.Item(node) local
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
FillTest.java 44 ScriptField_TestScripts_s.Item[] mTests;
64 mTests[index] = new ScriptField_TestScripts_s.Item();
73 ScriptField_FillTestData_s.Item dataItem = new ScriptField_FillTestData_s.Item();
87 mTests = new ScriptField_TestScripts_s.Item[mNames.length];
101 public ScriptField_TestScripts_s.Item[] getTests() {
MeshTest.java 53 ScriptField_TestScripts_s.Item[] mTests;
67 mTests[index] = new ScriptField_TestScripts_s.Item();
76 ScriptField_MeshTestData_s.Item dataItem = new ScriptField_MeshTestData_s.Item();
87 mTests = new ScriptField_TestScripts_s.Item[mNames.length];
97 public ScriptField_TestScripts_s.Item[] getTests() {
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 37 void handleItem(const std::string &Item) {
38 mContext->addPragma(this->getName(), Item);
39 mContext->addExportType(Item);
125 void handleItem(const std::string &Item) {
126 mContext->addPragma(this->getName(), Item);
127 mContext->setLicenseNote(Item);
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 120 class Item {
124 Item *next;
127 Item(typename Info::key_type_ref k, typename Info::data_type_ref d,
135 Item* head;
144 void insert(Bucket* b, size_t size, Item* E) {
156 for (Item* E = Buckets[i].head; E ; ) {
157 Item* N = E->next;
181 insert(Buckets, NumBuckets, new (BA.Allocate<Item>()) Item(key, data,
207 for (Item *I = B.head; I ; I = I->next)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
DebugInfoItem.java 41 public class DebugInfoItem extends Item<DebugInfoItem> {
45 private Item[] referencedItems;
51 * @param dexFile The <code>DexFile</code> that this item belongs to
59 * @param dexFile The <code>DexFile</code> that this item belongs to
71 Item[] referencedItems) {
81 * @param dexFile The <code>DexFile</code> that this item belongs to
94 Item[] referencedItems) {
110 final List<Item> referencedItemsList = new ArrayList<Item>(50);
147 referencedItems = new Item[referencedItemsList.size()]
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 538 fp.add(FetchProfile.Item.FLAGS);
539 fp.add(FetchProfile.Item.ENVELOPE);
586 fp.add(FetchProfile.Item.FLAGS);
587 fp.add(FetchProfile.Item.ENVELOPE);
633 fp.add(FetchProfile.Item.FLAGS);
634 fp.add(FetchProfile.Item.ENVELOPE);
645 fp.add(FetchProfile.Item.BODY);
795 fp.add(FetchProfile.Item.FLAGS);
796 fp.add(FetchProfile.Item.ENVELOPE);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
KeyguardAppWidgetPickActivity.java 74 AppWidgetLoader.ItemConstructor<KeyguardAppWidgetPickActivity.Item> {
79 private AppWidgetLoader<Item> mAppWidgetLoader;
80 private List<Item> mItems;
121 mAppWidgetLoader = new AppWidgetLoader<Item>(this, mAppWidgetManager, this);
143 * Item that appears in the AppWidget picker grid.
145 public static class Item implements AppWidgetLoader.LabelledItem {
159 * Create a list item from given label and icon.
161 Item(Context context, CharSequence label) {
179 * Build the {@link Intent} described by this item. If this item
437 Item item = new Item(context, label); local
487 Item item = (Item) getItem(position); local
508 Item item = mItems.get(position); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ExternalStorage.java 52 static class Item {
58 Item mExternalStoragePublicPicture;
59 Item mExternalStoragePrivatePicture;
60 Item mExternalStoragePrivateFile;
358 Item createStorageControls(CharSequence label, File path,
362 Item item = new Item(); local
363 item.mRoot = inflater.inflate(R.layout.external_storage_item, null);
364 TextView tv = (TextView)item.mRoot.findViewById(R.id.label)
    [all...]
  /external/chromium_org/chrome/browser/download/
download_status_updater_unittest.cc 30 void SetAcceptableNotificationItem(content::DownloadItem* item) {
31 acceptable_notification_item_ = item;
59 EXPECT_CALL(*Item(mgr_idx, item_idx), RemoveObserver(_));
113 content::MockDownloadItem* item = local
118 EXPECT_CALL(*item, GetState()).WillRepeatedly(Return(state));
119 EXPECT_CALL(*item, AddObserver(_))
121 manager_items_[manager_index].push_back(item);
133 // Return the specified item.
134 content::MockDownloadItem* Item(int manager_index, int item_index) {
144 // for the specified item
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.h 255 class Item {
257 Item() : isId(false), format(ResTable_map::TYPE_ANY), bagKeyId(0), evaluating(false)
259 Item(const SourcePos& pos,
264 Item(const Item& o) : sourcePos(o.sourcePos),
269 ~Item() { }
271 Item& operator=(const Item& o) {
332 const Item* getItem() const { return mType == TYPE_ITEM ? &mItem : NULL; }
333 const KeyedVector<String16, Item>& getBag() const { return mBag;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java 341 private final SparseArray<Item> mDataItems = new SparseArray<Item>();
342 private final ArrayList<Item> mVisibleItems = new ArrayList<Item>();
430 public Item getItem(int position) {
444 private static abstract class Item {
449 public Item(int itemId, int layoutResourceId) {
476 private static class Heading extends Item {
491 private static class TextColumn extends Item {
  /external/chromium_org/content/test/
mock_webclipboard_impl.cc 178 const WebVector<WebDragData::Item>& itemList = data.items();
180 const WebDragData::Item& item = itemList[i]; local
181 switch (item.storageType) {
182 case WebDragData::Item::StorageTypeString: {
183 if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeText)) {
184 m_plainText = item.stringData;
187 if (EqualsASCII(item.stringType, ui::Clipboard::kMimeTypeHTML)) {
188 m_htmlText = item.stringData;
191 m_customData.insert(std::make_pair(item.stringType, item.stringData))
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
MUCUser.java 35 private Item item; field in class:MUCUser
96 * Returns the item child that holds information about roles, affiliation, jids and nicks.
98 * @return an item child that holds information about roles, affiliation, jids and nicks.
100 public Item getItem() {
101 return item;
156 * Sets the item child that holds information about roles, affiliation, jids and nicks.
158 * @param item the item child that holds information about roles, affiliation, jids and nicks.
160 public void setItem(Item item)
    [all...]

Completed in 604 milliseconds

1 2 3 4 5 6 78 91011>>