Home
last modified time | relevance | path

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

123

/development/vndk/tools/header-checker/src/repr/json/
Dir_dumper.cpp40 type_decl.Set("access", in AddAccess()
49 record_type.Set("record_kind", in AddRecordKind()
58 vtable_component.Set( in AddVtableComponentKind()
67 elf_symbol.Set("binding", in AddElfSymbolBinding()
79 type_decl.Set("template_args", args); in AddTemplateInfo()
84 type_decl.Set("linker_set_key", type_ir->GetLinkerSetKey()); in AddTypeInfo()
85 type_decl.Set("source_file", type_ir->GetSourceFile()); in AddTypeInfo()
86 type_decl.Set("name", type_ir->GetName()); in AddTypeInfo()
87 type_decl.Set("size", (uint64_t)type_ir->GetSize()); in AddTypeInfo()
88 type_decl.Set("alignment", (uint64_t)type_ir->GetAlignment()); in AddTypeInfo()
[all …]
Dconverter.cpp41 void JsonObject::Set(const std::string &key, bool value) { in Set() function in header_checker::repr::JsonObject
46 void JsonObject::Set(const std::string &key, uint64_t value) { in Set() function in header_checker::repr::JsonObject
51 void JsonObject::Set(const std::string &key, int64_t value) { in Set() function in header_checker::repr::JsonObject
56 void JsonObject::Set(const std::string &key, const std::string &value) { in Set() function in header_checker::repr::JsonObject
61 void JsonObject::Set(const std::string &key, const JsonArray &value) { in Set() function in header_checker::repr::JsonObject
Dconverter.h46 void Set(const std::string &key, bool value);
49 void Set(const std::string &key, uint64_t value);
52 void Set(const std::string &key, int64_t value);
55 void Set(const std::string &key, const std::string &value);
58 void Set(const std::string &key, const JsonArray &value);
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DIntentFlags.java21 import java.util.Set;
59 private Set<IntentFlag> mComplements = new HashSet<>();
60 private Set<IntentFlag> mConflicts = new HashSet<>();
61 private Set<IntentFlag> mRequests = new HashSet<>();
63 IntentFlag(String name, Set<IntentFlag> complements, Set<IntentFlag> conflicts, in IntentFlag()
64 Set<IntentFlag> requests) { in IntentFlag()
74 public Set<IntentFlag> getComplements() { in getComplements()
81 public Set<IntentFlag> getConflicts() { in getConflicts()
88 public Set<IntentFlag> getRequests() { in getRequests()
99 protected static Set<IntentFlag> setOf(IntentFlag... flags) { in setOf()
DIntentFragment.java32 import java.util.Set;
67 Set<String> categories = intent.getCategories(); in onResume()
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeyUtils.java22 import java.util.Set;
53 private Set<String> mValidPackages = new HashSet<>();
54 private Set<String> mInvalidPackages = new HashSet<>();
59 public void addValidPackages(Set<String> validPackages) { in addValidPackages()
63 public void addInvalidPackages(Set<String> invalidPackages) { in addInvalidPackages()
/development/host/windows/usb/api/
Dadb_api_private_defines.h39 Set(proto.device_name().c_str(), proto.class_id(), proto.flags()); in AdbInstanceEnumEntry()
45 Set(dev_name, cls_id, flgs); in AdbInstanceEnumEntry()
55 Set(proto.device_name().c_str(), proto.class_id(), proto.flags());
60 void Set(const wchar_t* dev_name, GUID cls_id, DWORD flgs) { in Set() function
/development/tools/idegen/src/com/android/idegen/
DModuleIndexes.java29 import java.util.Set;
42 private HashMap<String, Set<String>> makeFileToModuleNamesMap;
81 Set<String> moduleNames = makeFileToModuleNamesMap.get(makeFile); in append()
DModule.java32 import java.util.Set;
71 private Set<String> allDependencies = Sets.newHashSet(); // direct + indirect
72 private Set<File> allDependentImlFiles = Sets.newHashSet();
79 Set<String> explicitModuleNameDependencies = Sets.newHashSet();
85 Set<File> implicitModulePathDependencies = Sets.newHashSet();
285 Set<String> moduleNameDependencies = explicitModuleNameDependencies; in buildDependentModules()
323 public Set<String> getAllDependencies() { in getAllDependencies()
327 public Set<File> getAllDependentImlFiles() { in getAllDependentImlFiles()
/development/tools/bugreport/src/com/android/bugreport/logcat/
DLogcat.java21 import java.util.Set;
35 public ArrayList<LogLine> filter(Set<String> tags, String levels) { in filter()
/development/tools/mkstubs/tests/data/
DTestTemplateClass.java25 import java.util.Set;
53 public <X extends T, Y> void getMap(List<T> list, Map<T, U> tu, Map<X, Set<? super Y>> xy) { in getMap()
/development/testrunner/
Dandroid_mk.py26 from sets import Set
41 self._includes = Set() # variables included in makefile
89 return self.__RecursiveGetVariable(identifier, Set())
/development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
DAlarmStorage.java27 import java.util.Set;
88 public Set<Alarm> getAlarms() { in getAlarms()
89 Set<Alarm> alarms = new HashSet<>(); in getAlarms()
/development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/server/
DStoreBackendImpl.java28 import java.util.Set;
36 private final Set<Transaction> mReceivedTransactions = new HashSet<>();
/development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/
DCustomRestrictionsFragment.java35 import java.util.Set;
183 } else if (preference == mMultiPref && newValue instanceof Set) { in onPreferenceChange()
186 String[] selectedStrings = new String[((Set<String>) newValue).size()]; in onPreferenceChange()
189 for (String value : (Set<String>) newValue) { in onPreferenceChange()
/development/tools/mkstubs/src/com/android/mkstubs/
DAsmAnalyzer.java27 import java.util.Set;
85 Set<String> keys = classes.keySet(); in filter()
/development/samples/browseable/Quiz/Wearable/src/com.example.android.wearable.quiz/
DQuizReportActionService.java34 import java.util.Set;
79 Set<Node> connectedNodes = capabilityInfo.getNodes(); in sendResetMessage()
/development/samples/MultiDisplay/src/com/example/android/multidisplay/launcher/
DPinnedAppListViewModel.java35 import java.util.Set;
88 final Set<String> pinnedAppsComponents = sp.getStringSet(PINNED_APPS_KEY, null); in loadData()
/development/tools/checkcolor/src/test/java/com/google/checkcolor/lint/
DHardcodedColorDetectorTest.java29 import java.util.Set;
33 private Set<Issue> mEnabled = new HashSet<Issue>();
/development/samples/browseable/FindMyPhone/Wearable/src/com.example.android.wearable.findphone/
DDisconnectListenerService.java33 import java.util.Set;
97 Set<Node> connectedNodes = capabilityInfo.getNodes(); in updateFindMeCapability()
/development/samples/ToyVpn/src/com/example/android/toyvpn/
DToyVpnClient.java30 import java.util.Set;
78 final Set<String> packageSet = in onCreate()
128 private boolean checkPackages(Set<String> packageNames) { in checkPackages()
DToyVpnConnection.java37 import java.util.Set;
96 private final Set<String> mPackages;
101 final Set<String> packages) { in ToyVpnConnection()
/development/samples/browseable/DelayedConfirmation/Wearable/src/com.example.android.wearable.delayedconfirmation/
DMainActivity.java37 import java.util.Set;
177 Set<Node> connectedNodes = capabilityInfo.getNodes();
191 private Node pickBestNode(Set<Node> connectedNodes) {
/development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
DStatusTracker.java78 public Set<String> keySet() { in keySet()
/development/tools/repo_diff/service/repodiff/handlers/
Dhttp.go32 writer.Header().Set("Content-Type", "application/json")

123