Home
last modified time | relevance | path

Searched refs:getValue (Results 1 – 25 of 25) sorted by relevance

/development/tools/apkcheck/src/com/android/apkcheck/
DApiDescrHandler.java74 attributes.getValue("name")); in startElement()
78 attributes.getValue("name"), in startElement()
79 attributes.getValue("extends"), in startElement()
80 attributes.getValue("static")); in startElement()
83 mCurrentClass.addInterface(attributes.getValue("name")); in startElement()
86 mCurrentMethod = new MethodInfo(attributes.getValue("name"), in startElement()
87 attributes.getValue("return")); in startElement()
121 FieldInfo fInfo = new FieldInfo(attributes.getValue("name"), in startElement()
122 attributes.getValue("type")); in startElement()
126 mCurrentMethod.addParameter(attributes.getValue("type")); in startElement()
/development/vndk/tools/header-checker/src/utils/
Dapi_level_test.cpp29 EXPECT_EQ(FUTURE_API_LEVEL, ParseApiLevel("current").getValue()); in TEST()
32 EXPECT_EQ(16l, ParseApiLevel("16").getValue()); in TEST()
Dstring_utils_test.cpp87 EXPECT_EQ(0, ParseInt("0").getValue()); in TEST()
90 EXPECT_EQ(16, ParseInt("16").getValue()); in TEST()
93 EXPECT_EQ(-16, ParseInt("-16").getValue()); in TEST()
/development/samples/TicTacToeMain/src/com/example/android/tictactoe/
DMainActivity.java53 startWithHuman ? State.PLAYER1.getValue() : State.PLAYER2.getValue()); in startGame()
/development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
DGameView.java60 public int getValue() { in getValue() method in GameView.State
66 if (s.getValue() == i) { in fromInt()
364 data[i] = mData[i].getValue();
369 b.putInt("gv_sel_val", mSelectedValue.getValue());
370 b.putInt("gv_curr_play", mCurrentPlayer.getValue());
371 b.putInt("gv_winner", mWinner.getValue());
405 mSelectedValue = State.fromInt(b.getInt("gv_sel_val", State.EMPTY.getValue()));
406 mCurrentPlayer = State.fromInt(b.getInt("gv_curr_play", State.EMPTY.getValue()));
407 mWinner = State.fromInt(b.getInt("gv_winner", State.EMPTY.getValue()));
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/
DAccessSourcer.java66 public int getValue() { in getValue() method in AccessSourcer.Flag
101 if ((f.getFilter() & filter) != 0 && (access & f.getValue()) != 0) { in write()
/development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
DAlarmStorage.java91 alarms.add(Alarm.fromJson(entry.getValue().toString())); in getAlarms()
105 Alarm alarm = Alarm.fromJson(entry.getValue().toString()); in deleteAlarm()
/development/tools/mkstubs/src/com/android/mkstubs/
DStubGenerator.java61 ClassReader cr = entry.getValue(); in generateStubbedJar()
94 jar.write(entry.getValue()); in createJar()
DSourceGenerator.java57 ClassReader cr = entry.getValue(); in generateSource()
/development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/
DNfcProvisioningFragment.java112 if (!TextUtils.isEmpty(e.getValue())) { in createNdefMessage()
116 value = e.getValue(); in createNdefMessage()
121 value = e.getValue(); in createNdefMessage()
/development/samples/InlineFillService/src/com/example/android/inlinefillservice/
DResponseHelper.java45 final AutofillId id = field.getValue(); in newUnlockedDataset()
81 AutofillId id = field.getValue(); in newLockedDataset()
/development/samples/ApiDemos/src/com/example/android/apis/content/
DShareContent.java48 getResources().getValue(R.drawable.jellies, tv, true); in onCreate()
/development/vndk/tools/header-checker/src/repr/symbol/
Dversion_script_parser.cpp106 result.introduced_ = intro.getValue(); in ParseSymbolTags()
120 result.introduced_ = intro.getValue(); in ParseSymbolTags()
/development/samples/browseable/AppUsageStatistics/src/com.example.android.appusagestatistics/
DAppUsageStatisticsFragment.java110 .getValue(strings[position]); in onViewCreated()
222 static StatsUsageInterval getValue(String stringRepresentation) { in getValue() method in AppUsageStatisticsFragment.StatsUsageInterval
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/provider/
DTouristAttractions.java135 double distance = SphericalUtil.computeDistanceBetween(curLatLng, entry.getValue()); in getClosestCity()
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeyPermissionUtil.java159 for (PermissionInfo pi : e.getValue()) { in dump()
/development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
DDetailFragment.java157 List<Attraction> attractions = attractionsList.getValue(); in findAttraction()
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
DBluetoothLeService.java144 final byte[] data = characteristic.getValue(); in broadcastUpdate()
/development/tools/checkcolor/src/main/java/com/google/checkcolor/lint/
DHardcodedColorDetector.java120 final String value = attribute.getValue(); in visitAttribute()
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
DImageDownloader.java69 sSoftBitmapCache.put(eldest.getKey(), new SoftReference<Bitmap>(eldest.getValue()));
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DIntentBuilderView.java140 List<String> manifestFlags = activityEntry.getValue(); in setupViews()
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DFitStepsWatchFaceService.java534 mStepsTotal = points.get(0).getValue(Field.FIELD_STEPS).asInt(); in onResult()
DFitDistanceWatchFaceService.java528 mDistanceTotal = points.get(0).getValue(Field.FIELD_DISTANCE).asFloat(); in onResult()
/development/vndk/tools/header-checker/src/linker/
Dheader_abi_linker.cpp432 parser.SetApiLevel(api_level.getValue()); in ReadExportedSymbolsFromVersionScript()
/development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/
DCamera2RawFragment.java1288 ImageSaver.ImageSaverBuilder builder = entry.getValue(); in dequeueAndSaveImage()