HomeSort by relevance Sort by last modified time
    Searched full:helper (Results 251 - 275 of 8381) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libmkv/
WebMElement.h 13 // these are helper functions
17 // this function is a helper only, it assumes a lot of defaults
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600Defines.h 1 //===-- R600Defines.h - R600 Helper Macros ----------------------*- C++ -*-===//
20 // Helper for finding getting the operand index for the instruction flags
  /external/chromium_org/ui/events/gestures/
gesture_recognizer_impl_mac.cc 50 virtual void AddGestureEventHelper(GestureEventHelper* helper) OVERRIDE {}
51 virtual void RemoveGestureEventHelper(GestureEventHelper* helper) OVERRIDE {}
  /external/libvpx/libvpx/third_party/libmkv/
WebMElement.h 13 // these are helper functions
17 // this function is a helper only, it assumes a lot of defaults
  /external/mesa3d/src/gallium/drivers/radeon/
R600Defines.h 1 //===-- R600Defines.h - R600 Helper Macros ----------------------*- C++ -*-===//
20 // Helper for finding getting the operand index for the instruction flags
  /frameworks/base/core/java/com/android/internal/util/
DumpUtils.java 25 * Helper functions for dumping the state of system services.
32 * Helper for dumping state owned by a handler thread.
  /frameworks/native/cmds/flatland/
Flatland.h 50 virtual bool setUp(const LayerDesc& desc, GLHelper* helper) = 0;
64 virtual bool setUp(GLHelper* helper) = 0;
  /frameworks/testing/uiautomator/utils/SleepUtils/SleepHelper/
AndroidManifest.xml 14 <instrumentation android:label="Sleep Helper"
18 <application android:label="Sleep Utils Sleep Helper">
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
WebMElement.h 13 // these are helper functions
17 // this function is a helper only, it assumes a lot of defaults
  /packages/apps/Gallery/src/com/android/camera/
PhotoAppWidgetProvider.java 48 PhotoDatabaseHelper helper = new PhotoDatabaseHelper(context); local
51 RemoteViews views = buildUpdate(context, appWidgetId, helper);
58 helper.close();
64 PhotoDatabaseHelper helper = new PhotoDatabaseHelper(context); local
66 helper.deletePhoto(appWidgetId);
68 helper.close();
75 PhotoDatabaseHelper helper) {
77 Bitmap bitmap = helper.getPhoto(appWidgetId);
  /packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/utils/
MetadataFileUriGetter.java 24 * Helper class to get the metadata URI and the additional ID.
28 // This helper class is not instantiable.
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
MockitoHelper.java 22 * Helper for Mockito-based test cases.
31 * Creates a new helper, which in turn will set the context classloader so
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/netfilter/
xt_CT.h 35 char helper[16]; member in struct:xt_ct_target_info
45 char helper[16]; member in struct:xt_ct_target_info_v1
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/netfilter/
xt_CT.h 35 char helper[16]; member in struct:xt_ct_target_info
45 char helper[16]; member in struct:xt_ct_target_info_v1
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/netfilter/
xt_CT.h 35 char helper[16]; member in struct:xt_ct_target_info
45 char helper[16]; member in struct:xt_ct_target_info_v1
  /external/clang/docs/
Block-ABI-Apple.rst 17 ``_Block_object_dispose`` for all "Object" types in helper functions.
50 // optional helper functions
107 respective helper functions if they are required by the ``Block`` literal.
118 into the ``Block`` that need helper functions for program level
240 imported as ``const`` copies with no need for helper functions.
245 The first case where copy and dispose helper functions are required is for the
318 second case where that requires copy and dispose helper functions to be
319 generated. The copy helper functions generated by the compiler should use the
320 ``_Block_object_assign`` runtime helper function and in the dispose helper th
    [all...]
  /external/chromium_org/ash/first_run/
first_run_helper_unittest.cc 103 FirstRunHelper* helper() { return helper_.get(); } function in class:ash::test::FirstRunHelperTest
119 // This test creates helper, checks that containers are hidden and then
120 // destructs helper.
125 // Tests that helper correctly handles Escape key press.
137 aura::Window* overlay_window = helper()->GetOverlayWidget()->GetNativeView();
  /external/chromium_org/chromeos/dbus/
shill_profile_client.cc 87 // There is no helper for the profile, create it.
90 ShillClientHelper* helper = new ShillClientHelper(object_proxy); local
91 helper->MonitorPropertyChanged(shill::kFlimflamProfileInterface);
92 helpers_.insert(HelperMap::value_type(profile_path.value(), helper));
93 return helper;
shill_device_client.cc 37 CHECK(iter->second) << "NULL Helper found in helper list.";
225 CHECK(it->second) << "Found a NULL helper in the list.";
229 // There is no helper for the profile, create it.
232 ShillClientHelper* helper = new ShillClientHelper(object_proxy); local
233 CHECK(helper) << "Unable to create Shill client helper.";
234 helper->MonitorPropertyChanged(shill::kFlimflamDeviceInterface);
235 helpers_.insert(HelperMap::value_type(device_path.value(), helper));
236 return helper;
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
transfer_buffer.h 56 TransferBuffer(CommandBufferHelper* helper);
133 CommandBufferHelper* helper,
137 helper_(helper),
183 CommandBufferHelper* helper, TransferBufferInterface* transfer_buffer)
185 num_elements * sizeof(T), helper, transfer_buffer) {
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarUpgradeReceiver.java 64 // Ask for a reference to the database to force the helper to either
67 CalendarDatabaseHelper helper = CalendarDatabaseHelper.getInstance(context); local
68 if (context.getDatabasePath(helper.getDatabaseName()).exists()) {
75 helper.getWritableDatabase();
77 helper.close();
  /external/chromium_org/base/prefs/
pref_member_unittest.cc 303 scoped_refptr<GetPrefValueHelper> helper(new GetPrefValueHelper());
305 helper->Init(kBoolPref, &prefs);
307 helper->FetchValue();
308 EXPECT_FALSE(helper->value());
312 helper->FetchValue();
313 EXPECT_TRUE(helper->value());
315 helper->Destroy();
317 helper->FetchValue();
318 EXPECT_TRUE(helper->value());
320 helper->StopThread()
    [all...]
  /external/chromium_org/chrome/common/
chrome_constants.h 33 // The helper .app bundle name and executable name may have one of these
36 // contains "EN", "MF", and NULL, it indicates that if the normal helper is
37 // named Chromium Helper.app, helper executables could show up at any of
38 // Chromium Helper.app/Contents/MacOS/Chromium Helper,
39 // Chromium Helper EN.app/Contents/MacOS/Chromium Helper EN, and
40 // Chromium Helper MF.app/Contents/MacOS/Chromium Helper MF
    [all...]
  /frameworks/base/docs/html/training/cloudsync/
backupapi.jd 75 {@link android.app.backup.BackupAgentHelper}. Creating this helper class is
87 android.app.backup.SharedPreferencesBackupHelper}. After you create the helper
108 // Allocate a helper and add it to the backup agent
111 FileBackupHelper helper = new FileBackupHelper(this, HIGH_SCORES_FILENAME);
112 addHelper(FILES_BACKUP_KEY, helper);
123 FileBackupHelper helper = new FileBackupHelper(this, HIGH_SCORES_FILENAME, PROGRESS_FILENAME);
124 addHelper(FILES_BACKUP_KEY, helper);
131 your application. Here's an example of how your backup agent helper might look if
148 // Simply allocate a helper and install it
150 SharedPreferencesBackupHelper helper
    [all...]
  /development/ndk/sources/android/ndk_helper/
JNIHelper.h 34 * Helper functions for JNI calls
70 * This methods need to be called before any call to the helper class.
75 * in: helper_class_name, pointer to Java side helper class name. (e.g. "com/sample/helper/NDKHelper" in samples )
81 * Retrieve the singleton object of the helper.
142 * Audio helper
151 * Audio helper

Completed in 4168 milliseconds

<<11121314151617181920>>