HomeSort by relevance Sort by last modified time
    Searched refs:args (Results 151 - 175 of 5127) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/openssl/apps/
pkcs8.c 73 char **args, *infile = NULL, *outfile = NULL; local
103 args = argv + 1;
104 while (!badarg && *args && *args[0] == '-')
106 if (!strcmp(*args,"-v2"))
108 if (args[1])
110 args++;
111 cipher=EVP_get_cipherbyname(*args);
115 "Unknown cipher %s\n", *args);
122 else if (!strcmp(*args,"-v1")
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
advanced_options_handler.h 50 void HandleSelectDownloadLocation(const ListValue* args);
54 void HandlePromptForDownload(const ListValue* args);
58 void HandleAutoOpenButton(const ListValue* args);
62 void HandleMetricsReportingCheckbox(const ListValue* args);
65 // user changes the default font size. |args| is an array that contains
67 void HandleDefaultFontSize(const ListValue* args);
72 void HandleCheckRevocationCheckbox(const ListValue* args);
76 void HandleUseSSL3Checkbox(const ListValue* args);
80 void HandleUseTLS1Checkbox(const ListValue* args);
85 void ShowNetworkProxySettings(const ListValue* args);
    [all...]
core_options_handler.h 71 void HandleInitialize(const ListValue* args);
74 // preference names passed as the |args| parameter (ListValue). It passes
77 void HandleFetchPrefs(const ListValue* args);
81 void HandleObservePrefs(const ListValue* args);
84 // preference value. |args| is an array of parameters as follows:
88 void HandleSetBooleanPref(const ListValue* args);
89 void HandleSetIntegerPref(const ListValue* args);
90 void HandleSetDoublePref(const ListValue* args);
91 void HandleSetStringPref(const ListValue* args);
92 void HandleSetListPref(const ListValue* args);
    [all...]
personal_options_handler.h 48 void ShowSyncActionDialog(const ListValue* args);
49 void ShowSyncLoginDialog(const ListValue* args);
50 void ShowCustomizeSyncDialog(const ListValue* args);
51 void ThemesReset(const ListValue* args);
53 void ThemesSetGTK(const ListValue* args);
56 // Called when the user updates the set of enabled data types to sync. |args|
58 void OnPreferredDataTypesUpdated(const ListValue* args);
61 void LoadAccountPicture(const ListValue* args);
  /external/openfst/src/include/fst/script/
compile.h 58 void CompileFst(FstCompileArgs *args) {
63 FstCompiler<Arc> fstcompiler(args->istrm, args->source, args->isyms,
64 args->osyms, args->ssyms,
65 args->accep, args->ikeep,
66 args->okeep, args->nkeep
    [all...]
epsnormalize.h 27 typedef args::Package<const FstClass&, MutableFstClass*,
31 void EpsNormalize(EpsNormalizeArgs *args) {
32 const Fst<Arc> &ifst = *(args->arg1.GetFst<Arc>());
33 MutableFst<Arc> *ofst = args->arg2->GetMutableFst<Arc>();
35 EpsNormalize(ifst, ofst, args->arg3);
encode.h 29 typedef args::Package<MutableFstClass*, uint32, bool,
33 void Encode(EncodeArgs *args) {
34 MutableFst<Arc> *ofst = args->arg1->GetMutableFst<Arc>();
35 bool reuse_encoder = args->arg3;
36 const string &coder_fname = args->arg4;
37 uint32 flags = args->arg2;
44 if (!args->arg3)
reweight.h 31 typedef args::Package<MutableFstClass *, const vector<WeightClass> &,
35 void Reweight(ReweightArgs *args) {
36 MutableFst<Arc> *fst = args->arg1->GetMutableFst<Arc>();
38 vector<Weight> potentials(args->arg2.size());
40 for (unsigned i = 0; i < args->arg2.size(); ++i) {
41 potentials[i] = *(args->arg2[i].GetWeight<Weight>());
44 Reweight(fst, potentials, args->arg3);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLOptionElementConstructor.cpp 49 static v8::Handle<v8::Value> v8HTMLOptionElementConstructorCallback(const v8::Arguments& args)
53 if (!args.IsConstructCall())
68 if (args.Length() > 0 && !args[0]->IsUndefined())
69 data = toWebCoreString(args[0]);
70 if (args.Length() > 1 && !args[1]->IsUndefined())
71 value = toWebCoreString(args[1]);
72 if (args.Length() > 2)
73 defaultSelected = args[2]->BooleanValue()
    [all...]
V8DedicatedWorkerContextCustom.cpp 45 v8::Handle<v8::Value> V8DedicatedWorkerContext::postMessageCallback(const v8::Arguments& args)
48 DedicatedWorkerContext* workerContext = V8DedicatedWorkerContext::toNative(args.Holder());
50 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(args[0], didThrow);
54 if (args.Length() > 1) {
55 if (!getMessagePortArray(args[1], portArray))
V8XMLHttpRequestConstructor.cpp 43 v8::Handle<v8::Value> V8XMLHttpRequest::constructorCallback(const v8::Arguments& args)
47 if (!args.IsConstructCall())
56 V8DOMWrapper::setDOMWrapper(args.Holder(), &info, xmlHttpRequest.get());
60 V8DOMWrapper::setJSWrapperForActiveDOMObject(xmlHttpRequest.get(), v8::Persistent<v8::Object>::New(args.Holder()));
61 return args.Holder();
V8EventSourceConstructor.cpp 46 v8::Handle<v8::Value> V8EventSource::constructorCallback(const v8::Arguments& args)
50 if (!args.IsConstructCall())
58 if (args.Length() != 1)
62 String url = toWebCoreString(args[0]);
69 V8DOMWrapper::setDOMWrapper(args.Holder(), &info, eventSource.get());
73 V8DOMWrapper::setJSWrapperForActiveDOMObject(eventSource.get(), v8::Persistent<v8::Object>::New(args.Holder()));
74 return args.Holder();
  /external/dropbear/
scpmisc.c 140 addargs(arglist *args, char *fmt, ...)
153 nalloc = args->nalloc;
154 if (args->list == NULL) {
156 args->num = 0;
157 } else if (args->num+2 >= nalloc)
160 args->list = xrealloc(args->list, nalloc * sizeof(char *));
161 args->nalloc = nalloc;
162 args->list[args->num++] = cp
221 va_list args; local
    [all...]
  /external/dropbear/libtommath/
bn_mp_init_multi.c 24 va_list args; local
26 va_start(args, mp); /* init args to next argument from caller */
35 va_end(args);
49 cur_arg = va_arg(args, mp_int*);
51 va_end(args);