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

  /external/v8/include/
v8-experimental.h 26 size_t label_id; member in struct:v8::experimental::FastAccessorBuilder::LabelId
43 void SetLabel(LabelId label_id);
44 void Goto(LabelId label_id);
45 void CheckNotZeroOrJump(ValueId value_id, LabelId label_id);
  /external/v8/src/
api-experimental.cc 120 void FastAccessorBuilder::SetLabel(LabelId label_id) {
121 FromApi(this)->SetLabel(label_id);
124 void FastAccessorBuilder::Goto(LabelId label_id) {
125 FromApi(this)->Goto(label_id);
129 LabelId label_id) {
130 FromApi(this)->CheckNotZeroOrJump(value_id, label_id);
fast-accessor-assembler.h 79 void SetLabel(LabelId label_id);
80 void Goto(LabelId label_id);
81 void CheckNotZeroOrJump(ValueId value_id, LabelId label_id);
95 void CheckIsJSObjectOrJump(ValueId value, LabelId label_id);
fast-accessor-assembler.cc 153 void FastAccessorAssembler::SetLabel(LabelId label_id) {
155 assembler_->Bind(FromId(label_id));
158 void FastAccessorAssembler::Goto(LabelId label_id) {
160 assembler_->Goto(FromId(label_id));
164 LabelId label_id) {
169 FromId(label_id), &pass);
202 LabelId label_id) {
220 FromId(label_id));
245 LabelId label_id = {labels_.size() - 1}; local
246 return label_id;
    [all...]
  /bionic/tools/bionicbb/
tasks.py 98 label_id = gmail.get_gerrit_label(labels['labels'])
99 if not label_id:
103 for msg in gmail.get_all_messages(gmail_service, label_id):
  /external/minijail/
syscall_filter.h 36 unsigned int label_id,
bpf.h 189 int op, int argidx, unsigned long c, unsigned int label_id);
bpf.c 137 unsigned long c, unsigned int label_id)
179 curr_block += set_bpf_jump_lbl(curr_block, label_id);
syscall_filter.c 155 int label_id = bpf_label_id(labels, label_str); local
156 if (label_id < 0)
158 return label_id;
syscall_filter_unittest.cc 177 unsigned int label_id = 0; local
179 size_t len = bpf_arg_comp(&arg_comp, op, argidx, c, label_id);
998 const int LABEL_ID = 0;
1015 LABEL_ID,
1036 EXPECT_ACTUAL_LBL(curr_block->instrs, LABEL_ID);
    [all...]
  /external/autotest/frontend/tko/
rpc_interface.py 337 def modify_test_label(label_id, **data):
338 models.TestLabel.smart_get(label_id).update_object(data)
341 def delete_test_label(label_id):
342 models.TestLabel.smart_get(label_id).delete()
356 def test_label_add_tests(label_id, **test_filter_data):
358 models.TestLabel.smart_get(label_id).tests.add(*test_ids)
361 def test_label_remove_tests(label_id, **test_filter_data):
362 label = models.TestLabel.smart_get(label_id)
models.py 383 ','.join(str(label_id) for label_id in label_ids)))
405 def _join_test_label_column(self, query_set, label_name, label_id):
  /external/tensorflow/tensorflow/contrib/gan/python/features/python/
conditioning_utils_impl.py 79 label_id = math_ops.argmax(one_hot, axis=1)
83 embedding, label_id, name='token_to_embedding')
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/val/
basic_block.cpp 25 BasicBlock::BasicBlock(uint32_t label_id)
26 : id_(label_id),
  /external/autotest/frontend/afe/
frontend_test_utils.py 42 label_id=self.labels[-1].id)]
147 for label_id in metahosts:
148 models.HostQueueEntry.objects.create(job=job, meta_host_id=label_id,
admin.py 121 return [str(label_id) for label_id in label_ids]
rpc_interface_unittest.py 385 models.ReplacedLabel.objects.create(label_id=non_static_platform.id)
464 models.ReplacedLabel.objects.create(label_id=non_static_platform.id)
487 models.ReplacedLabel.objects.create(label_id=platform1.id)
647 models.ReplacedLabel.objects.create(label_id=label.id)
    [all...]
rpc_interface.py 321 replaced_ids = {r.label_id for r in replaced}
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
inline_pass.h 81 std::unique_ptr<ir::Instruction> NewLabel(uint32_t label_id);
inline_pass.cpp 61 void InlinePass::AddBranch(uint32_t label_id,
65 {{spv_operand_type_t::SPV_OPERAND_TYPE_ID, {label_id}}}));
105 std::unique_ptr<ir::Instruction> InlinePass::NewLabel(uint32_t label_id) {
107 new ir::Instruction(SpvOpLabel, 0, label_id, {}));
  /external/libchrome/base/trace_event/
trace_log.h 308 void UpdateProcessLabel(int label_id, const std::string& current_label);
309 void RemoveProcessLabel(int label_id);
trace_log.cc     [all...]
  /external/autotest/scheduler/
scheduler_models.py 383 'SELECT label_id FROM afe_replaced_labels')
392 for label_id, label_name, is_platform in non_static_rows:
393 if label_id not in replaced_label_ids:
394 combined_rows.append((label_id, label_name, is_platform))
399 for label_id, label_name, is_platform in static_rows:
401 combined_rows.append((label_id, label_name, is_platform))
425 'column': 'label_id',
564 "ON (afe_labels.id = deps.label_id)",
    [all...]
scheduler_models_unittest.py 154 models.ReplacedLabel.objects.create(label_id=non_static_platform.id)

Completed in 263 milliseconds