Home
last modified time | relevance | path

Searched refs:compile (Results 1 – 25 of 5349) sorted by relevance

12345678910>>...214

/external/angle/src/tests/compiler_tests/
DShaderValidation_test.cpp136 if (compile(shaderString)) in TEST_F()
154 if (compile(shaderString)) in TEST_F()
172 if (compile(shaderString)) in TEST_F()
190 if (compile(shaderString)) in TEST_F()
208 if (compile(shaderString)) in TEST_F()
227 if (compile(shaderString)) in TEST_F()
246 if (compile(shaderString)) in TEST_F()
267 if (compile(shaderString)) in TEST_F()
283 if (compile(shaderString)) in TEST_F()
300 if (compile(shaderString)) in TEST_F()
[all …]
DMSLOutput_test.cpp43 compile(shaderString, SH_VARIABLES); in TEST_F()
58 compile(shaderString, SH_VARIABLES); in TEST_F()
73 compile(shaderString, SH_VARIABLES); in TEST_F()
91 compile(shaderString, SH_VARIABLES); in TEST_F()
114 compile(shaderString, SH_VARIABLES); in TEST_F()
133 compile(shaderString, SH_VARIABLES); in TEST_F()
150 compile(shaderString, SH_VARIABLES); in TEST_F()
166 compile(shaderString, SH_VARIABLES); in TEST_F()
181 compile(shaderString, SH_VARIABLES); in TEST_F()
206 compile(shaderString, SH_VARIABLES); in TEST_F()
[all …]
DBufferVariables_test.cpp56 if (!compile(source)) in TEST_F()
71 if (!compile(source)) in TEST_F()
89 if (!compile(source)) in TEST_F()
107 if (!compile(source)) in TEST_F()
123 if (compile(source)) in TEST_F()
141 if (compile(source)) in TEST_F()
158 if (compile(source)) in TEST_F()
176 if (compile(source)) in TEST_F()
194 if (compile(source)) in TEST_F()
212 if (compile(source)) in TEST_F()
[all …]
DGeometryShader_test.cpp38 return compile(sstream.str()); in compileGeometryShader()
48 return compile(sstream.str()); in compileGeometryShader()
133 if (compile(shaderString)) in TEST_F()
149 if (compile(shaderString)) in TEST_F()
166 if (compile(shaderString)) in TEST_F()
184 if (!compile(shaderString)) in TEST_F()
202 if (!compile(shaderString)) in TEST_F()
270 if (compile(shaderString)) in TEST_F()
288 if (compile(shaderString)) in TEST_F()
307 if (!compile(shaderString)) in TEST_F()
[all …]
DQualificationOrder_test.cpp49 if (compile(shaderString)) in TEST_F()
65 if (compile(shaderString)) in TEST_F()
80 if (compile(shaderString)) in TEST_F()
96 if (compile(shaderString)) in TEST_F()
115 if (compile(shaderString)) in TEST_F()
133 if (compile(shaderString)) in TEST_F()
151 if (compile(shaderString)) in TEST_F()
169 if (compile(shaderString)) in TEST_F()
187 if (compile(shaderString)) in TEST_F()
205 if (compile(shaderString)) in TEST_F()
[all …]
DRemoveUnreferencedVariables_test.cpp33 compile(shaderString); in TEST_F()
49 compile(shaderString); in TEST_F()
64 compile(shaderString); in TEST_F()
83 compile(shaderString); in TEST_F()
104 compile(shaderString); in TEST_F()
122 compile(shaderString); in TEST_F()
140 compile(shaderString); in TEST_F()
160 compile(shaderString); in TEST_F()
183 compile(shaderString); in TEST_F()
207 compile(shaderString); in TEST_F()
[all …]
DTypeTracking_test.cpp36 void compile(const std::string &shaderString) in compile() function in TypeTrackingTest
39 bool compilationSuccess = mTranslator->compile(shaderStrings, 1, SH_INTERMEDIATE_TREE); in compile()
88 compile(shaderString); in TEST_F()
102 compile(shaderString); in TEST_F()
116 compile(shaderString); in TEST_F()
132 compile(shaderString); in TEST_F()
156 compile(shaderString); in TEST_F()
177 compile(shaderString); in TEST_F()
193 compile(shaderString); in TEST_F()
213 compile(shaderString); in TEST_F()
[all …]
DSamplerMultisample_test.cpp58 if (!compile(kShaderString)) in TEST_F()
80 if (!compile(kShaderString)) in TEST_F()
96 if (compile(kShaderString)) in TEST_F()
112 if (compile(kShaderString)) in TEST_F()
128 if (compile(kShaderString)) in TEST_F()
145 if (compile(kShaderString)) in TEST_F()
162 if (compile(kShaderString)) in TEST_F()
179 if (compile(kShaderString)) in TEST_F()
196 if (compile(kShaderString)) in TEST_F()
213 if (compile(kShaderString)) in TEST_F()
[all …]
/external/libchrome/libchrome_tools/uprev/
Dfilters.py12 re.compile(rb'base/((?!(allocator|third_party)/).*$)'),
13 re.compile(
16 re.compile(rb'base/third_party/(dynamic_annotation|icu|nspr|valgrind)'),
17 re.compile(rb'build/(android/(gyp/util|pylib/([^/]*$|constants))|[^/]*\.(h|py)$)'),
18 re.compile(rb'mojo/'),
19 re.compile(rb'dbus/'),
20 re.compile(rb'ipc/.*(\.cc|\.h|\.mojom)$'),
21 re.compile(rb'ui/gfx/(gfx_export.h|geometry|range)'),
22 re.compile(rb'testing/[^/]*\.(cc|h)$'),
23 re.compile(rb'third_party/(jinja2|markupsafe|ply)'),
[all …]
/external/starlark-go/starlark/
Dinterp.go101 op := compile.Opcode(code[pc])
104 if op >= compile.OpcodeArgMin {
118 compile.PrintOp(f, fr.pc, op, arg)
122 case compile.NOP:
125 case compile.DUP:
129 case compile.DUP2:
134 case compile.POP:
137 case compile.EXCH:
140 case compile.EQL, compile.NEQ, compile.GT, compile.LT, compile.LE, compile.GE:
141 op := syntax.Token(op-compile.EQL) + syntax.EQL
[all …]
/external/bcc/src/lua/bpf/spec/
Dcodegen_spec.lua18 local function compile(t) function
55 compile {
66 compile {
77 compile {
88 compile {
99 compile {
110 compile {
121 compile {
133 compile {
144 compile {
[all …]
/external/dagger2/javatests/dagger/android/processor/
DAndroidMapKeyValidatorTest.java19 import static com.google.testing.compile.CompilationSubject.assertThat;
20 import static com.google.testing.compile.Compiler.javac;
23 import com.google.testing.compile.Compilation;
24 import com.google.testing.compile.JavaFileObjects;
84 Compilation compilation = compile(module, FOO_ACTIVITY); in rawFactoryType()
100 Compilation compilation = compile(module, FOO_ACTIVITY); in rawBuilderType()
117 Compilation compilation = compile(module, FOO_ACTIVITY); in bindsToBuilderNotFactory()
135 Compilation compilation = compile(module, FOO_ACTIVITY); in providesToBuilderNotFactory()
152 Compilation compilation = compile(module, FOO_ACTIVITY); in bindsToConcreteTypeInsteadOfWildcard()
169 Compilation compilation = compile(module, FOO_ACTIVITY); in bindsToBaseTypeInsteadOfWildcard()
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
DrayQuery-committed.Error.rgen.out2 ERROR: 0:48: 'committed' : argument must be compile-time constant
3 ERROR: 0:53: 'committed' : argument must be compile-time constant
4 ERROR: 0:54: 'committed' : argument must be compile-time constant
5 ERROR: 0:58: 'committed' : argument must be compile-time constant
6 ERROR: 0:62: 'committed' : argument must be compile-time constant
7 ERROR: 0:66: 'committed' : argument must be compile-time constant
8 ERROR: 0:70: 'committed' : argument must be compile-time constant
9 ERROR: 0:74: 'committed' : argument must be compile-time constant
10 ERROR: 0:78: 'committed' : argument must be compile-time constant
11 ERROR: 0:82: 'committed' : argument must be compile-time constant
[all …]
/external/deqp-deps/glslang/Test/baseResults/
DrayQuery-committed.Error.rgen.out2 ERROR: 0:48: 'committed' : argument must be compile-time constant
3 ERROR: 0:53: 'committed' : argument must be compile-time constant
4 ERROR: 0:54: 'committed' : argument must be compile-time constant
5 ERROR: 0:58: 'committed' : argument must be compile-time constant
6 ERROR: 0:62: 'committed' : argument must be compile-time constant
7 ERROR: 0:66: 'committed' : argument must be compile-time constant
8 ERROR: 0:70: 'committed' : argument must be compile-time constant
9 ERROR: 0:74: 'committed' : argument must be compile-time constant
10 ERROR: 0:78: 'committed' : argument must be compile-time constant
11 ERROR: 0:82: 'committed' : argument must be compile-time constant
[all …]
/external/auto/value/src/test/java/com/google/auto/value/processor/
DAutoValueCompilationTest.java19 import static com.google.testing.compile.CompilationSubject.assertThat;
20 import static com.google.testing.compile.CompilationSubject.compilations;
21 import static com.google.testing.compile.Compiler.javac;
27 import com.google.testing.compile.Compilation;
28 import com.google.testing.compile.JavaFileObjects;
121 javac().withProcessors(new AutoValueProcessor()).compile(javaFileObject); in simpleSuccess()
219 javac().withProcessors(new AutoValueProcessor()).compile(javaFileObject); in importTwoWays()
244 .compile(javaFileObject); in testNoWarningsFromGenerics()
352 .compile(annotFileObject, outerFileObject, nestyFileObject); in testNestedParameterizedTypesWithTypeAnnotations()
415 .compile(nullableTypeFileObject, autoValueFileObject); in testTypeParametersWithAnnotationsOnBounds()
[all …]
/external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/processor/
DOperatorProcessorTest.java18 import static com.google.testing.compile.CompilationSubject.assertThat;
20 import com.google.testing.compile.Compilation;
21 import com.google.testing.compile.Compiler;
22 import com.google.testing.compile.JavaFileObjects;
33 Compilation compile = compile("org/tensorflow/processor/operator/good/BasicGood.java"); in basicGood() local
34 assertThat(compile).succeededWithoutWarnings(); in basicGood()
35 assertThat(compile).generatedSourceFile("org.tensorflow.op.Ops"); in basicGood()
40 assertThat(compile("org/tensorflow/processor/operator/bad/BasicBad.java")).failed(); in basicBad()
44 private static Compilation compile(String path) { in compile() method in OperatorProcessorTest
47 .compile( in compile()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/
DTestJsonPointer.java9 JsonPointer ptr = JsonPointer.compile(INPUT); in testSimplePath()
48 JsonPointer ptr = JsonPointer.compile(INPUT); in testSimplePathLonger()
60 JsonPointer ptr = JsonPointer.compile("/1e0"); in testWonkyNumber173()
67 JsonPointer ptr = JsonPointer.compile("/0"); in testIZeroIndex()
69 ptr = JsonPointer.compile("/00"); in testIZeroIndex()
77 JsonPointer ptr = JsonPointer.compile(INPUT); in testLast()
86 assertSame(JsonPointer.EMPTY, JsonPointer.compile("")); in testEmpty()
93 JsonPointer ptr = JsonPointer.compile("/"); in testEmptyName()
102 assertFalse(JsonPointer.empty().equals(JsonPointer.compile("/"))); in testEquality()
104 assertEquals(JsonPointer.compile("/foo/3"), JsonPointer.compile("/foo/3")); in testEquality()
[all …]
/external/dagger2/javatests/dagger/internal/codegen/
DMapMultibindingValidationTest.java19 import static com.google.testing.compile.CompilationSubject.assertThat;
25 import com.google.testing.compile.Compilation;
26 import com.google.testing.compile.JavaFileObjects;
60 .compile( in duplicateMapKeys_UnwrappedMapKey()
77 .compile(module); in duplicateMapKeys_UnwrappedMapKey()
92 .compile( in duplicateMapKeys_UnwrappedMapKey()
107 .compile( in duplicateMapKeys_UnwrappedMapKey()
122 .compile( in duplicateMapKeys_UnwrappedMapKey()
134 compilation = daggerCompiler().compile(module, component("Map<String, Object> objects();")); in duplicateMapKeys_UnwrappedMapKey()
144 .compile(module, component("Map<String, Provider<Object>> objectProviders();")); in duplicateMapKeys_UnwrappedMapKey()
[all …]
DMembersInjectionValidationTest.java19 import static com.google.testing.compile.CompilationSubject.assertThat;
22 import com.google.testing.compile.Compilation;
23 import com.google.testing.compile.JavaFileObjects;
50 Compilation compilation = daggerCompiler().compile(injectsUnboundedType); in membersInjectDependsOnUnboundedType()
73 Compilation compilation = daggerCompiler().compile(component); in membersInjectPrimitive()
94 Compilation compilation = daggerCompiler().compile(component); in membersInjectArray()
116 Compilation compilation = daggerCompiler().compile(component); in membersInjectorOfArray()
138 Compilation compilation = daggerCompiler().compile(component); in membersInjectRawType()
158 Compilation compilation = daggerCompiler().compile(component); in qualifiedMembersInjector()
181 Compilation compilation = daggerCompiler().compile(component); in qualifiedMembersInjectionMethod()
[all …]
DFullBindingGraphValidationTest.java19 import static com.google.testing.compile.CompilationSubject.assertThat;
24 import com.google.testing.compile.Compilation;
25 import com.google.testing.compile.JavaFileObjects;
84 Compilation compilation = daggerCompiler().compile(MODULE_WITH_ERRORS); in moduleWithErrors_validationTypeNone()
92 .compile(MODULE_WITH_ERRORS); in moduleWithErrors_validationTypeError()
108 .compile(MODULE_WITH_ERRORS); in moduleWithErrors_validationTypeWarning()
134 daggerCompiler().compile(MODULE_WITH_ERRORS, INCLUDES_MODULE_WITH_ERRORS); in includesModuleWithErrors_validationTypeNone()
142 .compile(MODULE_WITH_ERRORS, INCLUDES_MODULE_WITH_ERRORS); in includesModuleWithErrors_validationTypeError()
163 .compile(MODULE_WITH_ERRORS, INCLUDES_MODULE_WITH_ERRORS); in includesModuleWithErrors_validationTypeWarning()
226 Compilation compilation = daggerCompiler().compile(A_MODULE, COMBINED_WITH_A_MODULE_HAS_ERRORS); in moduleIncludingModuleWithCombinedErrors_validationTypeNone()
[all …]
/external/catch2/scripts/
Dembed.py3 preprocessorRe = re.compile( r'\s*#.*' )
5 fdefineRe = re.compile( r'\s*#\s*define\s*(\S*)\s*\(' ) # #defines that take arguments
6 defineRe = re.compile( r'\s*#\s*define\s*(\S*)(\s+)(.*)' ) # all #defines
7 undefRe = re.compile( r'\s*#\s*undef\s*(\S*)' ) # all #undefs
9 ifdefCommonRe = re.compile( r'\s*#\s*if' ) # all #ifdefs
10 ifdefRe = re.compile( r'\s*#\s*ifdef\s*(\S*)' )
11 ifndefRe = re.compile( r'\s*#\s*ifndef\s*(\S*)' )
12 endifRe = re.compile( r'\s*#\s*endif\s*//\s*(.*)' )
13 elseRe = re.compile( r'\s*#\s*else' )
14 ifRe = re.compile( r'\s*#\s*if\s+(.*)' )
[all …]
/external/owasp/sanitizer/src/main/org/owasp/html/examples/
DEbayPolicyExample.java65 private static final Pattern COLOR_NAME = Pattern.compile(
70 private static final Pattern COLOR_CODE = Pattern.compile(
73 private static final Pattern NUMBER_OR_PERCENT = Pattern.compile(
75 private static final Pattern PARAGRAPH = Pattern.compile(
77 private static final Pattern HTML_ID = Pattern.compile(
80 private static final Pattern HTML_TITLE = Pattern.compile(
82 private static final Pattern HTML_CLASS = Pattern.compile(
85 private static final Pattern ONSITE_URL = Pattern.compile(
87 private static final Pattern OFFSITE_URL = Pattern.compile(
91 private static final Pattern NUMBER = Pattern.compile(
[all …]
/external/python/cpython2/Lib/test/
Dtest_compiler.py51 self.assertRaises(SyntaxError, compiler.compile,
55 compiler.compile(buf, basename, "exec")
64 compiler.compile("class foo():pass\n\n","<string>","exec")
67 compiler.compile("def g(): yield\n\n", "<string>", "exec")
72 c = compiler.compile('f(x=1, *(2, 3), y=4)', '<string>', 'exec')
80 c = compiler.compile("try:\n 1//0\nexcept:\n e = 1\nfinally:\n f = 1",
91 c = compiler.compile('"doc"', '<string>', 'exec')
93 c = compiler.compile('def f():\n "doc"', '<string>', 'exec')
127 c = compiler.compile('def g():\n'
139 c = compiler.compile('list((i,j) for i in range(3) if i < 3'
[all …]
/external/owasp/sanitizer/src/tests/org/owasp/html/
DCssFuzzerTest.java182 CssTokens.TokenType.AT, Pattern.compile("@" + IDENT)); in TOKEN_TYPE_FILTERS.put()
184 CssTokens.TokenType.COLON, Pattern.compile(":")); in TOKEN_TYPE_FILTERS.put() argument
186 CssTokens.TokenType.COLUMN, Pattern.compile("\\|\\|")); in TOKEN_TYPE_FILTERS.put()
188 CssTokens.TokenType.COMMA, Pattern.compile(",")); in TOKEN_TYPE_FILTERS.put() argument
191 Pattern.compile("[^\\w\u0000- \u0080-\uffff\\-]")); in TOKEN_TYPE_FILTERS.put()
193 CssTokens.TokenType.DIMENSION, Pattern.compile(NUMBER + "[a-z]+")); in TOKEN_TYPE_FILTERS.put()
195 CssTokens.TokenType.DOT_IDENT, Pattern.compile("\\." + IDENT)); in TOKEN_TYPE_FILTERS.put()
197 CssTokens.TokenType.FUNCTION, Pattern.compile(IDENT + "[(]")); in TOKEN_TYPE_FILTERS.put()
199 CssTokens.TokenType.HASH_ID, Pattern.compile("#" + IDENT_PART + "+")); in TOKEN_TYPE_FILTERS.put()
202 Pattern.compile("#[a-fA-F0-9]+")); in TOKEN_TYPE_FILTERS.put()
[all …]
/external/connectedappssdk/tests/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/
DCrossProfileCallbackTest.java33 import static com.google.testing.compile.CompilationSubject.assertThat;
34 import static com.google.testing.compile.Compiler.javac;
38 import com.google.testing.compile.Compilation;
39 import com.google.testing.compile.JavaFileObjects;
96 Compilation compilation = javac().withProcessors(new Processor()).compile(callbackInterface); in crossProfileCallbackInterface_compiles()
112 Compilation compilation = javac().withProcessors(new Processor()).compile(callbackInterface); in crossProfileCallbackInterface_defaultPackage_hasError()
132 Compilation compilation = javac().withProcessors(new Processor()).compile(callbackInterface); in crossProfileCallbackInterface_notInterface_hasError()
150 Compilation compilation = javac().withProcessors(new Processor()).compile(callbackInterface); in crossProfileCallbackInterface_noMethods_hasError()
170 Compilation compilation = javac().withProcessors(new Processor()).compile(callbackInterface); in crossProfileCallbackInterface_simple_moreThanOneMethod_hasError()
190 Compilation compilation = javac().withProcessors(new Processor()).compile(callbackInterface); in crossProfileCallbackInterface_moreThanOneMethod_compiles()
[all …]

12345678910>>...214