HomeSort by relevance Sort by last modified time
    Searched refs:caller (Results 1 - 25 of 843) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/
checker-plugins.c 8 void caller() { function
  /external/emma/core/java12/com/vladium/util/
ClassLoadContext.java 24 * Returns the class representing the caller of {@link ClassLoaderResolver}
25 * API. Can be used to retrieve the caller's classloader etc (which may be
26 * different from the ClassLoaderResolver's own classloader) ['null' if caller
43 * @param caller [can be null]
45 ClassLoadContext (final Class caller)
47 m_caller = caller;
ResourceLoader.java 36 final Class caller = ClassLoaderResolver.getCallerClass (1); local
37 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
47 final Class caller = ClassLoaderResolver.getCallerClass (1); local
48 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
61 final Class caller = ClassLoaderResolver.getCallerClass (1); local
62 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
76 final Class caller = ClassLoaderResolver.getCallerClass (1); local
77 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
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/runtime/
nth_caller_visitor.h 31 count(0), caller(NULL) {}
43 DCHECK(caller == NULL);
45 caller = m;
56 mirror::ArtMethod* caller; member in struct:art::NthCallerVisitor
  /external/clang/test/CXX/class/class.friend/
p1-ambiguous.cpp 21 int caller();
34 int foo::caller() { function in class:foo
  /external/clang/test/CodeGenCXX/
empty-nontrivially-copyable.cpp 5 // constructors passed by value should be passed indirectly, with the caller
21 void caller(Empty &e) { function
sparcv9-abi.cpp 17 // CHECK-LABEL: caller
20 void caller() function
  /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/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Subroutine.java 57 final JumpInsnNode caller)
62 callers.add(caller);
84 Object caller = subroutine.callers.get(i); local
85 if (!callers.contains(caller)) {
86 callers.add(caller);
  /external/chromium_org/v8/test/webkit/fast/js/
caller-property.js 25 'This tests for caller property in functions. Only functions that are called from inside of other functions and have a parent should have this property set. Tests return true when caller is found and false when the caller is null.'
29 return (child.caller !== null);
37 var childHasCallerWhenExecutingGlobalCode = (child.caller !== null);
45 // The caller property should throw in strict mode, and a non-strict function cannot use caller to reach a strict caller (see ES5.1 15.3.5.4).
46 function nonStrictCallee() { return nonStrictCallee.caller; }
47 function strictCallee() { "use strict"; return strictCallee.caller; }
    [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...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementCallbackQueue.cpp 49 bool CustomElementCallbackQueue::processInElementQueue(ElementQueueId caller)
54 while (m_index < m_queue.size() && owner() == caller) {
58 // queue and reenters processInQueue. owner() == caller
65 if (owner() == caller && m_index == m_queue.size()) {
  /external/chromium_org/content/browser/
time_zone_monitor_android.h 26 void TimeZoneChangedFromJava(JNIEnv* env, jobject caller);
  /external/linux-tools-perf/perf-3.12.0/arch/frv/lib/
memcpy.S 21 # to caller's fixup routine, aborting the remainder of the copy
memset.S 21 # to caller's fixup routine, aborting the remainder of the set
  /external/chromium_org/components/leveldb_proto/
proto_database_impl_unittest.cc 103 // the caller's InitCallback is called with the correct value.
110 MockDatabaseCaller caller; local
111 EXPECT_CALL(caller, InitCallback(true));
115 base::Bind(&MockDatabaseCaller::InitCallback, base::Unretained(&caller)));
126 MockDatabaseCaller caller; local
127 EXPECT_CALL(caller, InitCallback(false));
131 base::Bind(&MockDatabaseCaller::InitCallback, base::Unretained(&caller)));
150 // the caller's LoadCallback is called with the correct success value. Also
151 // confirms that on success, the expected entries are passed to the caller's
157 MockDatabaseCaller caller; local
179 MockDatabaseCaller caller; local
217 MockDatabaseCaller caller; local
246 MockDatabaseCaller caller; local
273 MockDatabaseCaller caller; local
303 MockDatabaseCaller caller; local
337 MockDatabaseCaller caller; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Timer.h 48 void startRepeating(double repeatInterval, const TraceLocation& caller)
50 start(repeatInterval, repeatInterval, caller);
52 void startOneShot(double interval, const TraceLocation& caller)
54 start(interval, 0, caller);
154 void restart(const TraceLocation& caller)
164 startOneShot(m_delay, caller);
  /external/chromium_org/media/midi/
usb_midi_device_factory_android.h 32 jobject caller,
  /external/chromium_org/third_party/tcmalloc/chromium/src/
libc_override_glibc.h 110 static void* glibc_override_malloc(size_t size, const void *caller) {
114 const void *caller) {
117 static void glibc_override_free(void *ptr, const void *caller) {
121 const void *caller) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/
libc_override_glibc.h 99 static void* glibc_override_malloc(size_t size, const void *caller) {
103 const void *caller) {
106 static void glibc_override_free(void *ptr, const void *caller) {
110 const void *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...]
  /external/lldb/examples/summaries/cocoa/
Logger.py 100 caller = inspect.stack()[2]
102 if caller != None and len(caller) > 3:
103 self.write('Logging from function ' + str(caller))
105 self.write('Caller info not available - Required caller logging not possible')
107 del caller # needed per Python docs to avoid keeping objects alive longer than we care
  /external/fio/
gettime.c 47 void *caller; member in struct:gtod_log
51 static struct gtod_log *find_hash(void *caller)
53 unsigned long h = hash_ptr(caller, HASH_BITS);
60 if (log->caller == caller)
67 static struct gtod_log *find_log(void *caller)
69 struct gtod_log *log = find_hash(caller);
76 log->caller = caller;
79 h = hash_ptr(caller, HASH_BITS)
    [all...]
  /external/chromium_org/v8/test/mjsunit/es6/
generators-poisoned-properties.js 10 var cdesc = Object.getOwnPropertyDescriptor(f, "caller");
27 assertThrows(function() { return f.caller; }, TypeError);
28 assertThrows(function() { f.caller = 42; }, TypeError);

Completed in 748 milliseconds

1 2 3 4 5 6 7 8 91011>>