HomeSort by relevance Sort by last modified time
    Searched refs:argument (Results 1 - 25 of 666) 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/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) {
  /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...]
  /external/chromium/base/debug/
debug_on_start_win.cc 16 // Minimalist implementation to try to find a command line argument. We can use
19 // The code is not that bright and will find things like ---argument or
20 // /-/argument.
23 wchar_t argument[50] = {}; local
25 argument[i] = argument_c[i];
27 int argument_len = lstrlen(argument);
32 // Try to find an argument.
37 if (lstrcmpi(command_line+1, argument) == 0) {
54 // Try to find the argument.
  /external/chromium_org/base/debug/
debug_on_start_win.cc 16 // Minimalist implementation to try to find a command line argument. We can use
19 // The code is not that bright and will find things like ---argument or
20 // /-/argument.
23 wchar_t argument[50] = {}; local
25 argument[i] = argument_c[i];
27 int argument_len = lstrlen(argument);
32 // Try to find an argument.
37 if (lstrcmpi(command_line+1, argument) == 0) {
54 // Try to find the argument.
  /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) {
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 110 + " <ARG> is an optional string argument\n"
171 for (String argument; (argument = mTokenizer.nextArg()) != null;) {
172 if (ARGUMENT_URI.equals(argument)) {
173 uri = Uri.parse(argumentValueRequired(argument));
174 } else if (ARGUMENT_USER.equals(argument)) {
175 userId = Integer.parseInt(argumentValueRequired(argument));
176 } else if (ARGUMENT_BIND.equals(argument)) {
179 throw new IllegalArgumentException("Unsupported argument: " + argument);
305 String argument = mTokenizer.nextArg(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptFunctionCall.cpp 48 void ScriptCallArgumentHandler::appendArgument(const ScriptObject& argument)
50 if (argument.scriptState() != m_scriptState) {
54 m_arguments.append(argument);
57 void ScriptCallArgumentHandler::appendArgument(const ScriptValue& argument)
59 m_arguments.append(argument);
62 void ScriptCallArgumentHandler::appendArgument(const String& argument)
65 m_arguments.append(v8String(argument, m_scriptState->isolate()));
68 void ScriptCallArgumentHandler::appendArgument(const char* argument)
71 m_arguments.append(v8String(argument, m_scriptState->isolate()));
74 void ScriptCallArgumentHandler::appendArgument(long argument)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
memoized_unittest.py 39 def memoized_add(self, argument):
42 if argument is None:
44 return argument + 1

Completed in 697 milliseconds

1 2 3 4 5 6 7 8 91011>>