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

  /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);
  /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 14 // Arguments provides access to runtime call parameters.
16 // It uses the fact that the instance fields of Arguments
22 // Object* Runtime_function(Arguments args) {
29 class Arguments BASE_EMBEDDED {
31 Arguments(int length, Object** arguments)
32 : length_(length), arguments_(arguments) { }
56 // Get the total number of arguments including the receiver.
59 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED
67 // For each type of callback, we have a list of arguments
    [all...]
preparser.h 242 // see the => we have to go back and reinterpret the arguments as being formal
244 // what it was before the arguments were first seen.
464 // "arguments" as identifier even in strict mode (this is needed in cases like
608 static PreParserIdentifier Arguments() {
851 // except for eval, arguments, yield, and reserved keywords.
    [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...]
Type.h     [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/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...]
  /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...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 167 /** {@code non-null;} parsed command-line arguments */
168 private static Arguments args;
209 * @param argArray the command line arguments
212 Arguments arguments = new Arguments(); local
213 arguments.parse(argArray);
215 int result = run(arguments);
223 * @param arguments the data + parameters for the conversion
226 public static int run(Arguments arguments) throws IOException
1300 private final String[] arguments; field in class:Main.Arguments.ArgumentsParser
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 305 /// Arguments - Parameter bindings for this function call, indexed by
307 APValue *Arguments;
318 APValue *Arguments);
822 APValue *Arguments)
824 Index(Info.NextCallIndex++), This(This), Arguments(Arguments) {
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp 87 // Default arguments are evaluated each time the function is
88 // called. The order of evaluation of function arguments is
171 // FIXME: If the call to this decl is using any of its default arguments, we
306 // Default arguments are only permitted in C++
357 /// arguments in the declarator, which is not a function declaration
359 /// arguments. This routine should be invoked for every declarator
374 // This is a function declaration. It can have default arguments, but
376 // arguments.
422 // For non-template functions, default arguments can be added in
425 // distinct sets of default arguments. That is, declarations i
    [all...]
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 505 milliseconds