HomeSort by relevance Sort by last modified time
    Searched defs:simple (Results 51 - 75 of 234) sorted by null

1 23 4 5 6 7 8 910

  /external/clang/test/CodeGenCXX/
microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp 34 namespace simple { namespace
51 // A simple vtordisp{x,y} thunk for Method@Class is something like:
57 // CHECK-LABEL: VFTable for 'V1' in 'simple::A' (2 entries).
58 // CHECK-NEXT: 0 | void simple::A::f()
60 // CHECK-NEXT: 1 | simple::A::~A() [scalar deleting]
63 // CHECK-LABEL: Thunks for 'simple::A::~A()' (1 entry).
66 // CHECK-LABEL: Thunks for 'void simple::A::f()' (1 entry).
70 // MANGLING-DAG: @"\01?f@A@simple@@$4PPPPPPPM@A@AEXXZ"
73 // MANGLING-DAG: @"\01??_EA@simple@@$4PPPPPPPM@A@AEPAXI@Z"
80 // CHECK-LABEL: VFTable for 'Z' in 'V3' in 'simple::B' (2 entries)
    [all...]
  /external/clang/test/OpenMP/
for_simd_codegen.cpp 13 // CHECK-LABEL: define {{.*void}} @{{.*}}simple{{.*}}(float* {{.+}}, float* {{.+}}, float* {{.+}}, float* {{.+}})
14 void simple(float *a, float *b, float *c, float *d) { function
parallel_for_simd_codegen.cpp 13 // CHECK-LABEL: define {{.*void}} @{{.*}}simple{{.*}}(float* {{.+}}, float* {{.+}}, float* {{.+}}, float* {{.+}})
14 void simple(float *a, float *b, float *c, float *d) { function
simd_codegen.cpp 15 // CHECK-LABEL: define {{.*void}} @{{.*}}simple{{.*}}(float* {{.+}}, float* {{.+}}, float* {{.+}}, float* {{.+}})
16 void simple(float *a, float *b, float *c, float *d) { function
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/legacy_flags/
parse_flags_from_env_test.cc 56 bool simple = false; local
62 tensorflow::Flag("simple", &simple, ""),
74 CHECK(simple) << msg;
83 "--simple "
  /external/testng/src/test/java/test/simple/
IncludedExcludedTest.java 1 package test.simple;
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/selection/simple/
SimpleSelectionDemoAdapter.java 17 package com.example.android.supportv7.widget.selection.simple;
SimpleSelectionDemoActivity.java 17 package com.example.android.supportv7.widget.selection.simple;
77 "simple-demo",
  /prebuilts/go/darwin-x86/src/runtime/
asm_ppc64x.s 836 BNE simple // leftover bytes
842 BNE simple // do simple compare
846 simple: label
852 BC 8,2,simple // bc ctr <> 0 && cr
941 BNE simple // leftover bytes
947 BNE simple // do simple compare
951 simple: label
957 BC 8,2,simple // bc ctr <> 0 && c
1033 simple: label
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
asm_ppc64x.s 836 BNE simple // leftover bytes
842 BNE simple // do simple compare
846 simple: label
852 BC 8,2,simple // bc ctr <> 0 && cr
941 BNE simple // leftover bytes
947 BNE simple // do simple compare
951 simple: label
957 BC 8,2,simple // bc ctr <> 0 && c
1033 simple: label
    [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/simple/
SimpleTvInputService.java 17 package com.example.android.sampletvinput.simple;
34 * Simple TV input service which provides two sample channels.
36 * NOTE: The purpose of this sample is to provide a really simple TV input sample to the developers
49 * Simple session implementation which plays local videos on the application's tune request.
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/simple/
BasicService.java 16 package com.example.android.autofill.service.simple;
52 * <p>The goal of this class is to provide a simple autofill service implementation that is easy
62 * Number of datasets sent on each request - we're simple, that value is hardcoded in our DNA!
93 // We're simple - our dataset values are hardcoded as "hintN" (for example,
108 // We're simple, so we're generic
146 // We're simple, we just autofill text fields.
179 // We're simple, we only care about the first hint
  /external/ImageMagick/coders/
fits.c 116 if (LocaleNCompare((const char *) magick,"SIMPLE",6) == 0)
234 simple;
312 fits_info.simple=MagickFalse;
357 if (LocaleCompare(keyword,"simple") == 0)
358 fits_info.simple=(*p == 'T') || (*p == 't') ? MagickTrue : MagickFalse;
404 if ((fits_info.simple != MagickFalse) && (fits_info.number_axes >= 1) &&
420 if ((fits_info.simple == MagickFalse) || (fits_info.number_axes < 1) ||
676 "SIMPLE = T");
229 simple; member in struct:_FITSInfo
  /external/clang/test/Analysis/
array-struct-region.c 46 struct simple { int x; int y; }; struct
47 struct simple a;
48 struct simple *p = &a;
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 8 void simple() { function
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 4 int simple : I; // expected-error{{bit-field 'simple' has zero width}} member in struct:Bitfields
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
keymap-dump.c 493 bool simple = true; local
510 simple = false;
535 simple = false;
559 simple = false;
561 if (simple) {
  /external/turbine/java/com/google/turbine/binder/
DisambiguateTypeAnnotations.java 200 SimpleClassTy simple = local
204 .add(simple)
  /external/turbine/javatests/com/google/turbine/deps/
DependenciesTest.java 125 public void simple() throws Exception { method in class:DependenciesTest
  /external/deqp/modules/egl/
teglMakeCurrentPerfTests.cpp 554 // Add simple test group
556 TestCaseGroup* simple = new TestCaseGroup(m_eglTestCtx, "simple", "Simple eglMakeCurrent performance tests using single context and surface"); local
577 simple->addChild(new MakeCurrentPerfCase(m_eglTestCtx, spec, spec.toName().c_str(), spec.toDescription().c_str()));
581 addChild(simple);
  /external/icu/icu4c/source/test/cintltst/
cstrcase.c 412 simple[]={ local
443 /* test simple case folding */
444 p=simple;
445 for(i=0; i<sizeof(simple)/12; p+=3, ++i) {
    [all...]
  /external/python/cpython3/Lib/test/
test_dis.py 868 def simple(): pass function
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
ClearAllTablesTest.java 129 public void simple() { method in class:ClearAllTablesTest
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
  /external/clang/test/Index/
print-type-size.cpp 16 // CHECK64: StructDecl=simple:[[@LINE+2]]:8 (Definition) [type=basic::simple] [typekind=Record] [sizeof=48] [alignof=8]
17 // CHECK32: StructDecl=simple:[[@LINE+1]]:8 (Definition) [type=basic::simple] [typekind=Record] [sizeof=36] [alignof=4]
18 struct simple { struct in namespace:basic
45 struct simple s1;
48 // CHECK64: VarDecl=s1:[[@LINE+2]]:8 (Definition) [type=basic::simple] [typekind=Record] [sizeof=48] [alignof=8]
49 // CHECK32: VarDecl=s1:[[@LINE+1]]:8 (Definition) [type=basic::simple] [typekind=Record] [sizeof=36] [alignof=4]
50 simple s1;

Completed in 1143 milliseconds

1 23 4 5 6 7 8 910