HomeSort by relevance Sort by last modified time
    Searched refs:argument (Results 1 - 25 of 949) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/
map_unaligned.stderr.exp 2 unaligned mmap failed: Invalid argument
  /external/chromium_org/base/test/
test_process_killer_win.h 13 // |argument| on their command line.
15 const string16& argument);
  /external/mockito/src/org/mockito/internal/matchers/
CapturesArguments.java 10 void captureFrom(Object argument);
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
022-define-func-arg-with-parens.c 2 foo(argument(including parens)for the win)
038-func-arg-with-commas.c 2 foo(argument (with,embedded , commas) -- tricky)
  /external/easymock/src/org/easymock/
IArgumentMatcher.java 19 * Decides whether an actual argument is accepted.
24 * Returns whether this matcher accepts the given argument.
26 * Like Object.equals(), it should be aware that the argument passed might
30 * The method should <b>never</b> assert if the argument doesn't match. It
34 * @param argument the argument
35 * @return whether this matcher accepts the given argument.
37 boolean matches(Object argument);
  /external/mesa3d/src/glsl/glcpp/tests/
022-define-func-arg-with-parens.c 2 foo(argument(including parens)for the win)
038-func-arg-with-commas.c 2 foo(argument (with,embedded , commas) -- tricky)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
fwd.hpp 30 class argument;
31 typedef shared_ptr<argument> argument_ptr;
32 typedef shared_ptr<argument const> const_argument_ptr;
argument.hpp 12 // Description : model of actual argument (both typed and abstract interface)
35 // ************** runtime::argument ************** //
43 class argument { class in namespace:boost::BOOST_RT_PARAM_NAMESPACE
46 argument( parameter const& p, rtti::id_t value_type ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::argument
52 virtual ~argument() {}
64 class typed_argument : public argument {
68 : argument( p, rtti::type_id<T>() )
71 : argument( p, rtti::type_id<T>() )
84 arg_value( argument const& arg_ )
95 arg_value( argument& arg_
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_methods.py 54 def argument_needs_try_catch(argument):
55 idl_type = argument.idl_type
63 (argument.is_variadic and idl_type.is_wrapper_type) or
67 (base_type == 'DOMString' and not argument.is_variadic))
102 argument for argument in arguments
103 if argument.idl_type.name == 'EventListener')
109 arguments_need_try_catch = any(argument_needs_try_catch(argument)
110 for argument in arguments)
114 'arguments': [generate_argument(interface, method, argument, index
    [all...]
v8_callback_interface.py 88 for argument in operation.arguments:
89 argument.idl_type.add_includes_for_type()
115 def generate_argument(argument):
117 'handle': '%sHandle' % argument.name,
122 'cpp_value_to_v8_value': argument.idl_type.cpp_value_to_v8_value(
123 argument.name, isolate='isolate',
129 '%s %s' % (argument.idl_type.callback_cpp_type, argument.name)
130 for argument in arguments)
133 'arguments': [generate_argument(argument) for argument in arguments]
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 40 void *IncrementerThread(void *argument) {
41 CallbackArgument *callback_argument = (CallbackArgument *)argument;
56 void *argument) {
57 CallbackArgument *callback_argument = (CallbackArgument *)argument;
73 CallbackArgument argument; local
78 &argument);
80 StopTheWorld(&Callback, &argument);
82 EXPECT_TRUE(argument.callback_executed);
83 EXPECT_TRUE(argument.threads_stopped);
84 // argument is on stack, so we have to wait for the incrementer thread t
166 AdvancedCallbackArgument argument; local
    [all...]
sanitizer_stoptheworld_testlib.cc 35 void *argument) {
39 void *SuspenderThread(void *argument) {
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-stub/src/
loc_api_rpcgen_cb_svc.c 52 } argument; local
75 memset ((char *)&argument, 0, sizeof (argument));
76 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
80 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
84 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
99 } argument; local
122 memset ((char *)&argument, 0, sizeof (argument));
123 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
146 } argument; local
193 } argument; local
240 } argument; local
287 } argument; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mutex.py 5 Otherwise, the queue contains 0 or more (function, argument) pairs
8 the first queue entry is removed and its function(argument) pair called,
39 def lock(self, function, argument):
40 """Lock a mutex, call the function with supplied argument
42 function and argument in the queue."""
44 function(argument)
46 self.queue.append((function, argument))
50 function with its argument."""
52 function, argument = self.queue.popleft()
53 function(argument)
    [all...]
sched.py 16 Events are specified by tuples (time, priority, action, argument).
19 event means calling the action function, passing it the argument
20 sequence in "argument" (remember that in Python, multiple function
36 Event = namedtuple('Event', 'time, priority, action, argument')
46 def enterabs(self, time, priority, action, argument):
53 event = Event(time, priority, action, argument)
57 def enter(self, delay, priority, action, argument):
64 return self.enterabs(time, priority, action, argument)
86 (its action function is called, passing it the argument). If
108 time, priority, action, argument = checked_event = q[0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mutex.py 5 Otherwise, the queue contains 0 or more (function, argument) pairs
8 the first queue entry is removed and its function(argument) pair called,
39 def lock(self, function, argument):
40 """Lock a mutex, call the function with supplied argument
42 function and argument in the queue."""
44 function(argument)
46 self.queue.append((function, argument))
50 function with its argument."""
52 function, argument = self.queue.popleft()
53 function(argument)
    [all...]
sched.py 16 Events are specified by tuples (time, priority, action, argument).
19 event means calling the action function, passing it the argument
20 sequence in "argument" (remember that in Python, multiple function
36 Event = namedtuple('Event', 'time, priority, action, argument')
46 def enterabs(self, time, priority, action, argument):
53 event = Event(time, priority, action, argument)
57 def enter(self, delay, priority, action, argument):
64 return self.enterabs(time, priority, action, argument)
86 (its action function is called, passing it the argument). If
108 time, priority, action, argument = checked_event = q[0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/tgsi/
compiler.cpp 43 compat::vector<module::argument> args;
53 args.push_back({ module::argument::scalar, 4 });
55 args.push_back({ module::argument::global, 4 });
57 args.push_back({ module::argument::local, 4 });
59 args.push_back({ module::argument::constant, 4 });
61 args.push_back({ module::argument::image2d_rd, 4 });
63 args.push_back({ module::argument::image2d_wr, 4 });
65 args.push_back({ module::argument::image3d_rd, 4 });
67 args.push_back({ module::argument::image3d_wr, 4 });
69 args.push_back({ module::argument::sampler, 0 })
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/tgsi/
compiler.cpp 43 compat::vector<module::argument> args;
53 args.push_back({ module::argument::scalar, 4 });
55 args.push_back({ module::argument::global, 4 });
57 args.push_back({ module::argument::local, 4 });
59 args.push_back({ module::argument::constant, 4 });
61 args.push_back({ module::argument::image2d_rd, 4 });
63 args.push_back({ module::argument::image2d_wr, 4 });
65 args.push_back({ module::argument::image3d_rd, 4 });
67 args.push_back({ module::argument::image3d_wr, 4 });
69 args.push_back({ module::argument::sampler, 0 })
    [all...]
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 118 + " <ARG> is an optional string argument\n"
188 for (String argument; (argument = mTokenizer.nextArg()) != null;) {
189 if (ARGUMENT_URI.equals(argument)) {
190 uri = Uri.parse(argumentValueRequired(argument));
191 } else if (ARGUMENT_USER.equals(argument)) {
192 userId = Integer.parseInt(argumentValueRequired(argument));
193 } else if (ARGUMENT_BIND.equals(argument)) {
196 throw new IllegalArgumentException("Unsupported argument: " + argument);
341 String argument = mTokenizer.nextArg(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 78 {% for argument in method.arguments %}
79 {{generate_argument_var_declaration(argument)}};
86 {% for argument in method.arguments %}
87 {{generate_argument(method, argument, world_suffix) | indent}}
94 {% macro generate_argument_var_declaration(argument) %}
95 {% if argument.is_callback_interface %}
97 {% if argument.idl_type == 'EventListener' %}
98 RefPtr<{{argument.idl_type}}> {{argument.name}}
100 OwnPtr<{{argument.idl_type}}> {{argument.name}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadFunctionInvocation.h 34 typedef void (*ThreadFunction)(void* argument);
  /external/easymock/src/org/easymock/internal/
AlwaysMatcher.java 29 protected String argumentToString(Object argument) {

Completed in 975 milliseconds

1 2 3 4 5 6 7 8 91011>>