Searched refs:arg (Results 76 - 100 of 160) sorted by relevance

1234567

/dalvik/vm/arch/arm/
H A DCallEABI.S71 (i.e. the 5th arg).
90 * r2 arg info
156 @ Do we have arg padding flags in "argInfo"? (just need to check hi bit)
169 * r2 arg info
182 mov r8, sp @ r8<- sp (arg copy dest)
228 * and tuck them into r2/r3. If the first arg is 32-bit and the second
229 * arg is 64-bit, then r3 "holds" a pad word and the load is unnecessary
232 * If there are 0 or 1 arg words in argv, we will be loading uninitialized
251 @ In theory, we need to use the "return type" arg to figure out what
317 @ because we don't push the first two arg word
[all...]
/dalvik/libcore/luni/src/main/native/
H A Dcbigint.h34 jdouble toDoubleHighPrecision (U_64 * arg, IDATA length);
39 IDATA highestSetBitHighPrecision (U_64 * arg, IDATA length);
53 IDATA lowestSetBitHighPrecision (U_64 * arg, IDATA length);
/dalvik/vm/arch/x86-atom/
H A DCall386ABI.S44 * 12(%esp) arg info
107 subl %ecx, %esp # %esp<- expanded for arg region
133 movl %ecx, -8(%esp) # push JNIEnv as arg #1
134 movl %eax, -4(%esp) # push clazz or this as arg #2
/dalvik/vm/
H A DInlineNative.c498 u4 arg[2]; member in union:__anon36
502 convert.arg[0] = arg0;
503 convert.arg[1] = arg1;
516 u4 arg; member in union:__anon37
521 convert.arg = arg0 & 0x7fffffff;
533 u4 arg[2]; member in union:__anon38
539 convert.arg[0] = arg0;
540 convert.arg[1] = arg1;
577 u4 arg[2]; member in union:__anon39
581 convert.arg[
594 u4 arg[2]; member in union:__anon40
611 u4 arg[2]; member in union:__anon41
[all...]
H A DIntern.c135 static int markStringObject(void* strObj, void* arg) argument
137 UNUSED_PARAMETER(arg);
H A DSignalCatcher.c35 static void* signalCatcherThreadStart(void* arg);
254 static void* signalCatcherThreadStart(void* arg) argument
260 UNUSED_PARAMETER(arg);
H A DHash.h44 typedef int (*HashForeachFunc)(void* data, void* arg);
159 int dvmHashForeach(HashTable* pHashTable, HashForeachFunc func, void* arg);
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java1047 * @param arg String data to append
1051 public void appendData(String arg) throws DOMException argument
1060 * NEEDSDOC @param arg
1064 public void insertData(int offset, String arg) throws DOMException argument
1087 * @param arg substring to replace with
1091 public void replaceData(int offset, int count, String arg) argument
1290 * @param arg The node to compare equality with.
1298 public boolean isEqualNode(Node arg) { argument
1299 if (arg == this) {
1302 if (arg
[all...]
/dalvik/vm/mterp/armv5te/
H A DOP_INVOKE_INTERFACE.S18 GET_VREG(r0, r2) @ r0<- first arg ("this")
H A DbinopWide.S28 orrs ip, r2, r3 @ second arg (r2-r3) is zero?
H A DbinopWide2addr.S25 orrs ip, r2, r3 @ second arg (r2-r3) is zero?
H A DOP_EXECUTE_INLINE_RANGE.S18 sub sp, sp, #8 @ make room for arg, +64 bit align
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoEncoder.java395 for (LocalList.Entry arg : methodArgs) {
396 if (curParam == arg.getRegister()) {
397 lastEntryForReg[curParam] = arg;
423 for (LocalList.Entry arg : methodArgs) {
424 if (curParam == arg.getRegister()) {
425 found = arg;
427 if (arg.getSignature() != null) {
434 emitStringIndex(arg.getName());
436 lastEntryForReg[curParam] = arg;
468 for (LocalList.Entry arg
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource_Filter.java515 Object arg=fCoroutineManager.co_entry_pause(fSourceCoroutineID);
516 if(arg==Boolean.FALSE)
558 Object arg=Boolean.FALSE;
562 arg = fCoroutineManager.co_resume(Boolean.TRUE, fSourceCoroutineID,
568 if(arg==Boolean.FALSE)
627 Object arg=Boolean.FALSE;
639 arg=ex;
661 arg=ex;
672 fCoroutineManager.co_exit_to(arg, fSourceCoroutineID,
748 for(int arg
[all...]
H A DDTMNodeProxy.java1024 * @param arg
1029 public final void appendData(String arg) throws DOMException argument
1037 * @param arg
1042 public final void insertData(int offset, String arg) throws DOMException argument
1064 * @param arg
1069 public final void replaceData(int offset, int count, String arg) argument
1540 * @param arg The node to compare equality with.
1548 public boolean isEqualNode(Node arg) { argument
1549 if (arg == this) {
1552 if (arg
[all...]
/dalvik/libcore/text/src/main/java/java/text/
H A DMessageFormat.java401 int arg = 0;
417 arg = arg * 10 + (ch - '0');
419 if (arg < 0 || offset >= length) {
433 args[argCount++] = arg;
434 if (arg > maxArg) {
435 maxArg = arg;
577 Object arg;
579 arg = objects[argumentNumbers[i]];
589 if (format == null || arg
683 handleformat(Format format, Object arg, int begin, Vector<FieldContainer> fields) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DValueAwareMachine.java84 setResult(arg(0));
135 addResult(arg(which));
158 Type thisType = arg(0).getType();
/dalvik/vm/mterp/armv6t2/
H A DbinopWide2addr.S24 orrs ip, r2, r3 @ second arg (r2-r3) is zero?
/dalvik/vm/test/
H A DTestHash.c31 static int printFunc(void* data, void* arg) argument
36 int* count = (int*) arg;
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DObserverTest.java35 public void update(Observable observed, Object arg) { argument
/dalvik/libcore/xml/src/main/java/org/apache/xpath/functions/
H A DFunction.java49 * @param arg non-null expression that represents the argument.
55 public void setArg(Expression arg, int argNum) argument
/dalvik/libdex/
H A DInstrUtils.h83 u4 arg[5]; /* vC/D/E/F/G in invoke or filled-new-array */ member in struct:DecodedInstruction
/dalvik/vm/alloc/
H A DHeapBitmap.h124 const void *finger, void *arg),
135 const void *finger, void *arg),
144 const void *finger, void *arg),
155 const void *finger, void *arg),
/dalvik/vm/analysis/
H A DReduceConstants.c251 DexMethod* pDexMethod, void* arg);
299 * Call "func(method, arg)" on all methods in the specified class.
308 AllMethodsFunc func, void* arg)
342 (func)(pDexFile, classDescriptor, &method, arg);
352 (func)(pDexFile, classDescriptor, &method, arg);
358 * Call "func(method, arg)" on all methods in all classes in DexFile.
360 static void forAllMethods(DexFile* pDexFile, AllMethodsFunc func, void* arg) argument
380 classDescriptor, func, arg);
620 DexMethod* pDexMethod, void* arg)
622 ScanResults* pResults = (ScanResults*) arg;
306 forAllMethodsInClass(DexFile* pDexFile, const u1** ppEncodedData, const DexClassDataHeader* pHeader, const char* classDescriptor, AllMethodsFunc func, void* arg) argument
619 markUsedConstants(DexFile* pDexFile, const char* classDescriptor, DexMethod* pDexMethod, void* arg) argument
647 updateUsedConstants(DexFile* pDexFile, const char* classDescriptor, DexMethod* pDexMethod, void* arg) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
H A DElementImpl.java413 public Node setNamedItem(Node arg) throws DOMException { argument
414 if (!(arg instanceof Attr)) {
418 return ElementImpl.this.setAttributeNode((Attr)arg);
421 public Node setNamedItemNS(Node arg) throws DOMException { argument
422 if (!(arg instanceof Attr)) {
426 return ElementImpl.this.setAttributeNodeNS((Attr)arg);

Completed in 582 milliseconds

1234567