/external/llvm/test/Transforms/PruneEH/ |
simpletest.ll | 10 define i32 @caller() {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
CatLog.java | 24 public static void d(Object caller, String msg) { 29 String className = caller.getClass().getName(); 34 public static void d(String caller, String msg) { 39 Rlog.d("CAT", caller + ": " + msg);
|
/libcore/libart/src/main/java/dalvik/system/ |
VMStack.java | 27 * Returns the defining class loader of the caller's caller. 35 * Returns the class of the caller's caller. 44 * Returns the class of the caller's caller's caller.
|
/external/chromium_org/v8/test/webkit/ |
apply-varargs.js | 61 function caller(testArgCount) function 87 shouldBe("caller(0)", 'undefined'); 88 shouldBe("caller(1)", 'undefined'); 89 shouldBe("caller(2)", 'undefined'); 90 shouldBe("caller(3)", 'undefined'); 91 shouldBe("caller(4)", 'undefined'); 92 shouldBe("caller(5)", 'undefined'); 93 shouldBe("caller(6)", 'undefined'); 94 shouldBe("caller(7)", 'undefined'); 95 shouldBe("caller(8)", 'undefined') [all...] |
strict-throw-type-error.js | 38 var functionCaller1 = getter(strictArgumentsFunction1, "caller"); 40 var argumentsCaller1 = getter(strictArguments1, "caller"); 42 var boundCaller1 = getter(boundFunction1, "caller"); 52 var functionCaller2 = getter(strictArgumentsFunction2, "caller"); 54 var argumentsCaller2 = getter(strictArguments2, "caller"); 56 var boundCaller2 = getter(boundFunction2, "caller");
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
RenderingRequest.java | 51 int type, RenderingRequestCaller caller) { 52 RenderingRequest.post(context, source, preset, type, caller, null, null); 56 RenderingRequestCaller caller, Rect bounds, Rect destination) { 59 || preset == null || caller == null) { 61 + " or preset: " + preset + " or caller: " + caller); 91 request.setCaller(caller); 97 RenderingRequestCaller caller) { 98 if (preset == null || caller == null) { 100 + preset + " or caller: " + caller) [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-145201.js | 28 // Fix some corner cases in skipping native methods using caller. 66 var caller = catcher.caller; 67 if (/native/i.test(caller) || /ADD/.test(caller)) { 68 net[caller] = 0;
|
regress-1548.js | 28 // Test that the caller and arguments objects are not available on native 32 function foo() { return [].map.caller; } 35 // Try to delete the caller property (to make sure that we can't get to the 36 // caller accessor on the prototype. 37 delete Array.prototype.map.caller; 46 // caller accessor on the prototype.
|
/external/v8/test/mjsunit/regress/ |
regress-1548.js | 28 // Test that the caller and arguments objects are not available on native 32 function foo() { return [].map.caller; } 35 // Try to delete the caller property (to make sure that we can't get to the 36 // caller accessor on the prototype. 37 delete Array.prototype.map.caller; 46 // caller accessor on the prototype.
|
/external/emma/core/java12/com/vladium/util/ |
ClassLoaderResolver.java | 33 * typically involves choosing between the caller's current, thread context, 39 * @param caller [null input eliminates the caller's current classloader 42 * @return classloader to be used by the caller ['null' indicates the 45 public static synchronized ClassLoader getClassLoader (final Class caller) 47 final ClassLoadContext ctx = new ClassLoadContext (caller); 55 * typically involves choosing between the caller's current, thread context, 59 * This method uses its own caller to set the call context. To be able to 64 * @return classloader to be used by the caller ['null' indicates the 69 final Class caller = getCallerClass (1); // 'caller' can be set to nul local 148 final Class caller = ctx.getCallerClass (); local [all...] |
/art/compiler/dex/quick/x86/ |
x86_lir.h | 28 * caller save places a burden on up-calls to save/restore the callee save register, however, there 29 * are few registers that are callee save in the ABI. Changing something that is caller save and 31 * For these reasons we aim to match native conventions for caller and callee save. The first 4 37 * r0/eax: caller save | caller save | caller, Method*, scratch, return value 38 * r1/ecx: caller save | caller save, arg4 | caller, arg1, scratch 39 * r2/edx: caller save | caller save, arg3 | caller, arg2, scratch, high half of long retur [all...] |
/external/chromium/chrome/browser/automation/ |
ui_controls_internal.h | 17 // A |followup| Task can be specified to notify the caller when the mouse 18 // click event is sent. If can be NULL if the caller does not care about it.
|
/external/chromium/chrome/browser/extensions/ |
convert_user_script.h | 18 // unpacked in the system temp dir. Returns a valid extension that the caller 22 // NOTE: The caller takes ownership of the directory at extension->path() on the
|
/external/chromium/crypto/ |
nss_util_internal.h | 17 // public-key data only (e.g. server certs). Caller must release 24 // successfully. Caller must release returned reference with
|
/external/clang/test/CodeGenCXX/ |
empty-nontrivially-copyable.cpp | 4 // constructors passed by value should be passed indirectly, with the caller 20 void caller(Empty &e) { function
|
/external/llvm/test/CodeGen/ARM/ |
2012-10-18-PR14099-ByvalFrameAddress.ll | 23 ; CHECK-LABEL: caller: 24 define void @caller() {
|
/external/oprofile/libpp/ |
callgraph_container.h | 3 * Container associating symbols and caller/caller symbols 32 * During building a callgraph_container we store all caller/callee 44 * @param caller The calling symbol 48 * If the callee is NULL, only the caller is added to the main 52 void add(symbol_entry const & caller, symbol_entry const * callee, 134 * Record caller/callee for one cg file 136 * @param caller_bfd the caller bfd
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/ |
ParameterIconStyle.java | 30 public void getIcon(int index, BitmapCaller caller) { 31 caller.available(mBitmaps[index]);
|
/external/chromium_org/v8/test/webkit/fast/js/ |
Object-getOwnPropertyNames-expected.txt | 37 PASS getSortedOwnPropertyNames(new Function()) is ['arguments', 'caller', 'length', 'name', 'prototype'] 38 PASS getSortedOwnPropertyNames((function(){var x=new Function();x.__proto__=[1,2,3];return x;})()) is ['arguments', 'caller', 'length', 'name', 'prototype'] 56 FAIL getSortedOwnPropertyNames(parseInt) should be length,name. Was arguments,caller,length,name. 57 FAIL getSortedOwnPropertyNames(parseFloat) should be length,name. Was arguments,caller,length,name. 58 FAIL getSortedOwnPropertyNames(isNaN) should be length,name. Was arguments,caller,length,name. 59 FAIL getSortedOwnPropertyNames(isFinite) should be length,name. Was arguments,caller,length,name. 60 FAIL getSortedOwnPropertyNames(escape) should be length,name. Was arguments,caller,length,name. 61 FAIL getSortedOwnPropertyNames(unescape) should be length,name. Was arguments,caller,length,name. 62 FAIL getSortedOwnPropertyNames(decodeURI) should be length,name. Was arguments,caller,length,name. 63 FAIL getSortedOwnPropertyNames(decodeURIComponent) should be length,name. Was arguments,caller,length,name [all...] |
/external/chromium_org/content/renderer/ |
web_ui_extension.h | 18 // Returns the v8::Extension object handling WebUI bindings. Caller takes
|
/external/chromium_org/ui/views/widget/desktop_aura/ |
desktop_screen.h | 17 // a RootWindowHost. Caller owns the result.
|
/external/chromium_org/v8/test/mjsunit/tools/ |
tickprocessor-test.gc-state | 17 Note: percentage shows a share of a particular caller in the total
|
/external/clang/test/Analysis/ |
inline4.c | 9 // Do not remove block-level expression bindings of caller when analyzing
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Subroutine.java | 34 public Subroutine(int start, int caller) { 36 callers.add(new Integer(caller)); 39 public void addCaller(int caller) { 40 callers.add(new Integer(caller));
|
/external/llvm/test/CodeGen/X86/ |
fast-cc-merge-stack-adj.ll | 8 define x86_fastcallcc void @caller(i32, i64) {
|