HomeSort by relevance Sort by last modified time
    Searched defs:Arguments (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/gin/
arguments.cc 5 #include "gin/arguments.h"
12 Arguments::Arguments()
19 Arguments::Arguments(const v8::FunctionCallbackInfo<v8::Value>& info)
26 Arguments::~Arguments() {
29 v8::Handle<v8::Value> Arguments::PeekNext() const {
35 void Arguments::ThrowError() const {
37 return ThrowTypeError("Insufficient number of arguments.")
    [all...]
arguments.h 14 // Arguments is a wrapper around v8::FunctionCallbackInfo that integrates
15 // with Converter to make it easier to marshall arguments and return values
17 class GIN_EXPORT Arguments {
19 Arguments();
20 explicit Arguments(const v8::FunctionCallbackInfo<v8::Value>& info);
21 ~Arguments();
  /external/llvm/tools/llvm-diff/
DiffLog.h 38 SmallVector<Value*, 4> Arguments;
45 Arguments.push_back(V);
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
genlingware.pl 96 Arguments:
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 43 static class Arguments {
56 /** remaining positional arguments */
59 Arguments() {
135 final Arguments args = new Arguments();
  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler.cc 52 // - Instructions ending in "hash" will write their 'HashString' arguments
55 // arguments, and will write this hash to the byte-code.
56 Add(Instruction("go", jtl::NAVIGATE, Arguments(String)));
57 Add(Instruction("any", jtl::NAVIGATE_ANY, Arguments()));
58 Add(Instruction("back", jtl::NAVIGATE_BACK, Arguments()));
59 Add(Instruction("store_bool", jtl::STORE_BOOL, Arguments(String, Bool)));
61 jtl::STORE_HASH, Arguments(String, HashString)));
63 jtl::STORE_HASH, Arguments(String, String)));
65 jtl::STORE_NODE_BOOL, Arguments(String)));
67 jtl::STORE_NODE_HASH, Arguments(String)))
228 base::ListValue arguments; local
    [all...]
  /external/clang/include/clang/Driver/
Job.h 53 /// \param Quote - Should separate arguments be quoted.
71 /// The list of program arguments (not including the implicit first
73 llvm::opt::ArgStringList Arguments;
93 const llvm::opt::ArgStringList &getArguments() const { return Arguments; }
  /external/chromium_org/v8/src/
arguments.h 13 // Arguments provides access to runtime call parameters.
15 // It uses the fact that the instance fields of Arguments
21 // Object* Runtime_function(Arguments args) {
28 class Arguments BASE_EMBEDDED {
30 Arguments(int length, Object** arguments)
31 : length_(length), arguments_(arguments) { }
55 // Get the total number of arguments including the receiver.
58 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED
66 // For each type of callback, we have a list of arguments
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 53 /// \brief The number of stored templates or template arguments,
122 const TemplateArgument *Arguments;
127 const TemplateArgument *Arguments)
129 Parameter(Parameter), Arguments(Arguments) { }
205 /// individual arguments.
TemplateBase.h 68 /// The template argument is actually a parameter pack. Arguments are stored
198 /// We assume that storage for the template arguments provided
211 /// template arguments.
330 /// \brief The number of template arguments in the given template argument
337 /// \brief Return the array of arguments in this template argument pack.
343 /// \brief Determines whether two template arguments are superficially the
364 // but template arguments get canonicalized too quickly.
515 SmallVector<TemplateArgumentLoc, 8> Arguments;
536 unsigned size() const { return Arguments.size(); }
539 return Arguments.data()
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest-death-test.cc     [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-death-test.cc 844 // Utility class for accumulating command-line arguments.
845 class Arguments {
847 Arguments() {
851 ~Arguments() {
862 void AddArguments(const ::std::vector<Str>& arguments)
    [all...]
  /external/gtest/src/
gtest-death-test.cc     [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 846 // Utility class for accumulating command-line arguments.
847 class Arguments {
849 Arguments() {
853 ~Arguments() {
864 void AddArguments(const ::std::vector<Str>& arguments)
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 844 // Utility class for accumulating command-line arguments.
845 class Arguments {
847 Arguments() {
851 ~Arguments() {
862 void AddArguments(const ::std::vector<Str>& arguments)
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 796 // Utility class for accumulating command-line arguments.
797 class Arguments {
799 Arguments() {
803 ~Arguments() {
814 void AddArguments(const ::std::vector<Str>& arguments) {
815 for (typename ::std::vector<Str>::const_iterator i = arguments.begin();
816 i != arguments.end();
828 // A struct that encompasses the arguments to the child process of a
831 char* const* argv; // Command-line arguments for the child's call to exec
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc     [all...]
  /external/iproute2/doc/
ip-cref.tex 45 ip [ OPTIONS ] OBJECT [ COMMAND [ ARGUMENTS ]]
69 the protocol family is guessed from other arguments. If the rest of the command
138 \verb|ARGUMENTS| is a list of arguments to the command.
139 The arguments depend on the command and object. There are two types of arguments:
169 The arguments did not pass verification for self-consistency.
172 \verb|ip| failed to compile a kernel request from the arguments
237 \paragraph{Arguments:}
335 \paragraph{Arguments:
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
RuntimeInit.java 311 final Arguments args;
313 args = new Arguments(argv);
320 // Remaining arguments are passed to the start class's static main
383 static class Arguments {
387 /** all following arguments */
395 Arguments(String args[]) throws IllegalArgumentException {
400 * Parses the commandline arguments intended for the Runtime.
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DictionaryMaker.java 52 static class Arguments {
144 public Arguments(String[] argsArray) throws IOException {
235 final Arguments parsedArgs = new Arguments(args);
243 * @param args the parsed command line arguments.
246 private static FusionDictionary readInputFromParsedArgs(final Arguments args)
328 * This will write the passed dictionary to the file(s) passed in the command line arguments.
329 * @param args the parsed arguments.
334 private static void writeOutputToParsedArgs(final Arguments args, final FusionDictionary dict)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 20 getargspec(), getargvalues(), getcallargs() - get info about function arguments
149 func_defaults tuple of any default values for arguments
213 co_argcount number of arguments (not including * or ** args)
224 co_varnames tuple of names of arguments and local variables"""
741 Arguments = namedtuple('Arguments', 'args varargs keywords')
744 """Get information about the arguments accepted by a code object.
748 'varargs' and 'varkw' are the names of the * and ** arguments or None."""
758 # The following acrobatics are for anonymous (tuple) arguments.
799 return Arguments(args, varargs, varkw
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 20 getargspec(), getargvalues(), getcallargs() - get info about function arguments
149 func_defaults tuple of any default values for arguments
213 co_argcount number of arguments (not including * or ** args)
224 co_varnames tuple of names of arguments and local variables"""
741 Arguments = namedtuple('Arguments', 'args varargs keywords')
744 """Get information about the arguments accepted by a code object.
748 'varargs' and 'varkw' are the names of the * and ** arguments or None."""
758 # The following acrobatics are for anonymous (tuple) arguments.
799 return Arguments(args, varargs, varkw
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 265 ArgumentList Arguments;
270 Arguments.push_back(std::make_pair(
275 Arguments.push_back(std::make_pair(
286 Arguments.push_back(std::make_pair(rtd.type->c_name, (*i)->getName()));
289 genArguments(Arguments, FunctionStart.length());
386 ArgumentList Arguments;
394 Arguments.push_back(std::make_pair(
399 Arguments.push_back(std::make_pair(
410 Arguments.push_back(std::make_pair(rtd.type->c_name, (*i)->getName()));
413 genArguments(Arguments, FunctionStart.length())
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]
  /external/llvm/lib/IR/
LegacyPassManager.cpp 46 Disabled, Arguments, Structure, Executions, Details
55 clEnumVal(Arguments , "print pass arguments to pass to 'opt'"),
763 if (PassDebugging < Arguments)
766 dbgs() << "Pass Arguments: ";
    [all...]

Completed in 1039 milliseconds

1 2