/external/chromium_org/media/formats/webm/ |
webm_parser.cc | 24 LIST, // Referred to as Master Element in the Matroska spec. 46 // appear in the list, a parsing error is signalled. Some elements are 60 {LIST, kWebMIdSeekHead}, 61 {LIST, kWebMIdInfo}, 62 {LIST, kWebMIdCluster}, 63 {LIST, kWebMIdTracks}, 64 {LIST, kWebMIdCues}, 65 {LIST, kWebMIdAttachments}, 66 {LIST, kWebMIdChapters}, 67 {LIST, kWebMIdTags} [all...] |
/external/chromium_org/tools/gn/ |
function_process_file_template_unittest.cc | 14 Value sources(NULL, Value::LIST); 26 ASSERT_TRUE(result.type() == Value::LIST); 37 Value sources(NULL, Value::LIST); 42 Value expansions(NULL, Value::LIST); 54 ASSERT_TRUE(result.type() == Value::LIST);
|
value.h | 27 LIST, 86 DCHECK(type_ == LIST); 90 DCHECK(type_ == LIST);
|
visibility_unittest.cc | 12 Value list(NULL, Value::LIST); 13 list.list_value().push_back(Value(NULL, "//rec/*")); // Recursive. 14 list.list_value().push_back(Value(NULL, "//dir:*")); // One dir. 15 list.list_value().push_back(Value(NULL, "//my:name")); // Exact match. 19 ASSERT_TRUE(vis.Set(SourceDir("//"), list, &err)); 37 Value list(NULL, Value::LIST); 38 list.list_value().push_back(Value(NULL, "*")); 39 ASSERT_TRUE(vis.Set(SourceDir("//"), list, &err)) [all...] |
function_process_file_template.cc | 18 "process_file_template: Do template expansion over a list of files."; 20 "process_file_template: Do template expansion over a list of files.\n" 24 " process_file_template applies a template list to a source file list,\n" 35 " The source_list is a list of file names.\n" 37 " The template can be a string or a list. If it is a list, multiple\n" 41 " the source list is applied. See \"gn help source_expansion\".\n" 69 // Source list. 83 std::vector<std::string> list; local [all...] |
value_unittest.cc | 18 Value listval(NULL, Value::LIST);
|
operators_unittest.cc | 25 // Returns a list populated with a single literal Value corresponding to the 26 // given token. The token must outlive the list (since the list will just 29 scoped_ptr<ListNode> list(new ListNode); 30 list->append_item(scoped_ptr<ParseNode>(new LiteralNode(token))); 31 return list.Pass(); 40 // Set up "sources" with an empty list. 42 setup.scope()->SetValue(sources, Value(NULL, Value::LIST), NULL); 80 // Append a list with the two strings from above. 81 ListNode list; local [all...] |
substitution_list.cc | 18 if (!value.VerifyTypeIs(Value::LIST, err))
|
operators.cc | 19 // of source (can be a list or a string), appending it to dest if it doesn't 32 if (source.type() != Value::LIST) { 33 // Any non-list and non-string being added to a list can just get appended, 76 Value* list, 79 std::vector<Value>& v = list->list_value(); 96 "\nfrom the list but it wasn't there."); 101 case Value::LIST: // Filter out each individual thing. 103 // TODO(brettw) if the nested item is a list, we may want to search 104 // for the literal list rather than remote the items in it [all...] |
function_get_path_info.cc | 114 " directory name, or a list of such strings. If the input is a list\n" 115 " the return value will be a list containing the result of applying the\n" 222 } else if (args[0].type() == Value::LIST) { 224 Value result(function, Value::LIST); 235 *err = Err(args[0], "Path must be a string or a list of strings.");
|
function_get_target_outputs_unittest.cc | 33 // Asserts that the given list contains a single string with the given value. 34 void AssertSingleStringEquals(const Value& list, 36 ASSERT_TRUE(list.type() == Value::LIST); 37 ASSERT_EQ(1u, list.list_value().size()); 38 ASSERT_TRUE(list.list_value()[0].type() == Value::STRING); 39 ASSERT_EQ(expected, list.list_value()[0].string_value()); 42 void AssertTwoStringsEqual(const Value& list, 45 ASSERT_TRUE(list.type() == Value::LIST); [all...] |
function_rebase_path.cc | 119 " Takes a string argument representing a file name, or a list of such\n" 144 " A string or list of strings representing file or directory names\n" 173 " string or a list of strings). All relative and source-absolute file\n" 259 } else if (inputs.type() == Value::LIST) { 260 result = Value(function, Value::LIST); 276 "rebase_path requires a list or a string.");
|
function_rebase_path_unittest.cc | 81 // Test list input. 82 TEST(RebasePath, List) { 88 args.push_back(Value(NULL, Value::LIST)); 99 ASSERT_EQ(Value::LIST, ret.type());
|
function_foreach.cc | 19 "foreach: Iterate over a list."; 21 "foreach: Iterate over a list.\n" 23 " foreach(<loop_var>, <list>) {\n" 27 " Executes the loop contents block over each item in the list,\n" 68 // Extract the list, avoid a copy if it's an identifier (common case). 86 if (!list_value->VerifyTypeIs(Value::LIST, err)) 88 const std::vector<Value>& list = list_value->list_value(); local 104 for (size_t i = 0; i < list.size(); i++) { 105 scope->SetValue(loop_var, list[i], function);
|
function_get_target_outputs.cc | 17 "get_target_outputs: [file list] Get the list of outputs from a target."; 19 "get_target_outputs: [file list] Get the list of outputs from a target.\n" 23 " Returns a list of output files for the named target. The named target\n" 36 " The names in the resulting list will be absolute file paths (normally\n" 48 " binary targets (executables, libraries): this will return a list\n" 54 " source sets and groups: this will return a list containing the path of\n" 119 // Compute the output list. 133 Value ret(function, Value::LIST); [all...] |
function_write_file.cc | 28 " If data is a list, the list will be written one-item-per-line with no\n" 36 " list formatting.\n" 44 " The list or string to write.\n"; 68 if (args[1].type() == Value::LIST) { 69 const std::vector<Value>& list = args[1].list_value(); local 70 for (size_t i = 0; i < list.size(); i++) 71 contents << list[i].ToString(false) << std::endl;
|
input_conversion_unittest.cc | 52 Value(NULL, "list lines"), &err); 54 EXPECT_EQ(Value::LIST, result.type()); 63 Value(NULL, "trim list lines"), &err); 65 EXPECT_EQ(Value::LIST, result.type()); 97 ASSERT_EQ(Value::LIST, result.type());
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
check-for-exit-time-destructors | 10 # notice, this list of conditions and the following disclaimer. 12 # notice, this list of conditions and the following disclaimer in the 58 my $list = $ENV{"LINK_FILE_LIST_${variant}_${arch}"}; 60 if (!open LIST, $list) { 61 print "ERROR: Could not open $list\n"; 65 my @files = <LIST>; 67 close LIST; 90 print STDERR if $_ ne "nm: no name list\n";
|
check-for-global-initializers | 10 # notice, this list of conditions and the following disclaimer. 12 # notice, this list of conditions and the following disclaimer in the 58 my $list = $ENV{"LINK_FILE_LIST_${variant}_${arch}"}; 60 if (!open LIST, $list) { 61 print "ERROR: Could not open $list\n"; 65 my @files = <LIST>; 67 close LIST; 91 print STDERR if $_ ne "nm: no name list\n";
|
/external/libnl/include/netlink/ |
object-api.h | 142 * // a comparison function and define a list of attributes which 168 * // list is used when caches look for an old version of an object. 234 * @arg LIST list of attributes to be compared 253 #define ATTR_DIFF(LIST, ATTR, A, B, EXPR) \ 255 if (((LIST) & (ATTR)) && ATTR_MISMATCH(A, B, ATTR, EXPR)) \ 274 /* List of attributes needed to uniquely identify the object */
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ElemDesc.java | 98 /** Bit position if this element type is a list. */ 99 static final int LIST = (1 << 19);
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
s_expression.h | 31 #include "list.h" 36 #define SX_AS_LIST(x) SX_AS_(list, x) 42 #define MATCH(list, pat) s_match(list, Elements(pat), pat, false) 43 #define PARTIAL_MATCH(list, pat) s_match(list, Elements(pat), pat, true) 157 s_pattern(s_list *&s) : p_list(&s), type(LIST) { } 174 enum { EXPR, LIST, SYMBOL, NUMBER, INT, STRING } type;
|
/external/mesa3d/src/glsl/ |
s_expression.h | 31 #include "list.h" 36 #define SX_AS_LIST(x) SX_AS_(list, x) 42 #define MATCH(list, pat) s_match(list, Elements(pat), pat, false) 43 #define PARTIAL_MATCH(list, pat) s_match(list, Elements(pat), pat, true) 157 s_pattern(s_list *&s) : p_list(&s), type(LIST) { } 174 enum { EXPR, LIST, SYMBOL, NUMBER, INT, STRING } type;
|
/external/bison/lib/ |
bbitset.h | 34 BITSET_LIST: Linked list of arrays of bits (variable size, least storage 150 bitset_bindex (*list) (bitset, bitset_bindex *, bitset_bindex, member in struct:bitset_vtable 269 /* Find list of up to NUM bits set in BSET starting from and including 272 #define BITSET_LIST_(BSET, LIST, NUM, NEXT) \ 273 (BSET)->b.vtable->list (BSET, LIST, NUM, NEXT) 275 /* Find reverse list of up to NUM bits set in BSET starting from and 278 #define BITSET_LIST_REVERSE_(BSET, LIST, NUM, NEXT) \ 279 (BSET)->b.vtable->list_reverse (BSET, LIST, NUM, NEXT)
|
bitset.h | 70 struct lbitset_elt_struct *head; /* First element in linked list. */ 71 struct lbitset_elt_struct *tail; /* Last element in linked list. */ 93 bitset_bindex list[BITSET_LIST_SIZE]; member in struct:__anon4940 270 /* Find list of up to NUM bits set in BSET starting from and including 273 #define bitset_list(BSET, LIST, NUM, NEXT) \ 274 BITSET_LIST_ (BSET, LIST, NUM, NEXT) 276 /* Find reverse list of up to NUM bits set in BSET starting from and 279 #define bitset_list_reverse(BSET, LIST, NUM, NEXT) \ 280 BITSET_LIST_REVERSE_ (BSET, LIST, NUM, NEXT) 318 && (ITER.num = bitset_list (BSET, ITER.list, \ [all...] |