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

  /external/chromium_org/chrome/common/extensions/docs/server2/
docs_server_utils.py 36 def MarkFirst(dicts):
37 '''Adds a property 'first' == True to the first element in a list of dicts.
39 if len(dicts) > 0:
40 dicts[0]['first'] = True
42 def MarkLast(dicts):
43 '''Adds a property 'last' == True to the last element in a list of dicts.
45 if len(dicts) > 0:
46 dicts[-1]['last'] = True
48 def MarkFirstAndLast(dicts):
49 '''Marks the first and last element in a list of dicts
    [all...]
  /external/chromium_org/chromeos/network/onc/
onc_merger.cc 84 // For each path in any of the dictionaries |dicts|, the function
89 DictionaryPtr MergeDictionaries(const DictPtrs &dicts) {
92 for (DictPtrs::const_iterator it_outer = dicts.begin();
93 it_outer != dicts.end(); ++it_outer) {
106 for (DictPtrs::const_iterator it_inner = dicts.begin();
107 it_inner != dicts.end(); ++it_inner) {
118 for (DictPtrs::const_iterator it_inner = dicts.begin();
119 it_inner != dicts.end(); ++it_inner) {
138 // values is the same as of the given dictionaries |dicts|. If a dictionary
145 const DictPtrs &dicts) {
    [all...]
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
writable_expectations.py 75 logging.info('Reading in dicts from writable Skia checkout in %s ...' %
77 dicts = results.BaseComparisons.read_dicts_from_root(self.root)
79 # Make sure we have expected-results sections in all our output dicts.
80 for pathname, adict in dicts.iteritems():
93 dicts[pathname] = adict
102 dict_to_modify = dicts[dictname][gm_json.JSONKEY_EXPECTEDRESULTS]
117 self._write_dicts_to_root(meta_dict=dicts, root=self.root)
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
compute_global_objects.py 48 def dict_union(dicts):
49 return dict((k, v) for d in dicts for k, v in d.iteritems())
v8_interface.py 536 internally as dicts, which can't be stored in a set because they are not
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryProvider.java 360 final HashMap<String, WordListInfo> dicts = new HashMap<>(); local
420 final WordListInfo currentBestMatch = dicts.get(wordListCategory);
423 dicts.put(wordListCategory, new WordListInfo(wordListId, wordListLocale,
428 return Collections.unmodifiableCollection(dicts.values());
  /external/chromium_org/gpu/tools/
check_gpu_bots.py 339 dicts = []
342 dicts.append(bot.toDict())
344 return dicts
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DictionaryInfoUtils.java 132 return context.getFilesDir() + File.separator + "dicts";
346 File[] dicts = BinaryDictionaryGetter.getCachedWordLists(localeString, context); local
347 for (final File dict : dicts) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
trace.py 552 dicts = [d for d in gc.get_referrers(funcs[0])
554 if len(dicts) == 1:
555 classes = [c for c in gc.get_referrers(dicts[0])
pydoc.py 492 def namelink(self, name, *dicts):
494 for dict in dicts:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
trace.py 552 dicts = [d for d in gc.get_referrers(funcs[0])
554 if len(dicts) == 1:
555 classes = [c for c in gc.get_referrers(dicts[0])
pydoc.py 492 def namelink(self, name, *dicts):
494 for dict in dicts:
    [all...]
  /external/lldb/test/
lldbtest.py 892 self.dicts = []
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]

Completed in 1265 milliseconds