Home
last modified time | relevance | path

Searched refs:action (Results 1 – 25 of 2484) sorted by relevance

12345678910>>...100

/third_party/selinux/libselinux/src/
Dselinuxswig_python_exception.i3 $action
11 $action
19 $action
27 $action
35 $action
43 $action
51 $action
59 $action
67 $action
75 $action
[all …]
/third_party/ntfs-3g/ntfsprogs/
Dplaylog.c862 static int change_resident(ntfs_volume *vol, const struct ACTION_RECORD *action, in change_resident() argument
872 if (action->record.undo_length != action->record.redo_length) in change_resident()
875 lcn = sle64_to_cpu(action->record.lcn_list[0]); in change_resident()
877 (long long)inode_number(&action->record), in change_resident()
881 + le16_to_cpu(action->record.record_offset)); in change_resident()
888 attrend = le16_to_cpu(action->record.record_offset) in change_resident()
905 err = write_protected(vol, &action->record, in change_resident()
916 static int change_resident_expect(ntfs_volume *vol, const struct ACTION_RECORD *action, in change_resident_expect() argument
926 if (action->record.undo_length != action->record.redo_length) in change_resident_expect()
929 lcn = sle64_to_cpu(action->record.lcn_list[0]); in change_resident_expect()
[all …]
/third_party/python/Lib/
Dargparse.py257 def add_argument(self, action): argument
258 if action.help is not SUPPRESS:
262 invocations = [get_invocation(action)]
263 for subaction in self._iter_indented_subactions(action):
273 self._add_item(self._format_action, [action])
276 for action in actions:
277 self.add_argument(action)
313 for action in actions:
314 if action.option_strings:
315 optionals.append(action)
[all …]
/third_party/skia/experimental/docs/
DanimationCommon.js22 var action = keyframe[i];
23 loopOver(action, timeline);
51 var action = actions[aIndex];
52 var hasDraw = 'draw' in action;
53 var hasRef = 'ref' in action;
56 var ref = hasRef ? action.ref : "anonymous_" + index + "_" + aIndex;
61 assert('string' == typeof(action.draw));
62 var draw = (new Function("return " + action.draw))();
65 if ('paint' in action) {
66 assert('string' == typeof(action.paint));
[all …]
/third_party/flutter/skia/experimental/docs/
DanimationCommon.js22 var action = keyframe[i];
23 loopOver(action, timeline);
51 var action = actions[aIndex];
52 var hasDraw = 'draw' in action;
53 var hasRef = 'ref' in action;
56 var ref = hasRef ? action.ref : "anonymous_" + index + "_" + aIndex;
61 assert('string' == typeof(action.draw));
62 var draw = (new Function("return " + action.draw))();
65 if ('paint' in action) {
66 assert('string' == typeof(action.paint));
[all …]
/third_party/glib/gio/
Dgaction.c195 g_action_change_state (GAction *action, in g_action_change_state() argument
200 g_return_if_fail (G_IS_ACTION (action)); in g_action_change_state()
202 state_type = g_action_get_state_type (action); in g_action_change_state()
208 G_ACTION_GET_IFACE (action) in g_action_change_state()
209 ->change_state (action, value); in g_action_change_state()
232 g_action_get_state (GAction *action) in g_action_get_state() argument
234 g_return_val_if_fail (G_IS_ACTION (action), NULL); in g_action_get_state()
236 return G_ACTION_GET_IFACE (action) in g_action_get_state()
237 ->get_state (action); in g_action_get_state()
251 g_action_get_name (GAction *action) in g_action_get_name() argument
[all …]
Dgsimpleactiongroup.c84 GAction *action; in g_simple_action_group_query_action() local
86 action = g_hash_table_lookup (simple->priv->table, action_name); in g_simple_action_group_query_action()
88 if (action == NULL) in g_simple_action_group_query_action()
92 *enabled = g_action_get_enabled (action); in g_simple_action_group_query_action()
95 *parameter_type = g_action_get_parameter_type (action); in g_simple_action_group_query_action()
98 *state_type = g_action_get_state_type (action); in g_simple_action_group_query_action()
101 *state_hint = g_action_get_state_hint (action); in g_simple_action_group_query_action()
104 *state = g_action_get_state (action); in g_simple_action_group_query_action()
115 GAction *action; in g_simple_action_group_change_state() local
117 action = g_hash_table_lookup (simple->priv->table, action_name); in g_simple_action_group_change_state()
[all …]
Dgsimpleaction.c85 g_simple_action_get_name (GAction *action) in g_simple_action_get_name() argument
87 GSimpleAction *simple = G_SIMPLE_ACTION (action); in g_simple_action_get_name()
93 g_simple_action_get_parameter_type (GAction *action) in g_simple_action_get_parameter_type() argument
95 GSimpleAction *simple = G_SIMPLE_ACTION (action); in g_simple_action_get_parameter_type()
101 g_simple_action_get_state_type (GAction *action) in g_simple_action_get_state_type() argument
103 GSimpleAction *simple = G_SIMPLE_ACTION (action); in g_simple_action_get_state_type()
112 g_simple_action_get_state_hint (GAction *action) in g_simple_action_get_state_hint() argument
114 GSimpleAction *simple = G_SIMPLE_ACTION (action); in g_simple_action_get_state_hint()
123 g_simple_action_get_enabled (GAction *action) in g_simple_action_get_enabled() argument
125 GSimpleAction *simple = G_SIMPLE_ACTION (action); in g_simple_action_get_enabled()
[all …]
Dgaction.h45 const gchar * (* get_name) (GAction *action);
46 const GVariantType * (* get_parameter_type) (GAction *action);
47 const GVariantType * (* get_state_type) (GAction *action);
48 GVariant * (* get_state_hint) (GAction *action);
50 gboolean (* get_enabled) (GAction *action);
51 GVariant * (* get_state) (GAction *action);
53 void (* change_state) (GAction *action,
55 void (* activate) (GAction *action,
63 const gchar * g_action_get_name (GAction *action
65 const GVariantType * g_action_get_parameter_type (GAction *action
[all …]
/third_party/typescript_eslint/packages/eslint-plugin/tests/rules/
Dno-unused-vars.test.ts943 action: 'defined',
962 action: 'defined',
981 action: 'defined',
1001 action: 'defined',
1026 action: 'defined',
1050 action: 'defined',
1074 action: 'defined',
1095 action: 'defined',
1116 action: 'defined',
1137 action: 'defined',
[all …]
/third_party/flutter/skia/third_party/externals/sdl/visualtest/src/
Daction_configparser.c16 FreeAction(SDLVisualTest_Action* action) in FreeAction() argument
18 if(!action) in FreeAction()
20 switch(action->type) in FreeAction()
27 path = action->extra.process.path; in FreeAction()
28 args = action->extra.process.args; in FreeAction()
35 action->extra.process.path = NULL; in FreeAction()
36 action->extra.process.args = NULL; in FreeAction()
44 SDLVisualTest_Action action) in SDLVisualTest_EnqueueAction() argument
60 node->action = action; in SDLVisualTest_EnqueueAction()
89 FreeAction(&queue->front->action); in SDLVisualTest_DequeueAction()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/events/
DSDL_quit.c55 struct sigaction action; local
56 sigaction(SIGINT, NULL, &action);
58 if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) {
60 if ( action.sa_handler == SIG_DFL ) {
62 action.sa_handler = SDL_HandleSIG;
63 sigaction(SIGINT, &action, NULL);
65 sigaction(SIGTERM, NULL, &action);
68 if ( action.sa_handler == SIG_DFL && action.sa_sigaction == (void*)SIG_DFL ) {
70 if ( action.sa_handler == SIG_DFL ) {
72 action.sa_handler = SDL_HandleSIG;
[all …]
/third_party/node/deps/npm/node_modules/npm-audit-report/reporters/
Dparseable.js21 data.actions.forEach((action) => {
24 if (action.action === 'update' || action.action === 'install') {
25 const recommendation = getRecommendation(action, config)
29 action.resolves.forEach((resolution) => {
38 …accumulator[advisory.severity] += [action.action, l.package, l.sevLevel, l.recommendation, l.sever…
43 if (action.action === 'review') {
44 action.resolves.forEach((resolution) => {
54 …accumulator[advisory.severity] += [action.action, l.package, l.sevLevel, l.patchedIn, l.severity, …
83 const getRecommendation = function (action, config) { argument
84 if (action.action === 'install') {
[all …]
Ddetail.js47 const counts = data.actions.reduce((acc, {action, isMajor, resolves}) => { property
48 if (action === 'update' || (action === 'install' && !isMajor)) {
54 if (action === 'review') {
95 data.actions.forEach((action) => {
96 if (action.action === 'update' || action.action === 'install') {
97 const recommendation = getRecommendation(action, config)
98 const label = action.resolves.length === 1 ? 'vulnerability' : 'vulnerabilities'
99 …' + recommendation.cmd + ' ', 'inverse', config.withColor)} to resolve ${action.resolves.length} $…
104 action.resolves.forEach((resolution) => {
126 if (action.action === 'review') {
[all …]
/third_party/node/tools/
Dinstall.py82 def package_files(action, name, bins): argument
95 action(paths, target_path + dirname[len(root) + 1:] + '/')
100 if action == uninstall:
101 action([link_path], 'bin/' + bin_name)
102 elif action == install:
107 def npm_files(action): argument
108 package_files(action, 'npm', {
113 def corepack_files(action): argument
114 package_files(action, 'corepack', {
123 def subdir_files(path, dest, action): argument
[all …]
/third_party/css-what/src/__fixtures__/
Dtests.ts150 action: AttributeAction.Equals, constant
175 action: AttributeAction.Element,
191 action: AttributeAction.Element,
232 action: AttributeAction.Equals, constant
252 action: AttributeAction.Start, constant
268 action: AttributeAction.Start, constant
284 action: AttributeAction.End, constant
300 action: AttributeAction.Any, constant
316 action: AttributeAction.Equals, constant
332 action: AttributeAction.Equals, constant
[all …]
/third_party/glib/gio/tests/
Dactions.c14 activate (GAction *action, in activate() argument
31 GSimpleAction *action; in test_basic() local
38 action = g_simple_action_new ("foo", NULL); in test_basic()
39 g_assert_true (g_action_get_enabled (G_ACTION (action))); in test_basic()
40 g_assert_null (g_action_get_parameter_type (G_ACTION (action))); in test_basic()
41 g_assert_null (g_action_get_state_type (G_ACTION (action))); in test_basic()
42 g_assert_null (g_action_get_state_hint (G_ACTION (action))); in test_basic()
43 g_assert_null (g_action_get_state (G_ACTION (action))); in test_basic()
44 g_object_get (action, in test_basic()
58 g_signal_connect (action, "activate", G_CALLBACK (activate), &a); in test_basic()
[all …]
/third_party/typescript/tests/baselines/reference/
DrecursiveArrayNotCircular.types49 function reducer(action: ReducerAction): void {
50 >reducer : (action: ReducerAction) => void
51 >action : ReducerAction
53 switch(action.type) {
54 >action.type : ActionType
55 >action : ReducerAction
63 const x: number = action.payload;
65 >action.payload : number
66 >action : { type: ActionType.Bar; payload: number; }
75 const y: boolean = action.payload;
[all …]
DrecursiveArrayNotCircular.js21 function reducer(action: ReducerAction): void {
22 switch(action.type) {
24 const x: number = action.payload;
27 const y: boolean = action.payload;
30 const z: string = action.payload;
33 action.payload.map(reducer);
35 default: return assertNever(action);
50 function reducer(action) { argument
51 switch (action.type) {
53 var x = action.payload;
[all …]
/third_party/gettext/gettext-tools/examples/hello-objc-gnustep/
Dmain.m21 SEL action = @selector(method:);
25 action: action
28 action: action
31 action: @selector(showHelloWindow:)
34 action: action
37 action: action
40 action: @selector(hide:)
43 action: @selector(terminate:)
48 action: @selector(showInfoPanel:)
51 action: @selector(showPrefPanel:)
[all …]
/third_party/boost/boost/test/tools/
Dassertion.hpp67 #define BOOST_TEST_FOR_EACH_COMP_OP(action) \ argument
68 action( < , LT, >=, GE ) \
69 action( <=, LE, > , GT ) \
70 action( > , GT, <=, LE ) \
71 action( >=, GE, < , LT ) \
72 action( ==, EQ, !=, NE ) \
73 action( !=, NE, ==, EQ ) \
80 #define BOOST_TEST_FOR_EACH_CONST_OP(action)\ argument
81 action(->*, MEMP, ->*, MEMP ) \
83 action( * , MUL , * , MUL ) \
[all …]
/third_party/skia/third_party/externals/expat/expat/xmlwf/
Dxmlwf_helpgen.py59 input_related.add_argument('-s', action='store_true', help='print an error if the document is not […
60 input_related.add_argument('-n', action='store_true', help='enable [n]amespace processing')
61 input_related.add_argument('-p', action='store_true', help='enable processing external DTDs and [p]…
62 input_related.add_argument('-x', action='store_true', help='enable processing of e[x]ternal entitie…
63 input_related.add_argument('-e', action='store', metavar='ENCODING', help='override any in-document…
64 input_related.add_argument('-w', action='store_true', help='enable support for [W]indows code pages…
65 input_related.add_argument('-r', action='store_true', help='disable memory-mapping and use normal f…
66 input_related.add_argument('-k', action='store_true', help='when processing multiple files, [k]eep …
69 output_related.add_argument('-d', action='store', metavar='DIRECTORY', help='output [d]estination d…
71 output_mode.add_argument('-c', action='store_true', help='write a [c]opy of input XML, not canonica…
[all …]
/third_party/expat/xmlwf/
Dxmlwf_helpgen.py59 input_related.add_argument('-s', action='store_true', help='print an error if the document is not […
60 input_related.add_argument('-n', action='store_true', help='enable [n]amespace processing')
61 input_related.add_argument('-p', action='store_true', help='enable processing external DTDs and [p]…
62 input_related.add_argument('-x', action='store_true', help='enable processing of e[x]ternal entitie…
63 input_related.add_argument('-e', action='store', metavar='ENCODING', help='override any in-document…
64 input_related.add_argument('-w', action='store_true', help='enable support for [W]indows code pages…
65 input_related.add_argument('-r', action='store_true', help='disable memory-mapping and use normal f…
66 input_related.add_argument('-k', action='store_true', help='when processing multiple files, [k]eep …
69 output_related.add_argument('-d', action='store', metavar='DIRECTORY', help='output [d]estination d…
71 output_mode.add_argument('-c', action='store_true', help='write a [c]opy of input XML, not canonica…
[all …]
/third_party/cef/libcef/browser/net/
Dinternal_scheme_handler.cc162 InternalHandlerDelegate::Action action; in Create() local
163 if (delegate_->OnRequest(browser, request, &action)) { in Create()
164 if (!action.redirect_url.is_empty() && action.redirect_url.is_valid()) in Create()
165 return new RedirectHandler(action.redirect_url); in Create()
167 if (action.mime_type.empty()) in Create()
168 action.mime_type = GetMimeType(url.path()); in Create()
170 if (!action.bytes && action.resource_id >= 0) { in Create()
173 action.resource_id); in Create()
176 << action.resource_id << " URL: " << url.spec().c_str(); in Create()
179 action.bytes = base::RefCountedString::TakeString(&str); in Create()
[all …]
/third_party/node/
Dconfigure.py83 action='store',
89 action='store_true',
94 action='store_true',
99 action='store_true',
104 action='store',
110 action='store_true',
115 action='store_false',
121 action='store',
127 action='store_true',
132 action='store_true',
[all …]

12345678910>>...100