Searched defs:id (Results 201 - 225 of 630) sorted by relevance

1234567891011>>

/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java67 for (int id: new int[] {
68 R.id.clear_1,
69 R.id.clear_2,
70 R.id.clear_3,
71 R.id.clear_4,
72 R.id.clear_5,
73 R.id.clear_6,
74 R.id.clear_7,
75 R.id.clear_8,
76 R.id
197 sendNotification(final int id) argument
206 cancelNotification(final int id) argument
224 buildNotification(int id) argument
440 setChecked(int id) argument
445 getRadioChecked(int id) argument
450 getRadioTag(int id) argument
456 getRadioInt(int id, int def) argument
469 getRadioHex(int id, int def) argument
485 getChecked(int id) argument
490 loadBitmap(int id) argument
495 makeDeleteIntent(int id) argument
503 makeContentIntent(int id) argument
[all...]
/frameworks/base/tools/aapt2/
H A DJavaClassGenerator.cpp105 assert((!mOptions.useFinal || attr.id.isValid()) && "no ID set for Styleable entry");
107 sortedAttributes.emplace_back(attr.id, attr.name);
151 ResourceId id = { packageId, type.typeId, entry->entryId }; local
152 assert(id.isValid());
183 << " int " << transform(unmangledName) << " = " << id << ";" << std::endl;
H A DResourceParser_test.cpp70 EXPECT_TRUE(ResourceParser::tryParseReference(u"@+android:id/foo", &actual, &create,
82 EXPECT_TRUE(ResourceParser::tryParseReference(u"@*android:id/foo", &actual, &create,
407 std::string input = "<string name=\"foo\">@+id/bar</string>";
410 const Id* id = findResource<Id>(ResourceName{ u"android", ResourceType::kId, u"bar"}); local
411 ASSERT_NE(id, nullptr);
485 std::string input = "<public type=\"id\" name=\"foo\"/>";
488 const Id* id = findResource<Id>(ResourceName{ u"android", ResourceType::kId, u"foo" }); local
489 ASSERT_NE(nullptr, id);
H A DResourceValues.cpp63 Reference::Reference(const ResourceId& i, Type type) : id(i), referenceType(type) {
70 outValue.data = id.id;
78 ref->id = id;
94 if (id.isValid() || Res_INTERNALID(id.id)) {
95 out << " " << id; local
114 out << "(id)";
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceRequest.java92 * @param transId the transaction id
104 * Return transaction id.
106 * @return transaction id
114 * Set transaction id.
116 * @param id
119 public void setTransactionId(int id) { argument
120 mTransId = id;
226 * Not compare transaction id.
227 * Transaction id may be changed on each service discovery operation.
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameHdr.cpp103 size_t id = 0; local
105 bst[id++] = (*entry).first - m_EhFrameHdr.addr();
106 bst[id++] = (*entry).second - m_EhFrameHdr.addr();
/frameworks/native/libs/input/
H A DInputDevice.cpp145 void InputDeviceInfo::initialize(int32_t id, int32_t generation, int32_t controllerNumber, argument
148 mId = id;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DYearPickerView.java81 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioGroup.java153 long id = nativeAdd(stream.getMode(), stream.getSocket(),
157 mStreams.put(stream, id);
169 Long id = mStreams.remove(stream);
170 if (id != null) {
171 nativeRemove(id);
175 private native void nativeRemove(long id); argument
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DConfigurationMap.java51 for (long id : roamingConsortiumIds) {
52 config.roamingConsortiumIds[i] = id;
104 Integer id = mPerFQDN.get(fqdn);
105 return id != null ? mPerID.get(id) : null;
120 public WifiConfiguration getByConfigKeyID(int id) { argument
121 return mPerConfigKey.get(id);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewCallbacks.java95 public Loader<BitmapResult> onCreateBitmapLoader(int id, Bundle args, String uri); argument
/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
H A DPartnerTest.java92 int partnerValue = entry.resources.getInteger(entry.id);
106 int partnerValue = entry.resources.getColor(entry.id);
130 private static void addItem(String name, int id, Object value) { argument
131 TEST_RESOURCE_IDS.put(name, id);
132 TEST_RESOURCES.put(id, value);
149 public int getInteger(int id) throws NotFoundException { argument
150 if (TEST_RESOURCES.indexOfKey(id) >= 0) {
151 return (int) TEST_RESOURCES.get(id);
158 public int getColor(int id) throws NotFoundException { argument
159 if (TEST_RESOURCES.indexOfKey(id) >
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DHardwareConfig.java150 public void assignModem(String id, int state, int model, int ratBits, argument
154 uuid = id;
167 public void assignSim(String id, int state, String link) { argument
169 uuid = id;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DResponseData.java53 public SelectItemResponseData(int id) { argument
55 mId = id;
/frameworks/rs/cpp/
H A DType.cpp69 Type::Type(void *id, sp<RS> rs) : BaseObj(id, rs) { argument
103 void * id = RS::dispatch->TypeCreate(rs->getContext(), e->getID(), dimX, dimY, dimZ, false, false, 0); local
104 Type *t = new Type(id, rs);
216 void * id = RS::dispatch->TypeCreate(mRS->getContext(), mElement->getID(), mDimX, mDimY, mDimZ, local
218 Type *t = new Type(id, mRS);
/frameworks/rs/driver/
H A DrsdShaderCache.cpp253 uint32_t id = s->getStateBasedID(sId); local
255 if (mEntries[ct]->vtx == id) {
271 uint32_t id = s->getStateBasedID(sId); local
273 if (mEntries[ct]->frag == id) {
/frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/
H A DBallsRS.java75 private Allocation loadTexture(int id) { argument
78 Bitmap bp = BitmapFactory.decodeResource(mRes, id, options);
149 public void newTouchPosition(float x, float y, float pressure, int id) { argument
150 mPhysicsScript.invoke_touch(x, y, pressure * mRS.getWidth() / 1280, id);
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
H A DRSTestCore.java182 public void newTouchPosition(float x, float y, float pressure, int id) { argument
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
H A DRSTestCore.java186 public void newTouchPosition(float x, float y, float pressure, int id) { argument
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
H A DRSTestCore.java186 public void newTouchPosition(float x, float y, float pressure, int id) { argument
/frameworks/rs/
H A DrsScriptIntrinsic.cpp87 RsScript rsi_ScriptIntrinsicCreate(Context *rsc, uint32_t id, RsElement ve) { argument
89 if (!si->init(rsc, (RsScriptIntrinsicID)id, (Element *)ve)) {
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentPagerAdapter.java176 private static String makeFragmentName(int viewId, long id) { argument
177 return "android:switcher:" + viewId + ":" + id;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAction.java25 * An action contains one or two lines of text, an optional image and an optional id. It may also
39 * @param id The id of the Action.
41 public Action(long id) { argument
42 this(id, "");
48 * @param id The id of the Action.
51 public Action(long id, CharSequence label) { argument
52 this(id, label, null);
58 * @param id Th
62 Action(long id, CharSequence label1, CharSequence label2) argument
74 Action(long id, CharSequence label1, CharSequence label2, Drawable icon) argument
84 setId(long id) argument
[all...]
H A DViewsStateBundle.java32 * Maintains a bundle of states for a group of views. Each view must have a unique id to identify
37 * Vertical list maintains id->bundle mapping of all it's children (even the children is offscreen
64 public void remove(int id) { argument
66 mChildStates.remove(getSaveStatesKey(id));
147 * Load view from states, it's none operation if the there is no state associated with the id.
150 * @param id unique id for the view within this ViewsStateBundle
152 public final void loadView(View view, int id) { argument
154 String key = getSaveStatesKey(id);
168 * @param id uniqu
170 saveViewUnchecked(View view, int id) argument
187 saveOnScreenView(Bundle bundle, View view, int id) argument
206 saveOffscreenView(View view, int id) argument
220 getSaveStatesKey(int id) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentPagerAdapter.java172 private static String makeFragmentName(int viewId, long id) { argument
173 return "android:switcher:" + viewId + ":" + id;

Completed in 916 milliseconds

1234567891011>>