/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-dbus-new-getall.py | 12 props = wpas_obj.GetAll("fi.w1.wpa_supplicant1", 14 print "GetAll(fi.w1.wpa_supplicant1, /fi/w1/wpa_supplicant1):" 25 props = if_obj.GetAll("fi.w1.wpa_supplicant1.Interface", 28 print "GetAll(fi.w1.wpa_supplicant1.Interface, %s):" % (path) 31 props = if_obj.GetAll("fi.w1.wpa_supplicant1.Interface.WPS", 34 print "GetAll(fi.w1.wpa_supplicant1.Interface.WPS, %s):" % (path) 41 props = bss_obj.GetAll("fi.w1.wpa_supplicant1.BSS", 44 print "GetAll(fi.w1.wpa_supplicant1.BSS, %s):" % (res[0]) 51 props = net_obj.GetAll("fi.w1.wpa_supplicant1.Network", 54 print "GetAll(fi.w1.wpa_supplicant1.Network, %s):" % (res[0] [all...] |
/external/chromium_org/chrome/browser/extensions/api/commands/ |
commands.h | 13 DECLARE_EXTENSION_FUNCTION("commands.getAll", COMMANDS_GETALL)
|
/external/chromium_org/chrome/renderer/extensions/ |
chrome_v8_context_set_unittest.cc | 36 EXPECT_EQ(1u, context_set.GetAll().count(context)); 41 EXPECT_EQ(1u, context_set.GetAll().count(context)); 43 // GetAll() returns a copy so removing from one should not remove from others. 44 ChromeV8ContextSet::ContextSet set_copy = context_set.GetAll();
|
chrome_v8_context_set.cc | 58 ChromeV8ContextSet::ContextSet ChromeV8ContextSet::GetAll() const { 89 ContextSet contexts = GetAll(); 118 ContextSet contexts = GetAll();
|
/external/chromium_org/ppapi/thunk/ |
ppb_ext_alarms_thunk.cc | 47 int32_t GetAll(PP_Instance instance, 58 "alarms.getAll", input_args, output_args, enter.callback())); 83 &GetAll,
|
/external/mockito/src/org/mockito/internal/verification/ |
RegisteredInvocations.java | 22 List<Invocation> getAll();
|
SingleRegisteredInvocation.java | 26 public List<Invocation> getAll() {
|
/external/guava/guava-tests/test/com/google/common/cache/ |
CacheEvictionTest.java | 175 getAll(cache, asList(0, 1, 2)); 180 getAll(cache, asList(10, 11, 12)); 185 getAll(cache, asList(6, 7, 8)); 190 getAll(cache, asList(13, 14, 15)); 208 getAll(cache, asList(0, 1, 2)); 213 getAll(cache, asList(10)); 218 getAll(cache, asList(6, 7, 8)); 223 getAll(cache, asList(15)); 228 getAll(cache, asList(9)); 233 getAll(cache, asList(1)) [all...] |
/external/chromium_org/chrome/browser/extensions/api/permissions/ |
permissions_api.h | 31 // chrome.permissions.getAll 34 DECLARE_EXTENSION_FUNCTION("permissions.getAll", PERMISSIONS_GETALL)
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/ |
tabs.js | 8 chrome.windows.getAll({'populate': true}, function(windows) { 21 chrome.windows.getAll({'populate': true}, function(windows) {
|
/external/chromium_org/chromeos/dbus/ |
sms_client.h | 41 // Calls GetAll method. |callback| is called after the method call succeeds. 42 virtual void GetAll(const std::string& service_name,
|
sms_client.cc | 37 // Calls GetAll method. |callback| is called after the method call succeeds. 38 virtual void GetAll(const std::string& service_name, 53 // Handles responses of GetAll method calls. 87 virtual void GetAll(const std::string& service_name,
|
fake_bluetooth_input_client.cc | 39 void FakeBluetoothInputClient::Properties::GetAll() { 40 VLOG(1) << "GetAll";
|
/external/chromium/chrome/common/extensions/docs/examples/api/cookies/ |
background.html | 8 chrome.windows.getAll({"populate":true}, function(windows) {
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/ |
background.js | 10 chrome.windows.getAll({"populate":true}, function(windows) {
|
/external/chromium_org/chrome/browser/extensions/api/cookies/ |
cookies_unittest.cc | 22 namespace GetAll = extensions::api::cookies::GetAll; 172 GetAll::Params::Details details; 173 bool rv = GetAll::Params::Details::Populate(dict, &details); 197 scoped_ptr<GetAll::Params> params(GetAll::Params::Create(args));
|
cookies_helpers.h | 84 const extensions::api::cookies::GetAll::Params::Details* details, 92 // cookies.getAll(). 94 // passed into the cookies.getAll() API by the user. If the dictionary contains 103 const extensions::api::cookies::GetAll::Params::Details* details); 119 const extensions::api::cookies::GetAll::Params::Details* details_;
|
/external/chromium_org/chrome/browser/extensions/api/discovery/ |
discovery_api_unittest.cc | 106 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); 121 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); 139 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); 161 const SuggestedLinkList* links = registry->GetAll(GetExtensionId()); 186 const SuggestedLinkList* links = registry->GetAll(GetExtensionId());
|
/external/guava/guava/src/com/google/common/cache/ |
CacheLoader.java | 81 * {@link Cache#getAll}. 84 * contain will be cached, but {@code getAll} will throw an exception. If the returned map 86 * but only the entries for {@code keys} will be returned from {@code getAll}. 89 * many individual lookups. Note that {@link Cache#getAll} will defer to individual calls to 98 // This will be caught by getAll(), causing it to fall back to multiple calls to Cache.get
|
AbstractLoadingCache.java | 34 * {@link #get(K, Callable)}, and {@link #getAll} are implemented in terms of {@code get}; 59 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException {
|
ForwardingLoadingCache.java | 57 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException { 58 return delegate().getAll(keys);
|
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
CacheLoader.java | 54 * {@link Cache#getAll}. 57 * contain will be cached, but {@code getAll} will throw an exception. If the returned map 59 * but only the entries for {@code keys} will be returned from {@code getAll}. 62 * many individual lookups. Note that {@link Cache#getAll} will defer to individual calls to 71 // This will be caught by getAll(), causing it to fall back to multiple calls to Cache.get
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
AttributeTable.java | 120 public ASN1EncodableVector getAll(DERObjectIdentifier oid) 122 return getAll(new ASN1ObjectIdentifier(oid.getId())); 132 public ASN1EncodableVector getAll(
|
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
AwGeolocationPermissions.java | 66 for (String name : mSharedPreferences.getAll().keySet()) { 111 for (String name : mSharedPreferences.getAll().keySet()) {
|
/external/chromium_org/build/android/pylib/base/ |
base_test_result_unittest.py | 30 self.tr.GetAll().symmetric_difference( 49 tr2.GetAll().symmetric_difference(
|