/external/qemu/tcg/x86_64/ |
tcg-target.c | 557 static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, 566 data_reg = *args++; 567 addr_reg = *args++; 568 mem_index = *args; 751 static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args, 760 data_reg = *args++; 761 addr_reg = *args++; 762 mem_index = *args; 906 static inline void tcg_out_op(TCGContext *s, int opc, const TCGArg *args, 913 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_RAX, args[0]) 1176 tcg_out_opc(s, (0xc8 + (args[0] & 7)) | P_EXT | P_REXW, 0, args[0], 0); local [all...] |
/external/openssl/apps/ |
pkey.c | 72 char **args, *infile = NULL, *outfile = NULL; local 97 args = argv + 1; 98 while (!badarg && *args && *args[0] == '-') 100 if (!strcmp(*args,"-inform")) 102 if (args[1]) 104 args++; 105 informat=str2fmt(*args); 109 else if (!strcmp(*args,"-outform")) 111 if (args[1] [all...] |
smime.c | 92 char **args; local 122 args = argv + 1; 136 while (!badarg && *args && *args[0] == '-') 138 if (!strcmp (*args, "-encrypt")) 140 else if (!strcmp (*args, "-decrypt")) 142 else if (!strcmp (*args, "-sign")) 144 else if (!strcmp (*args, "-resign")) 146 else if (!strcmp (*args, "-verify")) 148 else if (!strcmp (*args, "-pk7out") [all...] |
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/javasqlite/src/main/java/SQLite/ |
Function.java | 13 * public void function(SQLite.FunctionContext fc, String args[]) { 15 * Double d = new Double(args[0]); 18 * fc.set_error("sin(" + args[0] + "):" + e); 37 * @param args String array of arguments 40 public void function(FunctionContext fc, String args[]); 46 * @param args String array of arguments 49 public void step(FunctionContext fc, String args[]);
|
/frameworks/compile/libbcc/tests/ |
bccarm | 10 def compile(args): 11 proc = subprocess.Popen(["bcc"] + args, stderr=subprocess.PIPE, stdout=subprocess.PIPE) 15 def runCmd(args): 16 proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 29 def adb(args): 30 return runCmd(["adb"] + args) 46 def compileArm(args):
|
/external/libffi/testsuite/libffi.call/ |
closure_stdcall.c | 11 closure_test_stdcall(ffi_cif* cif __UNUSED__, void* resp, void** args, 15 (int)*(int *)args[0] + (int)(*(int *)args[1]) 16 + (int)(*(int *)args[2]) + (int)(*(int *)args[3]) 20 (int)*(int *)args[0], (int)(*(int *)args[1]), 21 (int)(*(int *)args[2]), (int)(*(int *)args[3]),
|
return_ldl.c | 17 ffi_type *args[MAX_ARGS]; local 21 args[0] = &ffi_type_longdouble; 26 &ffi_type_longdouble, args) == FFI_OK);
|
/packages/apps/Calendar/src/com/android/calendar/ |
ContactsAsyncHelper.java | 87 WorkerArgs args = (WorkerArgs) msg.obj; local 95 args.context.getContentResolver(), args.uri); 101 args.result = Drawable.createFromStream(inputStream, args.uri.toString()); 104 " token: " + msg.what + " image URI: " + args.uri); 106 args.result = null; 108 " token: " + msg.what + " image URI: " + args.uri + 154 WorkerArgs args = new WorkerArgs(); local 155 args.context = context 203 WorkerArgs args = new WorkerArgs(); local 229 WorkerArgs args = (WorkerArgs) msg.obj; local [all...] |
/hardware/ril/mock-ril/src/cpp/ |
node_buffer.cpp | 175 Handle<Value> Buffer::New(const Arguments &args) { 176 DBG("Buffer::New(args) E"); 180 if ((args.Length() == 0) || args[0]->IsInt32()) { 182 if (args[0]->IsInt32()) { 183 length = args[0]->Uint32Value(); 186 } else if (args[0]->IsArray()) { 187 Local<Array> a = Local<Array>::Cast(args[0]); 193 } else if (args[0]->IsString()) { 194 Local<String> s = args[0]->ToString() [all...] |
/cts/tools/signature-tools/src/signature/converter/ |
Main.java | 33 public static void main(String[] args) throws IOException { 34 String type = args[0]; 37 for (/* at */; at < args.length; at++) { 38 if ("--out".equals(args[at])) { 41 sources.add(args[at]); 44 if (!"--out".equals(args[at])) { 47 String targetFile = args[++at]; 49 if (!"--name".equals(args[++at])) { 52 String name = args[++at]; 54 if (!"--packages".equals(args[++at])) [all...] |
/dalvik/tests/002-sleep/src/ |
Main.java | 2 static public void main(String[] args) throws Exception { 5 if (args.length != 0) { 6 millis = Integer.parseInt(args[0]);
|
/dalvik/vm/native/ |
java_lang_VMThread.cpp | 31 static void Dalvik_java_lang_VMThread_create(const u4* args, JValue* pResult) 33 Object* threadObj = (Object*) args[0]; 34 s8 stackSize = GET_ARG_LONG(args, 1); 44 static void Dalvik_java_lang_VMThread_currentThread(const u4* args, 47 UNUSED_PARAMETER(args); 58 static void Dalvik_java_lang_VMThread_getStatus(const u4* args, JValue* pResult) 60 Object* thisPtr = (Object*) args[0]; 81 static void Dalvik_java_lang_VMThread_holdsLock(const u4* args, JValue* pResult) 83 Object* thisPtr = (Object*) args[0]; 84 Object* object = (Object*) args[1] 217 dvmThreadSleep(GET_ARG_LONG(args,0), args[2]); local [all...] |
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cpp | 30 const u4* args, JValue* pResult) 32 bool enable = (args[0] != 0); 45 const u4* args, JValue* pResult) 47 UNUSED_PARAMETER(args); 60 const u4* args, JValue* pResult) 62 int when = args[0]; 76 const u4* args, JValue* pResult) 78 int when = args[0]; // 0=never (off), 1=during GC 79 int what = args[1]; // 0=merged objects, 1=distinct objects 80 bool native = (args[2] != 0); // false=virtual heap, true=native hea [all...] |
/external/chromium/chrome/browser/ui/webui/options/ |
autofill_options_handler.h | 40 // |args| - A string, the GUID of the address to remove. 41 void RemoveAddress(const ListValue* args); 44 // |args| - A string, the GUID of the credit card to remove. 45 void RemoveCreditCard(const ListValue* args); 49 // |args| - A string, the GUID of the address to load. 50 void LoadAddressEditor(const ListValue* args); 54 // |args| - A string, the GUID of the credit card to load. 55 void LoadCreditCardEditor(const ListValue* args); 60 // |args| - an array containing the GUID of the address followed by the 62 void SetAddress(const ListValue* args); [all...] |
/external/javassist/sample/rmi/ |
Counter.java | 20 public static void main(String[] args)
23 if (args.length == 1) {
24 AppletServer web = new AppletServer(args[0]);
|
/cts/tests/tests/hardware/src/android/hardware/cts/ |
Camera_ParametersTest.java | 34 args = {java.lang.String.class} 40 args = {java.lang.String.class, int.class} 46 args = {java.lang.String.class} 52 args = {java.lang.String.class, java.lang.String.class} 58 args = {} 64 args = {int.class} 70 args = {} 76 args = {int.class, int.class} 82 args = {} 88 args = {int.class [all...] |
/cts/tests/tests/app/src/android/app/cts/ |
AlertDialogTest.java | 70 args = {Context.class} 76 args = {int.class} 82 args = {Bundle.class} 88 args = {int.class, CharSequence.class, OnClickListener.class} 94 args = {Drawable.class} 100 args = {int.class} 106 args = {CharSequence.class} 112 args = {CharSequence.class} 157 args = {Context.class} 163 args = {int.class [all...] |
/cts/tools/signature-tools/src/signature/compare/ |
Main.java | 52 public static void main(String[] args) throws IOException { 55 if (!"--from".equals(args[at])) { 58 String fromType = args[++at]; 63 for (/* at */; at < args.length; at++) { 64 if ("--name".equals(args[at])) { 68 if ("--to".equals(args[at])) { 71 fromFiles.add(args[at]); 77 if (!"--name".equals(args[at])) { 81 for (/* at */; at < args.length; at++) { 82 if ("--to".equals(args[at])) [all...] |
/sdk/monkeyrunner/src/com/android/monkeyrunner/ |
MonkeyView.java | 54 public PyBoolean getChecked(PyObject[] args, String[] kws) { 55 ArgParser ap = JythonUtils.createArgParser(args, kws); 62 public PyString getViewClass(PyObject[] args, String[] kws) { 63 ArgParser ap = JythonUtils.createArgParser(args, kws); 70 public PyString getText(PyObject[] args, String[] kws) { 71 ArgParser ap = JythonUtils.createArgParser(args, kws); 78 public MonkeyRect getLocation(PyObject[] args, String[] kws) { 79 ArgParser ap = JythonUtils.createArgParser(args, kws); 86 public PyBoolean getEnabled(PyObject[] args, String[] kws) { 87 ArgParser ap = JythonUtils.createArgParser(args, kws) [all...] |
/system/core/init/ |
init_parser.c | 43 static void *parse_service(struct parse_state *state, int nargs, char **args); 44 static void parse_line_service(struct parse_state *state, int nargs, char **args); 46 static void *parse_action(struct parse_state *state, int nargs, char **args); 47 static void parse_line_action(struct parse_state *state, int nargs, char **args); 60 int (*func)(int nargs, char **args); 158 void parse_line_no_op(struct parse_state *state, int nargs, char **args) 163 int nargs, char **args) 165 printf("[ %s %s ]\n", args[0], 166 nargs > 1 ? args[1] : ""); 169 state->context = parse_service(state, nargs, args); 197 char *args[INIT_PARSER_MAXARGS]; local [all...] |
/external/chromium/chrome/browser/sync/ |
sync_setup_flow.cc | 60 DictionaryValue args; local 62 SyncSetupFlow::GetArgsForGaiaLogin(service, &args); 64 SyncSetupFlow::GetArgsForConfigure(service, &args); 66 SyncSetupFlow::GetArgsForEnterPassphrase(false, false, &args); 68 args.SetString("iframeToShow", "firstpassphrase"); 71 base::JSONWriter::Write(&args, false, &json_args); 83 DictionaryValue* args) { 84 args->SetString("iframeToShow", "login"); 87 args->SetString("user", service->last_attempted_user_email()); 88 args->SetInteger("error", error.state()) 338 DictionaryValue args; local 351 DictionaryValue args; local 358 DictionaryValue args; local 364 DictionaryValue args; local 373 DictionaryValue args; local 379 DictionaryValue args; local 392 DictionaryValue args; local [all...] |
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8ArrayBufferViewCustom.h | 44 v8::Handle<v8::Value> constructWebGLArrayWithArrayBufferArgument(const v8::Arguments& args, WrapperTypeInfo* type, v8::ExternalArrayType arrayType, bool hasIndexer) 46 ArrayBuffer* buf = V8ArrayBuffer::toNative(args[0]->ToObject()); 51 int argLen = args.Length(); 53 offset = toUInt32(args[1], ok); 61 length = toUInt32(args[2], ok); 72 V8DOMWrapper::setDOMWrapper(args.Holder(), type, array.get()); 74 args.Holder()->SetIndexedPropertiesToExternalArrayData(array.get()->baseAddress(), arrayType, array.get()->length()); 75 return toV8(array.release(), args.Holder()); 80 v8::Handle<v8::Value> constructWebGLArray(const v8::Arguments& args, WrapperTypeInfo* type, v8::ExternalArrayType arrayType) 82 if (!args.IsConstructCall() [all...] |
/dalvik/tests/026-access/src/ |
Main.java | 6 public static void main(String[] args) {
|
/dalvik/tests/034-call-null/src/ |
Main.java | 10 public static void main(String[] args) {
|