HomeSort by relevance Sort by last modified time
    Searched refs:argument (Results 26 - 50 of 768) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.hpp 36 class argument;
69 class argument { class in struct:_cl_kernel
71 argument(size_t size);
73 /// \a true if the argument has been set.
76 /// Argument size in the input buffer.
82 /// Set this argument to some object.
86 /// object to this argument, and update \a ctx accordingly.
99 const std::vector<clover::module::argument> &args);
114 std::vector<std::unique_ptr<argument>> args;
120 class scalar_argument : public argument {
    [all...]
module.hpp 58 struct argument { struct in struct:clover::module
71 argument(enum type type, size_t size) : type(type), size(size) { } function in struct:clover::module::argument
72 argument() : type(scalar), size(0) { } function in struct:clover::module::argument
80 size_t offset, const clover::compat::vector<argument> &args) :
87 clover::compat::vector<argument> args;
kernel.cpp 31 const std::vector<clover::module::argument> &args) :
34 if (arg.type == module::argument::scalar)
36 else if (arg.type == module::argument::global)
38 else if (arg.type == module::argument::local)
40 else if (arg.type == module::argument::constant)
42 else if (arg.type == module::argument::image2d_rd ||
43 arg.type == module::argument::image3d_rd)
45 else if (arg.type == module::argument::image2d_wr ||
46 arg.type == module::argument::image3d_wr)
48 else if (arg.type == module::argument::sampler
179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument
    [all...]
  /external/mockito/src/org/mockito/internal/matchers/
CapturingMatcher.java 24 public boolean matches(Object argument) {
32 description.appendText("<Capturing argument>");
48 public void captureFrom(Object argument) {
49 this.arguments.add(argument);
  /external/llvm/test/MC/X86/AlignedBundling/
align-mode-argument-error.s 3 # Missing .bundle_align_mode argument
bundle-lock-option-error.s 3 # Missing .bundle_align_mode argument
  /external/chromium_org/extensions/renderer/resources/
messaging_utils.js 16 // responseCallback (last argument) is optional.
23 // options (third argument) is optional. It can also be ambiguous which
24 // argument it should match. If there are more than two arguments remaining,
29 // Exactly two arguments remaining. If the first argument is a string,
30 // it should bind to targetId, and the second argument should bind to
32 // only bind options when the first argument cannot bind to targetId.
38 // request (second argument) is required.
41 // targetId (first argument, extensionId in the manifest) is optional.
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
callback_interface.cpp 48 {% for argument in method.arguments %}
49 v8::Handle<v8::Value> {{argument.handle}} = {{argument.cpp_value_to_v8_value}};
50 if ({{argument.handle}}.IsEmpty()) {
  /external/chromium_org/third_party/ocmock/OCMock/
OCMObserverRecorder.h 17 - (BOOL)argument:(id)expectedArg matchesArgument:(id)observedArg;
  /external/chromium_org/third_party/skia/platform_tools/nacl/src/
nacl_interface.cpp 53 char* argument = new char[length + 1]; local
54 memcpy(argument, start, length);
55 argument[length] = '\0';
56 (*argv)[argIndex++] = argument;
  /external/chromium_org/win8/delegate_execute/
delegate_execute_util.h 21 // from |params| plus an optional |argument|.
24 const base::string16& argument);
  /external/compiler-rt/test/BlocksRuntime/
dispatch_call_Block_with_release.c 12 void callsomething(const char *format, int argument) {
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
module.hpp 58 struct argument { struct in struct:clover::module
71 argument(enum type type, size_t size) : type(type), size(size) { } function in struct:clover::module::argument
72 argument() : type(scalar), size(0) { } function in struct:clover::module::argument
80 size_t offset, const clover::compat::vector<argument> &args) :
87 clover::compat::vector<argument> args;
kernel.cpp 31 const std::vector<clover::module::argument> &args) :
34 if (arg.type == module::argument::scalar)
36 else if (arg.type == module::argument::global)
38 else if (arg.type == module::argument::local)
40 else if (arg.type == module::argument::constant)
42 else if (arg.type == module::argument::image2d_rd ||
43 arg.type == module::argument::image3d_rd)
45 else if (arg.type == module::argument::image2d_wr ||
46 arg.type == module::argument::image3d_wr)
48 else if (arg.type == module::argument::sampler
179 _cl_kernel::argument::argument(size_t size) : function in class:_cl_kernel::argument
    [all...]
  /external/clang/test/SemaCXX/
attr-format.cpp 6 // GCC has a hidden 'this' argument in member functions which is why
7 // the format argument is argument 2 here.
12 expected-error{{implicit this argument as the format string}}
16 expected-error{{invalid for the implicit this argument}}
28 // 'this' argument.
40 // this argument.
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld.h 58 void *argument);
64 void StopTheWorld(StopTheWorldCallback callback, void *argument);
  /external/mockito/src/org/mockito/
ArgumentMatcher.java 14 * Allows creating customized argument matchers.
47 * <b>Warning:</b> Be reasonable with using complicated argument matching, especially custom argument matchers, as it can make the test less readable.
49 * (Mockito naturally uses equals() for argument matching).
53 * For example, if custom argument matcher is not likely to be reused
54 * or you just need it to assert on argument values to complete verification of behavior.
58 * @param <T> type of argument
65 * Returns whether this matcher accepts the given argument.
67 * The method should <b>never</b> assert if the argument doesn't match. It
70 * @param argument
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 133 Object argument = argVec.elementAt( i ); local
136 if ( argument instanceof XNodeSet ) {
137 argList.add ( i, ((XNodeSet)argument).nodelist() );
138 } else if ( argument instanceof XObject ) {
139 Object passedArgument = ((XObject)argument).object();
142 argList.add ( i, argument );
184 Object argument = argVec.elementAt( i ); local
187 if ( argument instanceof XNodeSet ) {
188 argList.add ( i, ((XNodeSet)argument).nodelist() );
189 } else if ( argument instanceof XObject )
    [all...]
  /external/bison/lib/
printf-args.h 1 /* Decomposed printf argument list.
48 /* Argument types */
90 /* Polymorphic argument */
136 argument; typedef in typeref:struct:__anon4965
144 argument *arg;
145 argument direct_alloc_arg[N_DIRECT_ALLOC_ARGUMENTS];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-regexp.jar 
  /external/libedit/src/
common.c 71 int count = el->el_state.argument;
76 if (el->el_line.lastchar + el->el_state.argument >=
92 c_insert(el, el->el_state.argument);
120 el->el_state.argument, ce__isword);
171 c_delafter(el, el->el_state.argument); /* delete after dot */
290 el->el_line.cursor += el->el_state.argument;
317 el->el_state.argument,
339 el->el_line.cursor -= el->el_state.argument;
376 * Adds to argument or enters a digit
388 el->el_state.argument = c - '0'
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
app_engine_handler.py 33 for argument in self.request.arguments():
34 arguments[argument] = self.request.get(argument)
  /external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
DependencyGraph.cpp 29 TGraphArgument* argument = new TGraphArgument(intermFunctionCall, argumentNumber); local
30 mAllNodes.push_back(argument);
31 return argument;
  /external/elfutils/0.153/libcpu/
i386_parse.h 80 struct argument *arg;
  /external/libmtp/examples/
connect.c 54 split_arg(char * argument, char ** part1, char ** part2)
60 sepp = argument + strcspn(argument, ",");
62 *part1 = argument;

Completed in 419 milliseconds

12 3 4 5 6 7 8 91011>>