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

1 2

  /system/core/property_service/libpropertyinfoparser/
property_info_parser.cpp 92 uint32_t* context_index, uint32_t* type_index) const {
99 if (trie_node.prefix(i)->context_index != ~0u) {
100 *context_index = trie_node.prefix(i)->context_index;
110 void PropertyInfoArea::GetPropertyInfoIndexes(const char* name, uint32_t* context_index,
120 if (trie_node.context_index() != ~0u) {
121 return_context_index = trie_node.context_index();
149 if (context_index != nullptr) {
150 if (trie_node.exact_match(i)->context_index != ~0u) {
151 *context_index = trie_node.exact_match(i)->context_index
176 uint32_t context_index; local
    [all...]
  /system/core/property_service/libpropertyinfoserializer/
property_info_serializer_test.cpp 48 EXPECT_STREQ("default", property_info_area->context(root_node.context_index()));
61 EXPECT_STREQ("1st", property_info_area->context(test_node.context_index()));
71 EXPECT_STREQ("2nd", property_info_area->context(prefix->context_index));
84 EXPECT_STREQ("3rd", property_info_area->context(match1->context_index));
85 EXPECT_STREQ("3rd", property_info_area->context(match2->context_index));
86 EXPECT_STREQ("3rd", property_info_area->context(match3->context_index));
95 EXPECT_EQ(-1U, node.context_index());
122 EXPECT_STREQ("4th", property_info_area->context(final_match->context_index));
145 EXPECT_STREQ("default", property_info_area->context(root_node.context_index()));
    [all...]
trie_serializer.cpp 43 uint32_t context_index = property_entry.context != nullptr && !property_entry.context->empty() local
53 serialized_property_entry->context_index = context_index;
  /system/core/property_service/libpropertyinfoparser/include/property_info_parser/
property_info_parser.h 34 uint32_t context_index; member in struct:android::properties::PropertyEntry
105 uint32_t context_index() const { return node_property_entry()->context_index; } function in class:android::properties::TrieNode
146 void GetPropertyInfoIndexes(const char* name, uint32_t* context_index, uint32_t* type_index) const;
176 uint32_t* context_index, uint32_t* type_index) const;
  /external/v8/src/snapshot/
snapshot.h 62 size_t context_index,
snapshot-common.cc 54 Isolate* isolate, Handle<JSGlobalProxy> global_proxy, size_t context_index,
62 ExtractContextData(blob, static_cast<int>(context_index));
75 context_index, bytes, ms);
  /external/v8/src/builtins/
builtins-arguments.cc 344 Variable context_index(this, OptimalParameterRepresentation());
345 context_index.Bind(IntPtrOrSmiSub(
350 VariableList var_list2({&context_index}, zone());
359 [this, the_hole, elements, adjusted_map_array, &context_index,
365 offset, ParameterToTagged(context_index.value(), mode));
366 Increment(context_index, 1, mode);
  /external/v8/src/debug/
debug-scopes.cc 483 for (int context_index = 0; context_index < script_contexts->used();
484 context_index++) {
486 ScriptContextTable::GetContext(script_contexts, context_index);
661 int context_index = ScopeInfo::ContextSlotIndex( local
663 context->set(context_index, *new_value);
745 script_contexts, lookup_result.context_index);
776 int context_index = Context::MIN_CONTEXT_SLOTS + i; local
777 Handle<Object> value = Handle<Object>(context->get(context_index), isolate);
liveedit.cc 1637 int context_index = var->index() - Context::MIN_CONTEXT_SLOTS; local
    [all...]
  /toolchain/binutils/binutils-2.27/include/
ieee.h 158 unsigned int context_index; member in struct:ieee_section
  /external/brotli/c/dec/
state.h 191 uint32_t context_index; member in struct:BrotliDecoderStateStruct
decode.c 992 uint32_t context_index = s->context_index; local
    [all...]
  /external/v8/src/
contexts.cc 50 result->context_index = i;
247 r.context_index);
249 r.context_index, reinterpret_cast<void*>(*c));
256 r.context_index);
contexts.h 372 int context_index; member in struct:v8::internal::ScriptContextTable::LookupResult
397 static int GetContextOffset(int context_index) {
398 return kFirstContextOffset + context_index * kPointerSize;
    [all...]
code-stubs.h 1447 int context_index() const { return ContextIndexBits::decode(minor_key_); } function in class:v8::ScriptContextFieldStub
    [all...]
code-stubs.cc     [all...]
bootstrapper.cc     [all...]
  /external/v8/src/compiler/
linkage.cc 473 // >> context_index = target + receiver + params + new_target + #args
474 int context_index = 1 + 1 + parameter_count + 1 + 1; local
475 return incoming_->GetInputLocation(context_index);
bytecode-graph-builder.cc 2301 int context_index = exception_handlers_.top().context_register_; local
    [all...]
  /external/v8/src/runtime/
runtime-scopes.cc 471 int context_index = -1; local
474 context_index = j;
479 DCHECK(context_index >= 0);
483 Smi::FromInt(Context::MIN_CONTEXT_SLOTS + context_index));
    [all...]
  /external/v8/src/interpreter/
bytecode-array-builder.h 282 // Call the JS runtime function with |context_index| and arguments |args|.
283 BytecodeArrayBuilder& CallJSRuntime(int context_index, RegisterList args);
bytecode-array-builder.cc     [all...]
  /external/v8/src/ast/
ast.h 2029 int context_index() const { function in class:v8::internal::final
    [all...]
ast-numbering.cc 326 node->context_index() == Context::ASYNC_FUNCTION_AWAIT_CAUGHT_INDEX &&
  /external/v8/src/full-codegen/
full-codegen.h 586 void LoadContextField(Register dst, int context_index);
    [all...]

Completed in 1101 milliseconds

1 2