Searched defs:typed (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DVersionGLSL.cpp101 TIntermTyped *typed = sequence.front()->getAsTyped(); local
102 if (typed && typed->isMatrix())
H A DParseContext.cpp549 TIntermTyped *typed = node ? node->getAsTyped() : 0; local
550 if (typed == 0) {
554 if (op != EOpConstructStruct && IsSampler(typed->getBasicType())) {
558 if (typed->getBasicType() == EbtVoid) {
1599 // Returns 0 for an error or the constructed node (aggregate or typed) for no error.
/external/chromium_org/chrome/browser/history/
H A Dtyped_url_syncable_service_unittest.cc91 // Create a new row object and add a typed visit to the |visits| vector.
94 // in visits does not match |last_visit|, then a typed visit for this
166 // Add a typed visit for time |last_visit|.
171 // Add a non-typed visit for time |last_visit|.
242 int typed = i < num_typed_urls ? 1 : 0; local
246 urls[i], "pie", typed, i + 3, false, &visit_vectors->back()));
261 // Create a local typed URL (simulate a typed visit) that is not already
280 // Get typed url specifics.
309 // Update the URL row, adding another typed visi
[all...]
/external/doclava/src/com/google/doclava/
H A DTypeInfo.java476 public static Map<String, TypeInfo> getTypeArgumentMapping(TypeInfo generic, TypeInfo typed) { argument
479 if (typed.typeArguments() != null && typed.typeArguments().size() > i) {
480 map.put(generic.typeArguments().get(i).fullName(), typed.typeArguments().get(i));
490 public static Map<String, TypeInfo> getTypeArgumentMapping(ClassInfo cls, TypeInfo typed) { argument
491 return getTypeArgumentMapping(cls.asTypeInfo(), typed);

Completed in 149 milliseconds