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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTestHelper.h 41 // A helper class for writing tests of CSS rules. Example usage:
43 // CSSTestHelper helper;
44 // helper.addCSSRule("body { color: red} #a { position: absolute }");
45 // RuleSet& ruleSet = helper.ruleSet();
  /external/chromium_org/tools/gyp/test/mac/xcode-support-actions/
test.gyp 16 'action_name': 'Helper',
  /external/clang/test/SemaCXX/
warn-new-overaligned.cpp 13 void helper() { function in namespace:test1
26 void helper() { function in namespace:test2
47 void helper() { function in namespace:test3
68 void helper() { function in namespace:test4
  /external/compiler-rt/test/BlocksRuntime/
objectRRGC.c 50 // should be a copy helper generated with a calls to above routines
61 // call helper routines directly. These will, in turn, we hope, call the stubs above
68 printf("did not call assign helper!\n");
72 printf("did not call dispose helper\n");
  /external/libsepol/tests/policies/support/
misc_macros.spt 4 # Helper macros
  /external/wpa_supplicant_8/src/drivers/
rfkill.h 2 * Linux rfkill helper functions for driver wrappers
  /libnativehelper/
README 11 Some helper functions are defined in include/nativehelper/JNIHelp.h.
  /art/test/054-uncaught/src/
Main.java 30 Thread t = new Helper(which);
66 private static class Helper extends Thread {
69 public Helper(int which) {
  /cts/tests/tests/app/src/android/app/backup/cts/
BackupAgentHelperTest.java 27 BackupAgentHelper helper = new BackupAgentHelper(); local
28 helper.addHelper("prefs", new SharedPreferencesBackupHelper(mContext));
29 helper.addHelper("files", new FileBackupHelper(mContext));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
DHBasicKeyPairGenerator.java 32 DHKeyGeneratorHelper helper = DHKeyGeneratorHelper.INSTANCE; local
35 BigInteger x = helper.calculatePrivate(dhp, param.getRandom());
36 BigInteger y = helper.calculatePublic(dhp, x);
  /external/chromium_org/chrome/browser/ui/android/tab_contents/
chrome_web_contents_view_delegate_android.cc 46 ContextMenuHelper* helper = ContextMenuHelper::FromWebContents(web_contents_); local
47 if (helper)
48 helper->ShowContextMenu(params);
  /external/chromium_org/chrome/renderer/extensions/
tab_finder.cc 33 ExtensionHelper* helper = ExtensionHelper::Get(render_view);
34 if (helper && helper->tab_id() == tab_id_)
  /external/clang/test/Misc/
diag-aka-types.cpp 43 void helper(callback cb) {} // expected-note{{candidate function not viable: no known conversion from 'void (*)(struct data *)' (aka 'void (*)(ns::data *)') to 'callback' (aka 'void (*)(struct data *)') for 1st argument}} function
46 helper(&ns::str::method); // expected-error{{no matching function for call to 'helper'}}
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.helper/
Android.mk 17 test_makefile := external/libcxx/test/utilities/tuple/tuple.tuple/tuple.helper/Android.mk
19 test_name := utilities/tuple/tuple.tuple/tuple.helper/tuple_element
23 test_name := utilities/tuple/tuple.tuple/tuple.helper/tuple_size
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetConfigure.java 128 WidgetDatabaseHelper helper = new WidgetDatabaseHelper(this); local
130 helper.setPhoto(mAppWidgetId, mPickedItem, bitmap);
131 updateWidgetAndFinish(helper.getEntry(mAppWidgetId));
133 helper.close();
165 WidgetDatabaseHelper helper = new WidgetDatabaseHelper(this); local
180 helper.setWidget(mAppWidgetId,
182 updateWidgetAndFinish(helper.getEntry(mAppWidgetId));
184 helper.close();
194 WidgetDatabaseHelper helper = new WidgetDatabaseHelper(this); local
196 helper.setWidget(mAppWidgetId, WidgetDatabaseHelper.TYPE_SHUFFLE, null, null)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
StandaloneContactsProvider2.java 21 * A subclass of {@link SynchronousContactsProvider2} that doesn't reuse the database helper.
27 // No need to wipe data for this instance since it doesn't reuse the db helper.
41 // No need to wipe data for this instance since it doesn't reuse the db helper.
  /external/chromium_org/chrome/test/remoting/
remote_desktop_browsertest.h 113 // Helper to simulate a left button mouse click.
116 // Helper to simulate a mouse click.
147 // Helper to get the pin number used for me2me authentication.
150 // Helper to get the name of the remote host to connect to.
153 // Helper to get the test controller URL.
168 // Helper to get the path to the crx file of the webapp to be tested.
171 // Helper to get the extension ID of the installed chromoting webapp.
207 // Helper to construct the starting URL of the installed chromoting webapp.
212 // Helper to retrieve the current URL in the active WebContents.
219 // Helper to execute a JavaScript code snippet in the active WebContents
    [all...]
  /external/iptables/extensions/
libxt_CT.c 16 " --helper name Use conntrack helper 'name' for connection\n"
28 " --helper name Use conntrack helper 'name' for connection\n"
48 {.name = "helper", .id = O_HELPER, .type = XTTYPE_STRING,
49 .flags = XTOPT_PUT, XTOPT_POINTER(s, helper)},
61 {.name = "helper", .id = O_HELPER, .type = XTTYPE_STRING,
62 .flags = XTOPT_PUT, XTOPT_POINTER(s, helper)},
85 { "helper", IPCT_HELPER },
180 if (info->helper[0]
    [all...]
  /external/chromium_org/chrome/browser/extensions/
startup_helper.cc 186 scoped_refptr<ValidateCrxHelper> helper(
188 helper->Start();
189 if (!helper->finished())
192 bool success = helper->success();
194 *error = base::UTF16ToUTF8(helper->error());
261 void DeleteHelperAndRunCallback(AppInstallHelper* helper,
263 delete helper;
278 AppInstallHelper helper; local
280 helper.BeginInstall(profile, id, true, run_loop.QuitClosure());
283 if (!helper.success()
299 AppInstallHelper* helper = new AppInstallHelper(); local
    [all...]
  /external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
JavaScriptUtils.java 45 final OnEvaluateJavaScriptResultHelper helper = new OnEvaluateJavaScriptResultHelper(); local
53 helper.evaluateJavaScript(viewCore, code);
56 helper.waitUntilHasValue(timeout, timeoutUnits);
57 Assert.assertTrue("Failed to retrieve JavaScript evaluation results.", helper.hasValue());
58 return helper.getJsonResultAndClear();
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_utils.cc 28 helper_(helper()) {
38 helper_(helper()) {
49 helper_(helper()) {
60 helper_(helper()) {
67 static_cast<MockHelper*>(helper())->AdvanceTime(delta);
  /external/llvm/test/Transforms/ConstantMerge/
merge-both.ll 20 declare void @helper([16 x i8]*)
36 call void @helper([16 x i8]* @var5)
37 call void @helper([16 x i8]* @var6)
38 call void @helper([16 x i8]* @var7)
39 call void @helper([16 x i8]* @var8)
  /external/chromium_org/gpu/command_buffer/client/
query_tracker.cc 113 gl->helper()->BeginQueryEXT(target(), id(), shm_id(), shm_offset());
119 gl->helper()->BeginQueryEXT(target(), id(), shm_id(), shm_offset());
131 gl->helper()->BeginQueryEXT(target(), id(), shm_id(), shm_offset());
143 flush_count_ = gl->helper()->flush_generation();
144 gl->helper()->EndQueryEXT(target(), submit_count());
145 MarkAsPending(gl->helper()->InsertToken());
149 CommandBufferHelper* helper) {
153 helper->IsContextLost()) {
172 if ((helper->flush_generation() - flush_count_ - 1) >= 0x80000000) {
173 helper->Flush()
    [all...]
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
FileHelperExampleAgent.java 43 * around the helper's operation.
47 * The "key" string passed when adding a helper is a token used to
48 * disambiguate between entities supplied by multiple different helper
59 * need to do is a bit of one-time configuration: installing the helper
65 // is to install the helper that will process and back up the files we
67 FileBackupHelper helper = new FileBackupHelper(this, BackupRestoreActivity.DATA_FILE_NAME); local
68 addHelper(FILE_HELPER_KEY, helper);
  /external/chromium_org/build/mac/
make_more_helpers.sh 9 # This script creates additional helper .app bundles for Chromium, based on
10 # the existing helper .app bundle, changing their Mach-O header's flags to
11 # enable and disable various features. Based on Chromium Helper.app, it will
12 # create Chromium Helper EH.app, which has the MH_NO_HEAP_EXECUTION bit
14 # and Chromium Helper NP.app, which has the MH_PIE bit cleared to support
20 # Each helper is adjusted by giving it the proper bundle name, renaming the
32 local helper_name="${app_name} Helper"

Completed in 4528 milliseconds

1 2 3 4 56 7 8 91011>>