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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/chrome/browser/chromeos/policy/
device_local_account_policy_service_unittest.cc 150 ASSERT_TRUE(broker->core()->store());
151 EXPECT_EQ(CloudPolicyStore::STATUS_OK, broker->core()->store()->status());
153 EXPECT_TRUE(broker->core()->store()->policy_map().empty());
166 ASSERT_TRUE(broker->core()->store());
168 broker->core()->store()->status());
169 EXPECT_TRUE(broker->core()->store()->policy_map().empty());
188 ASSERT_TRUE(broker->core()->store());
190 broker->core()->store()->status());
191 EXPECT_TRUE(broker->core()->store()->policy_map().empty());
207 ASSERT_TRUE(broker->core()->store());
    [all...]
device_local_account_policy_service.h 38 scoped_ptr<DeviceLocalAccountPolicyStore> store);
115 virtual void OnStoreLoaded(CloudPolicyStore* store) OVERRIDE;
116 virtual void OnStoreError(CloudPolicyStore* store) OVERRIDE;
150 // Find the broker for a given |store|. Returns NULL if |store| is unknown.
151 DeviceLocalAccountPolicyBroker* GetBrokerForStore(CloudPolicyStore* store);
  /external/chromium_org/net/disk_cache/flash/
internal_entry.h 39 InternalEntry(const std::string& key, LogStore* store);
40 InternalEntry(int32 id, LogStore* store);
log_store_entry.h 25 explicit LogStoreEntry(LogStore* store);
26 LogStoreEntry(LogStore* store, int32 id);
  /external/chromium_org/net/proxy/
proxy_config_service_mac.h 54 SCDynamicStoreRef store) OVERRIDE;
63 void SetDynamicStoreNotificationKeys(SCDynamicStoreRef store);
  /external/e2fsprogs/tests/progs/
test_icount_cmds.ct 25 request do_store, "Store an icount entry",
26 store;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
PluginFlyoutPreferences.java 32 public PluginFlyoutPreferences(IPreferenceStore store, String prefix) {
33 m_store = store;
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
CurveAndSurfaceMath.java 24 * @param store
27 public static void interpolateNurbs(float u, Spline nurbSpline, Vector3f store) {
36 store.set(Vector3f.ZERO);
40 store.addLocal(nurbSpline.getControlPoints().get(i)
44 store.divideLocal(delimeter);
62 * @param store
66 int basisUFunctionDegree, int basisVFunctionDegree, Vector3f store) {
67 store.set(Vector3f.ZERO);
77 store.addLocal(controlPoint.x * val, controlPoint.y * val, controlPoint.z * val);
81 store.divideLocal(delimeter);
    [all...]
Plane.java 146 public Vector3f getClosestPoint(Vector3f point, Vector3f store){
148 // return store.set(normal).multLocal(t).addLocal(point);
150 return store.set(normal).multLocal(t).addLocal(point);
157 public Vector3f reflect(Vector3f point, Vector3f store){
158 if (store == null)
159 store = new Vector3f();
162 store.set(normal).negateLocal().multLocal(d * 2f);
163 store.addLocal(point);
164 return store;
  /external/valgrind/main/drd/tests/
annotate_hb_race.stderr.exp 2 Conflicting store by thread x at 0x........ size 4
hg03_inherit.stderr.exp 3 Conflicting store by thread 3 at 0x........ size 4
9 Conflicting store by thread 3 at 0x........ size 4
  /libcore/luni/src/main/java/java/net/
CookieManager.java 36 * some cookies into a cookie store. Three built-in CookiePolicy is defined:
56 private CookieStore store; field in class:CookieManager
76 * Constructs a new cookie manager using a specified cookie store and a
79 * @param store
86 public CookieManager(CookieStore store, CookiePolicy cookiePolicy) {
87 this.store = store == null ? new CookieStoreImpl() : store;
112 for (HttpCookie cookie : store.get(uri)) {
186 // if the cookie conforms to the policy, add it into the store
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Store.java 23 import com.android.email.mail.store.ImapStore;
24 import com.android.email.mail.store.Pop3Store;
25 import com.android.email.mail.store.ServiceStore;
41 * Store is the legacy equivalent of the Account class
43 public abstract class Store {
45 * A global suggestion to Store implementors on how much of the body
51 static final HashMap<HostAuth, Store> sStores = new HashMap<HostAuth, Store>();
58 static final HashMap<String, Class<? extends Store>> sStoreClasses =
59 new HashMap<String, Class<? extends Store>>();
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
GlobalLintConfiguration.java 62 IPreferenceStore store = getStore(); local
63 String assignments = store.getString(AdtPrefs.PREFS_LINT_SEVERITIES);
93 IPreferenceStore store = AdtPlugin.getDefault().getPreferenceStore(); local
94 return store;
153 IPreferenceStore store = getStore(); local
154 String previous = store.getString(AdtPrefs.PREFS_LINT_SEVERITIES);
158 store.setToDefault(AdtPrefs.PREFS_LINT_SEVERITIES);
160 store.setValue(AdtPrefs.PREFS_LINT_SEVERITIES, value);
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/preferences/
PrefPage.java 36 IPreferenceStore store = PdtPlugin.getDefault().getPreferenceStore(); local
37 setPreferenceStore(store);
  /external/chromium/chrome/browser/policy/
asynchronous_policy_provider.h 42 virtual bool Provide(ConfigurationPolicyStoreInterface* store);
dummy_configuration_policy_provider.cc 21 ConfigurationPolicyStoreInterface* store) {
mock_configuration_policy_provider.h 31 virtual bool Provide(ConfigurationPolicyStoreInterface* store);
  /external/chromium_org/chrome/browser/extensions/api/storage/
managed_value_store_cache.cc 212 PolicyValueStore* store = GetStoreFor(extension->id()); local
213 if (store) {
214 callback.Run(store);
217 // store and load it with the current policy, and don't send event
232 PolicyValueStore* store = GetStoreFor(extension_id); local
233 if (!store) {
234 // It's possible that the store exists, but hasn't been loaded yet
247 store->DeleteStorage();
268 PolicyValueStore* store = GetStoreFor(extension_id); local
269 if (!store) {
307 PolicyValueStore* store = GetStoreFor(extension_id); local
378 PolicyValueStore* store = GetStoreFor(extension_id); local
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
component_cloud_policy_updater.h 39 // |store| must outlive the updater, and is where the downloaded data will
44 ComponentCloudPolicyStore* store);
user_cloud_policy_manager.h 30 scoped_ptr<UserCloudPolicyStore> store);
59 // Typed pointer to the store owned by UserCloudPolicyManager. Note that
  /external/chromium_org/content/test/data/indexeddb/
database_test.js 12 debug('Populating object store');
22 debug('Deleting an object store.');
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_util.c 79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr ); local
81 if (store == NULL)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestRemoteCall.java 97 ObjectStore store = new ObjectStore(server); local
98 store.exposeObject("access", new ServerAccessImpl());
112 ObjectStore store = new ObjectStore(client); local
113 ServerAccess access = store.getExposedObject("access", ServerAccess.class, true);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_util.c 79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr ); local
81 if (store == NULL)
86 FREE(store);
91 stage->tmp[i] = (struct vertex_header *)(store + i * MAX_VERTEX_SIZE);

Completed in 747 milliseconds

1 2 3 4 5 6 78 91011>>