| /external/deqp-deps/SPIRV-Tools/test/opt/loop_optimizations/ |
| loop_fission.cpp | 20 #include "source/opt/loop_fission.h" 21 #include "source/opt/loop_unroller.h" 22 #include "source/opt/loop_utils.h" 23 #include "source/opt/pass.h" 67 const std::string source = R"(OpCapability Shader local 192 BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, source, 196 << source << std::endl; 199 SinglePassRunAndCheck<LoopFissionPass>(source, expected, true); 204 source, source, true 229 const std::string source = R"(OpCapability Shader local 316 const std::string source = R"(OpCapability Shader local 425 const std::string source = R"( local 736 const std::string source = R"(OpCapability Shader local 918 const std::string source = R"(OpCapability Shader local 1099 const std::string source = R"( local 1309 const std::string source = R"(OpCapability Shader local 1427 const std::string source = R"( local 1652 const std::string source = R"(OpCapability Shader local 1898 const std::string source = R"(OpCapability Shader local 1992 const std::string source = R"(OpCapability Shader local 2099 const std::string source = R"(OpCapability Shader local 2289 const std::string source = R"(OpCapability Shader local 2445 const std::string source = R"(OpCapability Shader local 2551 const std::string source = R"(OpCapability Shader local 2674 const std::string source = R"(OpCapability Shader local 2966 const std::string source = R"(OpCapability Shader local [all...] |
| /external/deqp-deps/SPIRV-Tools/test/reduce/ |
| remove_opname_instruction_reduction_pass_test.cpp | 17 #include "source/opt/build_module.h" 18 #include "source/reduce/reduction_opportunity.h" 19 #include "source/reduce/remove_opname_instruction_reduction_pass.h" 26 const std::string source = R"( local 44 BuildModule(env, consumer, source, kReduceAssembleOption);
|
| /external/desugar/java/com/google/devtools/common/options/ |
| OptionInstanceOrigin.java | 24 @Nullable private final String source; field in class:OptionInstanceOrigin 30 String source, 34 this.source = source; 45 return source;
|
| /external/google-fruit/ |
| conanfile.py | 35 def source(self): member in class:FruitConan
|
| /external/guava/guava-testlib/src/com/google/common/collect/testing/features/ |
| ConflictingRequirementsException.java | 32 private Object source; field in class:ConflictingRequirementsException 35 String message, Set<Feature<?>> conflicts, Object source) { 38 this.source = source; 46 return source; 50 return super.getMessage() + " (source: " + source + ")";
|
| /external/guice/core/src/com/google/inject/internal/ |
| ExposureBuilder.java | 28 private final Object source; field in class:ExposureBuilder 31 public ExposureBuilder(Binder binder, Object source, Key<T> key) { 33 this.source = source; 62 return source;
|
| InternalFactoryToProviderAdapter.java | 28 private final Object source; field in class:InternalFactoryToProviderAdapter 30 public InternalFactoryToProviderAdapter(Provider<? extends T> provider, Object source) { 32 this.source = checkNotNull(source, "source"); 41 InternalProvisionException.onNullInjectedIntoNonNullableDependency(source, dependency); 45 throw InternalProvisionException.errorInProvider(userException).addSource(source);
|
| ProviderInternalFactory.java | 32 protected final Object source; field in class:ProviderInternalFactory 34 ProviderInternalFactory(Object source) { 35 this.source = checkNotNull(source, "source"); 87 InternalProvisionException.onNullInjectedIntoNonNullableDependency(source, dependency);
|
| SingleParameterInjector.java | 27 private final Object source; field in class:SingleParameterInjector 33 this.source = binding.getSource(); 39 Dependency previous = context.pushDependency(localDependency, source);
|
| /external/guice/core/src/com/google/inject/spi/ |
| DependencyAndSource.java | 26 * A combination of a {@link Dependency} and the {@link Binding#getSource() source} where the 38 private final Object source; field in class:DependencyAndSource 40 public DependencyAndSource(Dependency<?> dependency, Object source) { 42 this.source = source; 58 * there is no valid binding source, so this describes the class in question. 61 if (source instanceof Class) { 62 return StackTraceElements.forType((Class) source).toString(); 63 } else if (source instanceof Member) { 64 return StackTraceElements.forMember((Member) source).toString() 73 Object source = getBindingSource(); local [all...] |
| InjectionRequest.java | 39 private final Object source; field in class:InjectionRequest 43 public InjectionRequest(Object source, TypeLiteral<T> type, T instance) { 44 this.source = checkNotNull(source, "source"); 51 return source;
|
| InterceptorBinding.java | 45 private final Object source; field in class:InterceptorBinding 51 Object source, 55 this.source = checkNotNull(source, "source"); 63 return source;
|
| ModuleAnnotatedMethodScannerBinding.java | 31 private final Object source; field in class:ModuleAnnotatedMethodScannerBinding 34 public ModuleAnnotatedMethodScannerBinding(Object source, ModuleAnnotatedMethodScanner scanner) { 35 this.source = checkNotNull(source, "source"); 41 return source; 64 + Errors.convert(source)
|
| ProvisionListenerBinding.java | 34 private final Object source; field in class:ProvisionListenerBinding 39 Object source, Matcher<? super Binding<?>> bindingMatcher, ProvisionListener[] listeners) { 40 this.source = source; 59 return source;
|
| ScopeBinding.java | 38 private final Object source; field in class:ScopeBinding 42 ScopeBinding(Object source, Class<? extends Annotation> annotationType, Scope scope) { 43 this.source = checkNotNull(source, "source"); 50 return source;
|
| StaticInjectionRequest.java | 37 private final Object source; field in class:StaticInjectionRequest 40 StaticInjectionRequest(Object source, Class<?> type) { 41 this.source = checkNotNull(source, "source"); 47 return source;
|
| TypeConverterBinding.java | 39 private final Object source; field in class:TypeConverterBinding 45 Object source, Matcher<? super TypeLiteral<?>> typeMatcher, TypeConverter typeConverter) { 46 this.source = checkNotNull(source, "source"); 53 return source; 80 + Errors.convert(source)
|
| TypeListenerBinding.java | 35 private final Object source; field in class:TypeListenerBinding 40 Object source, TypeListener listener, Matcher<? super TypeLiteral<?>> typeMatcher) { 41 this.source = source; 58 return source;
|
| /external/guice/extensions/grapher/src/com/google/inject/grapher/ |
| Node.java | 29 * When set to true, the source object is ignored in {@link #equals} and {@link #hashCode}. Only 35 private final Object source; field in class:Node 37 protected Node(NodeId id, Object source) { 39 this.source = source; 47 return source; 57 && (ignoreSourceInComparisons || Objects.equal(source, other.source)); 62 return ignoreSourceInComparisons ? id.hashCode() : Objects.hashCode(id, source);
|
| /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/ |
| IsEventFrom.java | 15 private final Object source; field in class:IsEventFrom 17 public IsEventFrom(Class<?> eventClass, Object source) { 19 this.source = source; 30 mismatchDescription.appendText("source was ").appendValue(item.getSource()); 38 return ev.getSource() == source; 46 .appendValue(source); 51 * derived from <var>eventClass</var> announced by <var>source</var>. 57 * @param source 58 * the source of the even [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
| RegexUtilitiesTest.java | 1 /* GENERATED SOURCE. DO NOT MODIFY. */ 54 final String source = tests[i][0]; local 55 String expected = tests[i].length == 1 ? source : tests[i][1]; 56 String actual = UnicodeRegex.fix(source); 57 assertEquals(source, expected, actual); 238 final String source = tests[i][0]; 240 String actual = regex.transform(source); 241 assertEquals(source, expected, actual);
|
| /external/icu/icu4c/source/common/ |
| ucnv_cb.cpp | 38 const char* source, 49 source, length, 57 const UChar** source, 86 source, 103 In fact, here's where we want to return the partially consumed in-source! 106 /* && (*source < sourceLimit && args->target >= args->targetLimit) 141 source, 203 const UChar *source = (const UChar *)converter->subChars; local 204 ucnv_cbFromUWriteUChars(args, &source, source - length, offsetIndex, err) [all...] |
| /external/icu/icu4c/source/common/unicode/ |
| caniter.h | 78 * @param source string to get results for 82 CanonicalIterator(const UnicodeString &source, UErrorCode &status); 91 * Gets the NFD form of the current source we are iterating over. 92 * @return gets the source: NOTE: it is the NFD form of source 113 * Set a new source for this iterator. Allows object reuse. 114 * @param newSource the source string to iterate against. This allows the same iterator to be used 115 * while changing the source string, saving object creation. 125 * @param source the string to find permutations for 131 static void U_EXPORT2 permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCode &status) 167 UnicodeString source; member in class:U_FINAL [all...] |
| /external/icu/icu4c/source/i18n/ |
| tridpars.h | 33 * A basic ID, which contains source, target, and variant, but no 58 * 'source' and 'target' will always be non-null. The 'variant' 61 * 'sawSource' is true if there was an explicit source in the 62 * parsed id. If there was no explicit source, then an implied 63 * source of ANY is returned and 'sawSource' is set to false. 70 UnicodeString source; // not null member in class:TransliteratorIDParser::Specs 219 * S-T/V, or S/V-T. If the source is missing, return a source of 222 * @param source the given source [all...] |
| /external/icu/icu4c/source/test/cintltst/ |
| ccurrtst.c | 102 UChar source[2], target[2]; local 124 u_strcpy(source, currency[i]); 140 compareResult = ucol_strcoll(c, source, u_strlen(source), target, u_strlen(target)); 144 sortklen=ucol_getSortKey(c, source, u_strlen(source), NULL, 0); 146 ucol_getSortKey(c, source, u_strlen(source), sortKey1, sortklen+1); 157 reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, compareResult, expectedResult );
|