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

1 2 3 4 5 6 7 8 91011>>

  /system/extras/multinetwork/
common.h 33 struct Arguments {
34 Arguments() : nethandle(NETWORK_UNSPECIFIED),
38 ~Arguments();
common.cpp 69 Arguments::~Arguments() {}
71 bool Arguments::parseArguments(int argc, const char* argv[]) {
  /external/v8/src/
arguments.h 15 // Arguments provides access to runtime call parameters.
17 // It uses the fact that the instance fields of Arguments
23 // Object* Runtime_function(Arguments args) {
30 class Arguments BASE_EMBEDDED {
32 Arguments(int length, Object** arguments)
33 : length_(length), arguments_(arguments) {
60 // Get the total number of arguments including the receiver.
63 Object** arguments() { return arguments_; } function in class:v8::internal::BASE_EMBEDDED
85 static INLINE(Type __RT_impl_##Name(Arguments args, Isolate* isolate));
    [all...]
  /external/llvm/tools/llvm-diff/
DiffLog.h 38 SmallVector<Value*, 4> Arguments;
44 Arguments(std::move(L.Arguments)) {
49 Arguments.push_back(V);
DiffLog.cpp 29 unsigned LogBuilder::getNumArguments() const { return Arguments.size(); }
30 Value *LogBuilder::getArgument(unsigned I) const { return Arguments[I]; }
  /external/v8/test/webkit/
dfg-inline-arguments-use-from-all-the-places.js 25 "This tests that inlining preserves basic function.arguments functionality when said functionality is used from inside and outside getters and from inlined code, all at once."
29 return [foo.arguments, bar.arguments].concat(o.f);
33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments];
37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56))
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Makedict.java 32 return DictionaryMaker.Arguments.getHelp();
  /external/eigen/lapack/
clacgv.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
82 * .. Scalar Arguments ..
85 * .. Array Arguments ..
zlacgv.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
82 * .. Scalar Arguments ..
85 * .. Array Arguments ..
ilaclc.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
86 * .. Scalar Arguments ..
89 * .. Array Arguments ..
ilaclr.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
86 * .. Scalar Arguments ..
89 * .. Array Arguments ..
iladlc.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
86 * .. Scalar Arguments ..
89 * .. Array Arguments ..
iladlr.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
86 * .. Scalar Arguments ..
89 * .. Array Arguments ..
ilaslc.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
86 * .. Scalar Arguments ..
89 * .. Array Arguments ..
ilaslr.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
86 * .. Scalar Arguments ..
89 * .. Array Arguments ..
ilazlc.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
86 * .. Scalar Arguments ..
89 * .. Array Arguments ..
ilazlr.f 23 * .. Scalar Arguments ..
26 * .. Array Arguments ..
39 * Arguments:
86 * .. Scalar Arguments ..
89 * .. Array Arguments ..
cladiv.f 23 * .. Scalar Arguments ..
38 * Arguments:
72 * .. Scalar 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();
  /cts/tools/vm-tests-tf/src/util/build/
DxBuildStep.java 36 Main.Arguments args = new Main.Arguments();
  /external/clang/lib/Driver/
Job.cpp 30 const char *Executable, const ArgStringList &Arguments,
33 Arguments(Arguments), ResponseFile(nullptr) {
41 // arguments. Therefore, we need to skip the flag and the next argument.
108 // In regular response files, we send all arguments to the response file.
109 // Wrapping all arguments in double quotes ensures that both Unix tools and
111 for (const char *Arg : Arguments) {
127 // When not a file list, all arguments are sent to the response file.
143 for (const char *Arg : Arguments) {
160 llvm::ArrayRef<const char *> Args = Arguments;
    [all...]
  /external/opencv3/samples/winrt/OcvImageProcessing/OcvImageProcessing/
App.xaml.cpp 67 if (!rootFrame->Navigate(TypeName(MainPage::typeid), args->Arguments))
84 if (!rootFrame->Navigate(TypeName(MainPage::typeid), args->Arguments))
  /external/v8/test/mjsunit/tools/
dumpcpp.js 17 '00000100 00000001 t v8::internal::Runtime_StringReplaceRegExpWithString(v8::internal::Arguments)',
19 '00000120 00000001 t v8::internal::Runtime_DebugGetPropertyDetails(v8::internal::Arguments)',
35 name:'v8::internal::Runtime_DebugGetPropertyDetails(v8::internal::Arguments)',
47 name:'v8::internal::Runtime_StringReplaceRegExpWithString(v8::internal::Arguments)',
  /external/clang/include/clang/Driver/
Job.h 53 /// The list of program arguments (not including the implicit first
55 llvm::opt::ArgStringList Arguments;
57 /// The list of program arguments which are inputs.
72 /// When a response file is needed, we try to put most arguments in an
73 /// exclusive file, while others remains as regular command line arguments.
74 /// This functions fills a vector with the regular command line arguments,
79 /// This function will also put in quotes arguments that have whitespaces and
86 const llvm::opt::ArgStringList &Arguments,
105 /// Set to pass arguments via a response file when launching the command
116 const llvm::opt::ArgStringList &getArguments() const { return Arguments; }
    [all...]
  /external/opencv3/samples/winrt/FaceDetection/FaceDetection/
App.xaml.cpp 81 rootFrame->Navigate(TypeName(MainPage::typeid), e->Arguments);
95 rootFrame->Navigate(TypeName(MainPage::typeid), e->Arguments);

Completed in 1515 milliseconds

1 2 3 4 5 6 7 8 91011>>