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

1 2

  /external/clang/test/Analysis/
checker-plugins.c 8 void caller() { function
  /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/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/clang/test/CXX/class/class.friend/
p1-ambiguous.cpp 21 int caller();
34 int foo::caller() { function in class:foo
  /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/emma/core/java12/com/vladium/util/
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...]
  /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/mjsunit/es6/
promises.js 46 var poisoned = {caller: 0, callee: 0, arguments: 0}
unscopables.js 629 var caller = 'local';
631 assertEquals(TestFunctionCallerUnscopables, caller);
632 func[Symbol.unscopables] = {caller: true};
633 assertEquals('local', caller);
635 assertEquals(TestFunctionCallerUnscopables, caller);
  /external/chromium_org/chrome/utility/importer/
nss_decryptor_win.cc 50 SetDllDirectoryCaller caller; local
55 caller.set_func(set_dll_directory);
  /development/ndk/platforms/android-3/include/linux/lockd/
xdr.h 29 char * caller; member in struct:nlm_lock
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 94 // Caller will be the third element
98 StackTraceElement caller=locations[2]; local
99 cname=caller.getClassName();
100 method=caller.getMethodName();
  /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/core/inspector/
JavaScriptCallFrame.cpp 51 JavaScriptCallFrame* JavaScriptCallFrame::caller() function in class:blink::JavaScriptCallFrame
57 v8::Handle<v8::Value> callerFrame = m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "caller"));
  /external/chromium_org/third_party/icu/source/test/intltest/
intltest.h 313 IntlTest* caller; member in class:IntlTest
  /external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
uperf.h 168 UPerfTest* caller; member in class:UPerfTest
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.h 127 int call_stack_depth; // number of caller stack frames that we saved
128 const void* call_stack[kMaxStackDepth]; // caller address stack array
134 // i.e. (the program counter of) the immediate caller
140 uintptr_t caller() const { function in struct:MemoryRegionMap::Region
269 // Maximal number of caller stack frames to save (>= 0).
  /external/icu/icu4c/source/test/intltest/
intltest.h 337 IntlTest* caller; member in class:IntlTest
  /external/icu/icu4c/source/tools/ctestfw/unicode/
uperf.h 187 UPerfTest* caller; member in class:UPerfTest
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 45 // method argument passed by the caller.
324 mirror::ArtMethod* caller = self->GetCurrentMethod(&dex_pc); local
330 const DexFile::CodeItem* code = caller->GetCodeItem();
382 called = linker->ResolveMethod(Thread::Current(), dex_method_idx, &caller, invoke_type);
  /external/chromium_org/chromeos/login/auth/
cryptohome_authenticator.cc 314 cryptohome::AsyncMethodCaller* caller = local
324 caller->AsyncMigrateKey(attempt->user_context.GetUserID(),
332 caller->AsyncMigrateKey(attempt->user_context.GetUserID(),
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.h 139 int call_stack_depth; // number of caller stack frames that we saved
140 const void* call_stack[kMaxStackDepth]; // caller address stack array
146 // i.e. (the program counter of) the immediate caller
152 uintptr_t caller() const { function in struct:MemoryRegionMap::Region
235 // Get the bucket whose caller stack trace is "key". The stack trace is
293 // Maximal number of caller stack frames to save (>= 0).
379 // caller stack trace is "key". The stack trace is used to a depth of
  /external/emma/core/java12/com/vladium/logging/
Logger.java 48 * <LI> caller-supplied message is logged, if not null;
49 * <LI> caller-supplied Throwable is dumped starting with a new line, if not null.
346 * nesting in the caller code.
444 final Class caller = logCaller ? ClassLoaderResolver.getCallerClass (2) : null; local
447 if ((caller != null) || (method != null))
451 if (caller != null) // if the caller could not be determined, s_classMask is ignored
453 String callerName = caller.getName ();
492 final Class caller = ClassLoaderResolver.getCallerClass (2); local
495 if ((caller != null) || (method != null)
    [all...]

Completed in 784 milliseconds

1 2