HomeSort by relevance Sort by last modified time
    Searched full:caller (Results 26 - 50 of 5828) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/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 PASS getSortedOwnPropertyNames(parseInt) is ['arguments', 'caller', 'length', 'name']
57 PASS getSortedOwnPropertyNames(parseFloat) is ['arguments', 'caller', 'length', 'name']
58 PASS getSortedOwnPropertyNames(isNaN) is ['arguments', 'caller', 'length', 'name']
59 PASS getSortedOwnPropertyNames(isFinite) is ['arguments', 'caller', 'length', 'name']
60 PASS getSortedOwnPropertyNames(escape) is ['arguments', 'caller', 'length', 'name']
61 PASS getSortedOwnPropertyNames(unescape) is ['arguments', 'caller', 'length', 'name']
62 PASS getSortedOwnPropertyNames(decodeURI) is ['arguments', 'caller', 'length', 'name']
63 PASS getSortedOwnPropertyNames(decodeURIComponent) is ['arguments', 'caller', 'length', 'name'
    [all...]
Object-getOwnPropertyNames.js 38 "new Function()": "['arguments', 'caller', 'length', 'name', 'prototype']",
39 "(function(){var x=new Function();x.__proto__=[1,2,3];return x;})()": "['arguments', 'caller', 'length', 'name', 'prototype']",
63 "parseInt": "['arguments', 'caller', 'length', 'name']",
64 "parseFloat": "['arguments', 'caller', 'length', 'name']",
65 "isNaN": "['arguments', 'caller', 'length', 'name']",
66 "isFinite": "['arguments', 'caller', 'length', 'name']",
67 "escape": "['arguments', 'caller', 'length', 'name']",
68 "unescape": "['arguments', 'caller', 'length', 'name']",
69 "decodeURI": "['arguments', 'caller', 'length', 'name']",
70 "decodeURIComponent": "['arguments', 'caller', 'length', 'name']"
    [all...]
  /art/runtime/
nth_caller_visitor.h 34 caller(nullptr) {}
46 DCHECK(caller == nullptr);
48 caller = m;
59 ArtMethod* caller; member in struct:art::NthCallerVisitor
  /external/clang/test/Analysis/
PR7218.c 5 return buf[1]; // expected-warning {{Undefined or garbage value returned to caller}}
checker-plugins.c 8 void caller() { function
inline4.c 9 // Do not remove block-level expression bindings of caller when analyzing
  /external/icu/icu4c/source/extra/uconv/
resfiles.mk 5 # The variable FILESEPCHAR is defined by the caller to be
  /external/llvm/test/Transforms/ArgumentPromotion/
basictest.ll 12 define internal i32 @caller(i32* %B) {
13 ; CHECK-LABEL: define internal i32 @caller(i32 %B.val1)
25 %X = call i32 @caller(i32* %B)
26 ; CHECK: call i32 @caller(i32 2)
  /external/llvm/test/Transforms/DeadArgElim/
2007-02-07-FuncRename.ll 8 define i32 @caller() {
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/dummyExt/
package.html 4 required the caller class (XLogger) to have a different prefix than
  /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/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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/external/decorator/decorator2/
_decorator2.py 106 # func=None happens when decorating a caller
186 def decorator(caller, func=None):
188 decorator(caller) converts a caller function into a decorator;
189 decorator(caller, func) decorates a function using a caller.
193 evaldict['_call_'] = caller
199 if isinstance(caller, partial):
200 return partial(decorator, caller)
201 # otherwise assume caller is a functio
    [all...]
  /external/skia/src/codec/
SkJpegDecoderMgr.cpp 14 static void print_message(const j_common_ptr info, const char caller[]) {
17 SkCodecPrintf("libjpeg error %d <%s> from %s\n", info->err->msg_code, buffer, caller);
47 bool JpegDecoderMgr::returnFalse(const char caller[]) {
48 print_message((j_common_ptr) &fDInfo, caller);
52 SkCodec::Result JpegDecoderMgr::returnFailure(const char caller[], SkCodec::Result result) {
53 print_message((j_common_ptr) &fDInfo, caller);
  /external/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.
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
ProviderUtil.java 32 * Check if a caller of the provider has restricted access,
36 * @param packageName the caller package name
37 * @param uid the caller uid
38 * @return true if the caller is not system, or phone or default sms app, false otherwise
50 * @param uid The caller UID of the insertion
63 * @param uid The caller UID of the update
  /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...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerUnaffiliatedAuthenticatorTests.java 36 * the caller. This is important to test that portion of the {@link AccountManager} API intended
78 fail("Expected to just barf if the caller doesn't share a signature.");
101 fail("addAccountExplicitly should just barf if the caller isn't permitted.");
111 fail("removeAccount should just barf if the caller isn't permitted.");
122 fail("removeAccount should just barf if the caller isn't permitted.");
130 fail("removeAccountExplicitly should just barf if the caller isn't permitted.");
138 fail("getPassword should just barf if the caller isn't permitted.");
147 fail("setPassword should just barf if the caller isn't permitted.");
155 fail("clearPassword should just barf if the caller isn't permitted.");
164 fail("getUserData should just barf if the caller isn't permitted.")
    [all...]
  /external/lldb/test/functionalities/conditional_break/
conditional_break.py 15 # We check the call frames in order to stop only when the immediate caller
16 # of the leaf function c() is a(). If it's not the right caller, we ask the
  /external/llvm/test/CodeGen/AArch64/
arm64-elf-calls.ll 6 define void @caller() {
9 ; CHECK-LABEL: caller:
  /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/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));

Completed in 784 milliseconds

12 3 4 5 6 7 8 91011>>