/external/chromium/chrome/browser/sync/ |
js_arg_list.cc | 42 const std::vector<const Value*>& value_list) { 43 for (std::vector<const Value*>::const_iterator it = value_list.begin(); 44 it != value_list.end(); ++it) {
|
js_arg_list.h | 37 explicit SharedListValue(const std::vector<const Value*>& value_list);
|
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
idl_validator.py | 86 value_list = [value.strip() for value in values_string.split('|')] 87 yield name, value_list 90 for name, value_list in extended_attribute_name_values(): 91 if not value_list: 95 for value in value_list])
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
config.py | 144 value_list = cp.get(section, option) 146 for value_line in value_list.split('\n'): 162 value_list = cp.get(section, option) 163 return list(filter(None, value_list.split('\n')))
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
make_simple.py | 136 def MakeList(value_list, prefix='', quoter=QuoteIfNecessary, initial_indent=0): 140 if not value_list: 143 value_list = [quoter(prefix + l) for l in value_list] 146 for value in value_list: 158 def WriteList(makefile, value_list, variable, prefix='', quoter=QuoteIfNecessary): 159 values = MakeList(value_list, prefix, quoter, initial_indent=len(variable)+4)
|
/external/chromium_org/components/url_matcher/ |
url_matcher_factory.cc | 242 const base::ListValue* value_list = NULL; local 243 if (!value->GetAsList(&value_list)) { 248 for (ListValue::const_iterator i = value_list->begin(); 249 i != value_list->end(); ++i) {
|
/external/chromium_org/chrome/installer/util/ |
master_preferences.cc | 36 const base::ListValue* value_list = NULL; local 37 if (!prefs->GetList(name, &value_list)) 40 list.reserve(value_list->GetSize()); 41 for (size_t i = 0; i < value_list->GetSize(); ++i) { 44 if (!value_list->Get(i, &entry) || !GetURLFromValue(entry, &url_entry)) {
|
/external/chromium_org/build/android/pylib/host_driven/ |
test_info_collection.py | 121 value_list = filters[1].split(',') 122 for value in value_list:
|
/external/clang/utils/ |
ClangDataFormat.py | 149 value_list = frame.GetVariables(True, True, True, True) 150 for val in value_list:
|
/external/chromium_org/build/android/pylib/instrumentation/ |
test_jar.py | 148 value_list = filters[1].split(',') 149 for value in value_list:
|
/external/chromium_org/chrome/test/functional/webdriver_pages/ |
settings.py | 82 value_list = values 84 value_list = [values] 86 assert len(field_list) == len(value_list), \ 89 value_list, len(field_list)) 90 for field, value in zip(field_list, value_list):
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir.cpp | 596 ir_constant::ir_constant(const struct glsl_type *type, exec_list *value_list) 607 foreach_list(node, value_list) { 617 * value_list must be a 1-for-1 match with the structure components. Each 618 * entry must also be a constant. Just move the nodes from the value_list 623 * FINISHME: value_list, or should it make copies? 626 value_list->move_nodes_to(& this->components); 634 ir_constant *value = (ir_constant *) (value_list->head); 696 /* Use each component from each entry in the value_list to initialize one [all...] |
/external/mesa3d/src/glsl/ |
ir.cpp | 596 ir_constant::ir_constant(const struct glsl_type *type, exec_list *value_list) 607 foreach_list(node, value_list) { 617 * value_list must be a 1-for-1 match with the structure components. Each 618 * entry must also be a constant. Just move the nodes from the value_list 623 * FINISHME: value_list, or should it make copies? 626 value_list->move_nodes_to(& this->components); 634 ir_constant *value = (ir_constant *) (value_list->head); 696 /* Use each component from each entry in the value_list to initialize one [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
android.py | [all...] |
make.py | [all...] |
/external/chromium_org/chrome/test/functional/perf/ |
endure_result_parser.py | 224 value_list = [] 226 value_list.append([str(event_time), event_data]) 227 new_events[description] = value_list
|
/external/chromium_org/chrome/test/functional/ |
perf.py | 523 value_list = [] 528 value_list = existing_lines[0]['events'][description] 530 value_list.append([str(event_time), event_data]) 532 description: value_list [all...] |
perf_endure.py | 671 for event_type, value_list in event_type_to_value_list.iteritems(): 672 self._OutputEventGraphValue(event_type, value_list) [all...] |