HomeSort by relevance Sort by last modified time
    Searched defs:dictionary (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /external/v8/src/ia32/
code-stubs-ia32.h 56 NameDictionaryLookupStub(Isolate* isolate, Register dictionary,
59 minor_key_ = DictionaryBits::encode(dictionary.code()) |
93 Register dictionary() const { function in class:v8::internal::NameDictionaryLookupStub
  /external/v8/src/ic/arm/
ic-arm.cc 36 // elements: Property dictionary. It is not clobbered if a jump to the miss
53 // dictionary.
57 // Probe the dictionary.
80 // elements: Property dictionary. It is not clobbered if a jump to the miss
95 // dictionary.
99 // Probe the dictionary.
103 // If probing finds an entry in the dictionary check that the value
262 Register dictionary = r0; local
263 DCHECK(!dictionary.is(LoadDescriptor::ReceiverRegister()));
264 DCHECK(!dictionary.is(LoadDescriptor::NameRegister()))
750 Register dictionary = r5; local
    [all...]
  /external/v8/src/ic/arm64/
ic-arm64.cc 32 // elements: Property dictionary. It is not clobbered if a jump to the miss
50 // Probe the dictionary.
73 // elements: Property dictionary. It is not clobbered if a jump to the miss
89 // Probe the dictionary.
93 // If probing finds an entry in the dictionary check that the value
258 Register dictionary = x0; local
259 DCHECK(!dictionary.is(LoadDescriptor::ReceiverRegister()));
260 DCHECK(!dictionary.is(LoadDescriptor::NameRegister()));
263 __ Ldr(dictionary, FieldMemOperand(LoadDescriptor::ReceiverRegister(),
265 GenerateDictionaryLoad(masm, &slow, dictionary,
740 Register dictionary = x5; local
    [all...]
  /external/v8/src/ic/ia32/
ic-ia32.cc 33 // Helper function used to load a property from a dictionary backing
35 // in the dictionary, so code at miss_label must always call a backup
45 // elements - holds the property dictionary on entry and is unchanged.
51 // r0 - used for the index into the property dictionary
53 // r1 - used to hold the capacity of the property dictionary.
59 // Probe the dictionary.
63 // If probing finds an entry in the dictionary, r0 contains the
64 // index into the dictionary. Check that the value is a normal
81 // Helper function used to store a property to a dictionary backing
83 // is in the dictionary, so code at miss_label must always call
625 Register dictionary = eax; local
751 Register dictionary = ebx; local
    [all...]
  /external/v8/src/ic/mips/
ic-mips.cc 34 // elements: Property dictionary. It is not clobbered if a jump to the miss
53 // dictionary.
57 // Probe the dictionary.
81 // elements: Property dictionary. It is not clobbered if a jump to the miss
98 // dictionary.
102 // Probe the dictionary.
106 // If probing finds an entry in the dictionary check that the value
268 Register dictionary = a0; local
269 DCHECK(!dictionary.is(LoadDescriptor::ReceiverRegister()));
270 DCHECK(!dictionary.is(LoadDescriptor::NameRegister()))
743 Register dictionary = t1; local
    [all...]
  /external/v8/src/ic/mips64/
ic-mips64.cc 34 // elements: Property dictionary. It is not clobbered if a jump to the miss
53 // dictionary.
57 // Probe the dictionary.
81 // elements: Property dictionary. It is not clobbered if a jump to the miss
98 // dictionary.
102 // Probe the dictionary.
106 // If probing finds an entry in the dictionary check that the value
268 Register dictionary = a0; local
269 DCHECK(!dictionary.is(LoadDescriptor::ReceiverRegister()));
270 DCHECK(!dictionary.is(LoadDescriptor::NameRegister()))
747 Register dictionary = a5; local
    [all...]
  /external/v8/src/ic/ppc/
ic-ppc.cc 36 // elements: Property dictionary. It is not clobbered if a jump to the miss
53 // dictionary.
57 // Probe the dictionary.
83 // elements: Property dictionary. It is not clobbered if a jump to the miss
98 // dictionary.
102 // Probe the dictionary.
106 // If probing finds an entry in the dictionary check that the value
272 Register dictionary = r3; local
273 DCHECK(!dictionary.is(LoadDescriptor::ReceiverRegister()));
274 DCHECK(!dictionary.is(LoadDescriptor::NameRegister()))
753 Register dictionary = r8; local
    [all...]
  /external/v8/src/ic/s390/
ic-s390.cc 33 // elements: Property dictionary. It is not clobbered if a jump to the miss
50 // dictionary.
54 // Probe the dictionary.
79 // elements: Property dictionary. It is not clobbered if a jump to the miss
94 // dictionary.
98 // Probe the dictionary.
102 // If probing finds an entry in the dictionary check that the value
266 Register dictionary = r2; local
267 DCHECK(!dictionary.is(LoadDescriptor::ReceiverRegister()));
268 DCHECK(!dictionary.is(LoadDescriptor::NameRegister()))
734 Register dictionary = r7; local
    [all...]
  /external/v8/src/ic/x64/
ic-x64.cc 33 // Helper function used to load a property from a dictionary backing storage.
45 // elements - holds the property dictionary on entry and is unchanged.
49 // r0 - used to hold the capacity of the property dictionary.
51 // r1 - used to hold the index into the property dictionary.
57 // Probe the dictionary.
61 // If probing finds an entry in the dictionary, r1 contains the
62 // index into the dictionary. Check that the value is a normal
81 // Helper function used to store a property to a dictionary backing
83 // is in the dictionary, so code at miss_label must always call a
94 // elements - holds the property dictionary on entry and is clobbered
622 Register dictionary = rax; local
746 Register dictionary = r11; local
    [all...]
  /external/v8/src/ic/x87/
ic-x87.cc 33 // Helper function used to load a property from a dictionary backing
35 // in the dictionary, so code at miss_label must always call a backup
45 // elements - holds the property dictionary on entry and is unchanged.
51 // r0 - used for the index into the property dictionary
53 // r1 - used to hold the capacity of the property dictionary.
59 // Probe the dictionary.
63 // If probing finds an entry in the dictionary, r0 contains the
64 // index into the dictionary. Check that the value is a normal
81 // Helper function used to store a property to a dictionary backing
83 // is in the dictionary, so code at miss_label must always call
625 Register dictionary = eax; local
751 Register dictionary = ebx; local
    [all...]
  /external/v8/src/
lookup.cc 295 // Dictionary maps can always have additional data properties.
449 Handle<SeededNumberDictionary> dictionary = local
455 dictionary =
456 SeededNumberDictionary::Set(dictionary, index_, pair, details, false);
457 receiver->RequireSlowElements(*dictionary);
465 FixedArray::cast(receiver->elements())->set(1, *dictionary);
467 receiver->set_elements(*dictionary);
elements.cc 1229 SeededNumberDictionary* dictionary = SeededNumberDictionary::cast(*store); local
1242 Handle<SeededNumberDictionary> dictionary = local
1273 SeededNumberDictionary* dictionary = SeededNumberDictionary::cast(store); local
1318 Handle<SeededNumberDictionary> dictionary = local
1366 SeededNumberDictionary* dictionary = local
1405 Handle<SeededNumberDictionary> dictionary = local
1507 Handle<SeededNumberDictionary> dictionary = local
2462 Handle<SeededNumberDictionary> dictionary = local
2596 Handle<SeededNumberDictionary> dictionary = local
    [all...]
  /external/v8/src/x64/
code-stubs-x64.h 51 NameDictionaryLookupStub(Isolate* isolate, Register dictionary,
54 minor_key_ = DictionaryBits::encode(dictionary.code()) |
88 Register dictionary() const { function in class:v8::internal::NameDictionaryLookupStub
  /external/v8/src/x87/
code-stubs-x87.h 56 NameDictionaryLookupStub(Isolate* isolate, Register dictionary,
59 minor_key_ = DictionaryBits::encode(dictionary.code()) |
93 Register dictionary() const { function in class:v8::internal::NameDictionaryLookupStub
  /external/v8/test/mjsunit/regress/
regress-410912.js 132 dictionary : 'dictionary elements',
178 __f_12(__v_19.dictionary, __v_15);
  /external/v8/tools/gyp/tools/emacs/
gyp.el 130 (defun gyp-inside-dictionary-p ()
131 "Predicate returning true if the parser is inside a dictionary."
163 (if (gyp-inside-dictionary-p)
164 ;; Look for sections inside a dictionary
173 ;; Inside a dictionary. Increase nesting.
  /external/v8/test/cctest/
test-code-stub-assembler.cc 217 template <typename Dictionary>
228 Node* dictionary = m.Parameter(0); local
237 m.NameDictionaryLookup<Dictionary>(dictionary, unique_name, &if_found,
264 Handle<Dictionary> dictionary = Dictionary::New(isolate, 40); local
282 dictionary = Dictionary::Add(dictionary, keys[i], value, fake_details)
334 Node* dictionary = m.Parameter(0); local
371 Handle<Dictionary> dictionary = Dictionary::New(isolate, kKeysCount); local
    [all...]
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 25 #include "dictionary/property/unigram_property.h"
26 #include "dictionary/property/ngram_context.h"
27 #include "dictionary/property/word_property.h"
28 #include "dictionary/structure/dictionary_structure_with_buffer_policy_factory.h"
31 #include "suggest/core/dictionary/dictionary.h"
65 Dictionary *const dictionary = local
66 new Dictionary(env, std::move(dictionaryStructureWithBufferPolicy));
68 return reinterpret_cast<jlong>(dictionary);
94 Dictionary *const dictionary = local
101 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
112 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
119 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
129 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
137 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
171 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
187 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
265 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
275 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
287 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
304 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
334 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
363 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
388 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
401 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
421 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
439 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
458 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
513 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
529 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
547 Dictionary *dictionary = reinterpret_cast<Dictionary *>(dict); local
    [all...]
  /external/libchrome/base/test/
trace_event_analyzer.cc 37 const base::DictionaryValue* dictionary = local
43 if (!dictionary->GetString("ph", &phase_str)) {
57 if (require_origin && !dictionary->GetInteger("pid", &thread.process_id)) {
61 if (require_origin && !dictionary->GetInteger("tid", &thread.thread_id)) {
65 if (require_origin && !dictionary->GetDouble("ts", &timestamp)) {
70 dictionary->GetDouble("dur", &duration);
72 if (!dictionary->GetString("cat", &category)) {
76 if (!dictionary->GetString("name", &name)) {
80 if (!dictionary->GetDictionary("args", &args)) {
84 if (require_id && !dictionary->GetString("id", &id))
    [all...]
  /external/lzma/xz-embedded/
xz_dec_lzma2.c 29 * Dictionary (history buffer)
41 * in which the dictionary variables address the actual output
44 struct dictionary { struct
55 * How full dictionary is. This is used to detect corrupt input that
64 * End of the dictionary buffer. In multi-call mode, this is
65 * the same as the dictionary size. In single-call mode, this
71 * Size of the dictionary as specified in Block Header. This is used
78 * Maximum allowed dictionary size in multi-call mode.
84 * Amount of memory currently allocated for the dictionary.
241 * True if dictionary reset is needed. This is false befor
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectCreator.java 263 HashMap<String, String> dictionary) {
267 mDictionary = dictionary;
374 final HashMap<String, String> dictionary = new HashMap<String, String>(); local
375 dictionary.put(STRING_APP_NAME, mValues.applicationName);
393 projectData.add(new ProjectInfo(project, description, parameters, dictionary));
439 // create a dictionary of string that will contain name+content.
441 final HashMap<String, String> dictionary = new HashMap<String, String>(); local
442 dictionary.put(STRING_APP_NAME, mValues.applicationName);
456 return new ProjectInfo(project, description, parameters, dictionary);
511 // create a dictionary of string that will contain name+content
513 final HashMap<String, String> dictionary = new HashMap<String, String>(); local
890 final Map<String, String> dictionary = null; local
    [all...]
  /build/core/
Makefile     [all...]
  /external/lz4/lib/
lz4.c 439 const BYTE* dictionary; member in struct:__anon18475
515 const BYTE* const dictionary = dictPtr->dictionary; local
516 const BYTE* const dictEnd = dictionary + dictPtr->dictSize;
579 lowLimit = dictionary;
626 if ((dict==usingExtDict) && (lowLimit==dictionary))
675 lowLimit = dictionary;
780 int LZ4_loadDict (LZ4_stream_t* LZ4_dict, const char* dictionary, int dictSize)
783 const BYTE* p = (const BYTE*)dictionary;
791 dict->dictionary = NULL
    [all...]
  /external/toybox/toys/pending/
xzcat.c 41 * @XZ_MEMLIMIT_ERROR: A bigger LZMA2 dictionary would be needed than
108 * @dict_max: Maximum size of the LZMA2 dictionary (history buffer) for
109 * multi-call decoding. LZMA2 dictionary is always 2^n bytes
112 * In the kernel, dictionary sizes of 64 KiB, 128 KiB, 256 KiB,
115 * dictionary can be fine and useful.
117 * dict_max specifies the maximum allowed dictionary size that xz_dec_run()
118 * may allocate once it has parsed the dictionary size from the stream
219 * Support up to 64 MiB dictionary. The actually needed memory
399 * XZ_OK on success, XZ_MEMLIMIT_ERROR if the preallocated dictionary is not
1216 struct dictionary { struct
    [all...]
  /external/v8/src/arm/
code-stubs-arm.cc 3194 Register dictionary = r0; local
    [all...]

Completed in 1482 milliseconds

12 3 4 5