HomeSort by relevance Sort by last modified time
    Searched defs:obs (Results 1 - 13 of 13) sorted by null

  /external/chromium/chrome/browser/prefs/
overlay_persistent_pref_store_unittest.cc 29 PrefStoreObserverMock obs; local
30 overlay_->AddObserver(&obs);
33 EXPECT_CALL(obs, OnPrefValueChanged(StrEq(key))).Times(1);
35 Mock::VerifyAndClearExpectations(&obs);
38 EXPECT_CALL(obs, OnPrefValueChanged(StrEq(key))).Times(1);
40 Mock::VerifyAndClearExpectations(&obs);
43 EXPECT_CALL(obs, OnPrefValueChanged(StrEq(key))).Times(1);
45 Mock::VerifyAndClearExpectations(&obs);
48 EXPECT_CALL(obs, OnPrefValueChanged(StrEq(key))).Times(0);
50 Mock::VerifyAndClearExpectations(&obs);
    [all...]
pref_service_unittest.cc 63 PrefObserverMock obs; local
66 registrar.Add(pref_name, &obs);
70 obs.Expect(&prefs, pref_name, &expected_value);
72 Mock::VerifyAndClearExpectations(&obs);
76 EXPECT_CALL(obs, Observe(_, _, _)).Times(0);
78 Mock::VerifyAndClearExpectations(&obs);
82 obs.Expect(&prefs, pref_name, &expected_default_value);
84 Mock::VerifyAndClearExpectations(&obs);
87 EXPECT_CALL(obs, Observe(_, _, _)).Times(0);
89 Mock::VerifyAndClearExpectations(&obs);
119 PrefObserverMock obs; local
    [all...]
  /external/chromium/base/
observer_list_threadsafe.h 87 void AddObserver(ObserverType* obs) {
101 list->AddObserver(obs);
109 void RemoveObserver(ObserverType* obs) {
127 list->RemoveObserver(obs);
204 ObserverType* obs; local
205 while ((obs = it.GetNext()) != NULL)
206 method.Run(obs);
  /external/openssl/crypto/bio/
bf_buff.c 277 int ibs,obs; local
338 obs=ctx->obuf_size;
343 obs=(int)num;
349 obs=(int)num;
358 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size))
381 ctx->obuf_size=obs;
bf_lbuf.c 273 int obs; local
296 obs=(int)num;
298 if ((obs > DEFAULT_LINEBUFFER_SIZE) && (obs != ctx->obuf_size))
306 if (ctx->obuf_len > obs)
308 ctx->obuf_len = obs;
313 ctx->obuf_size=obs;
  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 911 PackageInstallObserver obs = new PackageInstallObserver(); local
913 mPm.installPackageWithVerification(apkURI, obs, installFlags, installerPackageName
1082 PackageDeleteObserver obs = new PackageDeleteObserver(); local
1124 ClearDataObserver obs = new ClearDataObserver(); local
    [all...]
  /external/openssl/crypto/comp/
c_zlib.c 718 int ibs, obs; local
738 obs = -1;
745 obs = (int) num;
750 obs = ibs;
763 if (obs != -1)
770 ctx->obufsize = obs;
  /external/opencv/cvaux/src/
cvhmm.cpp 74 CvImgObsInfo* obs = (CvImgObsInfo*)cvAlloc( sizeof( CvImgObsInfo) ); local
76 obs->obs_x = num_obs.width;
77 obs->obs_y = num_obs.height;
79 obs->obs = (float*)cvAlloc( total * obs_size * sizeof(float) );
81 obs->state = (int*)cvAlloc( 2 * total * sizeof(int) );
82 obs->mix = (int*)cvAlloc( total * sizeof(int) );
84 obs->obs_size = obs_size;
86 obs_info[0] = obs;
95 cvFree( &(obs_info->obs) );
417 CvImgObsInfo* obs = obs_info_array[k]; local
443 CvImgObsInfo* obs = obs_info_array[k]; local
759 float* obs = obs_info->obs + j * obs_x * vect_size; local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
compile.c 132 static struct obstack obs;
417 p = OB_MALLOC(&obs, 1, struct output);
729 struct sed_label *ret = OB_MALLOC(&obs, 1, struct sed_label);
766 struct replacement *r = OB_MALLOC(&obs, 1, struct replacement);
1057 obstack_init (&obs);
1285 cur_cmd->x.cmd_subst = OB_MALLOC(&obs, 1, struct subst);
130 static struct obstack obs; variable in typeref:struct:obstack
    [all...]
  /packages/apps/Email/src/com/android/email/
NotificationController.java 344 ContentObserver obs = mNotificationMap.get(accountId); local
345 if (obs != null) return; // we're already observing; nothing to do
    [all...]
  /external/opencv/cvaux/include/
cvaux.h 107 float* obs;//consequtive observations member in struct:CvImgObsInfo
190 CVAPI(void) cvImgToObs_DCT( const CvArr* arr, float* obs, CvSize dctSize,
212 (i.e. computes P(obs|state) for every pair(obs,state)) */
    [all...]
  /frameworks/base/media/java/android/media/
AudioService.java 3091 IAudioRoutesObserver obs = mRoutesObservers.getBroadcastItem(N); local
    [all...]
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9-swt.jar 

Completed in 704 milliseconds