HomeSort by relevance Sort by last modified time
    Searched refs:callsite (Results 1 - 17 of 17) sorted by null

  /frameworks/base/tools/aapt2/link/
ReferenceLinker.h 38 // Performs name mangling and looks up the resource in the symbol table. Uses the callsite's
42 const CallSite& callsite, SymbolTable* symbols);
45 // visible by the reference at the callsite, nullptr is returned.
48 const CallSite& callsite,
55 const CallSite& callsite,
62 const CallSite& callsite,
    [all...]
ReferenceLinker.cpp 50 ReferenceLinkerVisitor(const CallSite& callsite, IAaptContext* context, SymbolTable* symbols,
52 : callsite_(callsite),
81 // Find the attribute in the symbol table and check if it is visible from this callsite.
152 const CallSite& callsite_;
176 // or if the callsite comes from the same package.
178 const CallSite& callsite) {
192 return callsite.package == name.package;
204 const CallSite& callsite
    [all...]
XmlReferenceLinker.cpp 42 ReferenceVisitor(const CallSite& callsite, IAaptContext* context, SymbolTable* symbols,
44 : callsite_(callsite), context_(context), symbols_(symbols), decls_(decls), error_(false) {}
59 const CallSite& callsite_;
71 XmlVisitor(const Source& source, const CallSite& callsite, IAaptContext* context,
74 callsite_(callsite),
77 reference_visitor_(callsite, context, symbols, this) {
143 const CallSite& callsite_;
154 CallSite callsite{resource->file.name.package}
    [all...]
  /system/extras/simpleperf/scripts/inferno/
svg_renderer.py 51 def getHeatColor(callsite, total_weight):
52 r = 245 + 10 * (1 - callsite.weight() / total_weight)
53 g = 110 + 105 * (1 - callsite.weight() / total_weight)
66 def createSVGNode(process, callsite, depth, f, total_weight, height, color_scheme, nav):
67 x = float(callsite.offset) / total_weight * 100
69 width = callsite.weight() / total_weight * 100
71 method = callsite.method.replace(">", "&gt;").replace("<", "&lt;")
76 r, g, b = getDSOColor(callsite.dso)
80 r, g, b = getHeatColor(callsite, total_weight)
85 weight_str = get_proper_scaled_time_string(callsite.weight()
    [all...]
data_types.py 18 class CallSite:
45 chain.append(CallSite(entry.symbol.symbol_name, entry.symbol.dso_name))
47 chain.append(CallSite(symbol.symbol_name, symbol.dso_name))
104 for callsite in chain:
105 current = current._get_child(callsite)
108 def _get_child(self, callsite):
109 key = (callsite.dso, callsite.method)
112 child = self.child_dict[key] = FlameGraphCallSite(callsite.method, callsite.dso
    [all...]
  /art/test/952-invoke-custom/src/transformer/
IndyTransformer.java 67 * instructions targetting the CallSite that is construction by the bootstrap method described by
97 CalledByIndy callsite = callsiteMap.get(name);
98 if (callsite != null) {
99 insertIndy(callsite.fieldOrMethodName(), desc, callsite); local
106 private void insertIndy(String name, String desc, CalledByIndy callsite) {
107 Handle bsm = buildBootstrapMethodHandle(callsite.bootstrapMethod()[0]);
109 buildBootstrapArguments(callsite.constantArgumentsForBootstrapMethod());
  /external/tensorflow/tensorflow/compiler/xla/service/
call_graph.cc 71 string CallSite::ToString() const {
84 const CallSite* CallGraphNode::GetCallSite(
93 void CallGraphNode::AddCallerCallSite(const CallSite& caller_callsite) {
110 CallSite(instruction, instruction->called_computations(), context));
205 for (const CallSite& callsite : node->callsites()) {
206 for (const HloComputation* callee : callsite.called_computations()) {
209 // Update context of callee computation based on the callsite and its
212 if (callsite.context() == CallContext::kParallel) {
215 CHECK_EQ(callsite.context(), CallContext::kSequential)
    [all...]
call_inliner.cc 144 for (const CallSite& callsite : node.caller_callsites()) {
145 VLOG(1) << "Visiting callsite: " << callsite.ToString();
146 if (callsite.instruction()->opcode() == HloOpcode::kCall) {
147 HloInstruction* call = callsite.instruction();
hlo_dataflow_analysis.cc 440 for (const CallSite& callsite : call_graph_node.caller_callsites()) {
441 if (callsite.instruction()->opcode() == HloOpcode::kCall) {
445 callsite.instruction()->operand(parameter->parameter_number())));
446 } else if (callsite.instruction()->opcode() == HloOpcode::kWhile) {
452 &GetInstructionValueSet(callsite.instruction()->operand(0)));
457 callsite.instruction()->while_body()->root_instruction()) {
459 callsite.instruction()->while_body()->root_instruction()));
462 } else if (callsite.instruction()->opcode() == HloOpcode::kConditional) {
464 auto conditional = callsite.instruction()
    [all...]
hlo_alias_analysis.cc 198 for (const CallSite& callsite : call_graph_node.caller_callsites()) {
199 if (callsite.instruction()->opcode() == HloOpcode::kWhile) {
204 callsite.instruction(), value.defining_index());
219 for (const CallSite& callsite : call_graph_node.caller_callsites()) {
220 if (callsite.instruction()->opcode() == HloOpcode::kWhile &&
221 callsite.instruction()->while_body() == computation) {
226 callsite.instruction(), position.index);
hlo_rematerialization.cc 943 const CallSite* callsite = local
1114 const CallSite* callsite = call_graph_node.GetCallSite(instruction); local
    [all...]
  /external/v8/src/runtime/
runtime-internal.cc 387 Handle<String> callsite = RenderCallSite(isolate, object); local
389 isolate, NewTypeError(MessageTemplate::kCalledNonCallable, callsite));
404 Handle<String> callsite = RenderCallSite(isolate, object); local
406 isolate, NewTypeError(MessageTemplate::kNotConstructor, callsite));
  /system/extras/simpleperf/doc/
inferno.md 76 fail to reach the root callsite. These incomplete
  /external/v8/
Android.v8.mk 53 src/builtins/builtins-callsite.cc \
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
plive.go 816 // at the callsite. That is ok, though, as typedmemmove
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
plive.go 816 // at the callsite. That is ok, though, as typedmemmove
    [all...]
  /external/v8/src/inspector/build/closure-compiler/
closure-compiler.jar 

Completed in 758 milliseconds