Home
last modified time | relevance | path

Searched refs:hasProperty (Results 1 – 25 of 91) sorted by relevance

1234

/third_party/skia/experimental/sktext/tests/
DUnicodeText.cpp66 …REPORTER_ASSERT(reporter, unicodeText16.hasProperty(i, CodeUnitFlags::kHardLineBreakBefore), "Pos1… in UNIX_ONLY_TEST()
67 …REPORTER_ASSERT(reporter, unicodeText8 .hasProperty(i, CodeUnitFlags::kHardLineBreakBefore), "Pos8… in UNIX_ONLY_TEST()
69 …REPORTER_ASSERT(reporter, unicodeText16.hasProperty(i, CodeUnitFlags::kGraphemeStart), "Pos16 %d s… in UNIX_ONLY_TEST()
70 …REPORTER_ASSERT(reporter, unicodeText8 .hasProperty(i, CodeUnitFlags::kGraphemeStart), "Pos8 %d sh… in UNIX_ONLY_TEST()
77 …REPORTER_ASSERT(reporter, unicodeText16.hasProperty(space1, CodeUnitFlags::kPartOfWhiteSpace), "Po… in UNIX_ONLY_TEST()
78 …REPORTER_ASSERT(reporter, unicodeText16.hasProperty(space1 + 1, CodeUnitFlags::kSoftLineBreakBefor… in UNIX_ONLY_TEST()
79 …REPORTER_ASSERT(reporter, unicodeText16.hasProperty(space2, CodeUnitFlags::kPartOfWhiteSpace), "Po… in UNIX_ONLY_TEST()
80 …REPORTER_ASSERT(reporter, unicodeText16.hasProperty(space2 + 1, CodeUnitFlags::kSoftLineBreakBefor… in UNIX_ONLY_TEST()
82 …REPORTER_ASSERT(reporter, unicodeText8 .hasProperty(space1, CodeUnitFlags::kPartOfWhiteSpace), "Po… in UNIX_ONLY_TEST()
83 …REPORTER_ASSERT(reporter, unicodeText8 .hasProperty(space1 + 1, CodeUnitFlags::kSoftLineBreakBefor… in UNIX_ONLY_TEST()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineInstr.h635 bool hasProperty(unsigned MCFlag, QueryType Type = AnyInBundle) const {
649 return hasProperty(MCID::PreISelOpcode, Type);
657 return hasProperty(MCID::Variadic, Type);
663 return hasProperty(MCID::HasOptionalDef, Type);
669 return hasProperty(MCID::Pseudo, Type);
673 return hasProperty(MCID::Return, Type);
679 return hasProperty(MCID::EHScopeReturn, Type);
683 return hasProperty(MCID::Call, Type);
690 return hasProperty(MCID::Barrier, Type);
699 return hasProperty(MCID::Terminator, Type);
[all …]
/third_party/jsframework/runtime/main/manage/event/
DcallbackIntercept.ts28 let hasProperty: boolean = false;
38 hasProperty = true;
42 hasProperty = true;
87 if (hasProperty) {
/third_party/skia/src/sksl/ir/
DSkSLTernaryExpression.h68 bool hasProperty(Property property) const override { in hasProperty() function
69 return this->test()->hasProperty(property) || this->ifTrue()->hasProperty(property) || in hasProperty()
70 this->ifFalse()->hasProperty(property); in hasProperty()
DSkSLBinaryExpression.h86 bool hasProperty(Property property) const override { in hasProperty() function
90 return this->left()->hasProperty(property) || this->right()->hasProperty(property); in hasProperty()
DSkSLIndexExpression.h61 bool hasProperty(Property property) const override { in hasProperty() function
62 return this->base()->hasProperty(property) || this->index()->hasProperty(property); in hasProperty()
DSkSLExpression.h166 virtual bool hasProperty(Property property) const = 0;
169 return this->hasProperty(Property::kSideEffects); in hasSideEffects()
173 return this->hasProperty(Property::kContainsRTAdjust); in containsRTAdjust()
DSkSLPostfixExpression.h51 bool hasProperty(Property property) const override { in hasProperty() function
53 this->operand()->hasProperty(property); in hasProperty()
DSkSLExternalFunctionCall.h42 bool hasProperty(Property property) const override { in hasProperty() function
47 if (arg->hasProperty(property)) { in hasProperty()
DSkSLPrefixExpression.h52 bool hasProperty(Property property) const override { in hasProperty() function
58 return this->operand()->hasProperty(property); in hasProperty()
DSkSLFieldAccess.h67 bool hasProperty(Property property) const override { in hasProperty() function
68 return this->base()->hasProperty(property); in hasProperty()
DSkSLChildCall.cpp13 bool ChildCall::hasProperty(Property property) const { in hasProperty() function in SkSL::ChildCall
15 if (arg->hasProperty(property)) { in hasProperty()
DSkSLSwizzle.h63 bool hasProperty(Property property) const override { in hasProperty() function
64 return this->base()->hasProperty(property); in hasProperty()
DSkSLConstructor.h27 bool hasProperty(Property property) const override { in hasProperty() function
29 if (arg->hasProperty(property)) { in hasProperty()
/third_party/flutter/flutter/packages/flutter_tools/gradle/
Daar_init_script.gradle17 if (!project.hasProperty("android")) {
20 if (!project.android.hasProperty("libraryVariants")) {
57 if (!project.hasProperty("flutter-root")) {
99 if (rootProject.hasProperty("output-dir")) {
116 if (appSubproject.hasProperty("output-dir")) {
Dflutter.gradle139 if (it.hasProperty('matchingFallbacks')) {
328 if (project.hasProperty(name)) {
349 if (!project.hasProperty('target-platform')) {
361 if (project.hasProperty('split-per-abi')) {
368 return project.hasProperty('localEngineOut')
372 if (project.hasProperty('verbose')) {
455 if (project.hasProperty('target')) {
460 if (project.hasProperty('filesystem-roots')) {
464 if (project.hasProperty('filesystem-scheme')) {
468 if (project.hasProperty('track-widget-creation')) {
[all …]
/third_party/skia/experimental/sktext/include/
DText.h43 bool hasProperty(TextIndex index, CodeUnitFlags flag) const { in hasProperty() function
47 return this->hasProperty(index, CodeUnitFlags::kHardLineBreakBefore); in isHardLineBreak()
50 return index != 0 && this->hasProperty(index, CodeUnitFlags::kSoftLineBreakBefore); in isSoftLineBreak()
61 if (this->hasProperty(i, CodeUnitFlags::kGraphemeStart)) { in forEachGrapheme()
67 } else if (this->hasProperty(i, CodeUnitFlags::kHardLineBreakBefore)) { in forEachGrapheme()
342 bool hasProperty(TextIndex index, GlyphUnitFlags flag) const { in hasProperty() function
/third_party/mindspore/mindspore/lite/java/java/app/
Dbuild.gradle11 versionName project.hasProperty("LITE_VERSION") ? LITE_VERSION : ""
49 version = project.hasProperty("LITE_VERSION") ? LITE_VERSION : ""
/third_party/grpc/examples/android/helloworld/app/
Dbuild.gradle16 def protoc = project.hasProperty('protoc') ?
18 def grpc_cpp_plugin = project.hasProperty('grpc_cpp_plugin') ?
/third_party/typescript/src/harness/
DevaluatorImpl.ts33 …if (!ts.hasProperty(FakeSymbol, "asyncIterator")) Object.defineProperty(FakeSymbol, "asyncIterator…
57 if (ts.hasProperty(globals, name)) {
/third_party/grpc/src/android/test/interop/app/
Dbuild.gradle16 def protoc = project.hasProperty('protoc') ?
18 def grpc_cpp_plugin = project.hasProperty('grpc_cpp_plugin') ?
/third_party/skia/experimental/sktext/src/
DText.cpp23 if (!this->hasProperty(i, CodeUnitFlags::kPartOfWhiteSpace)) { in isWhitespaces()
80 …while (adjustedBlock.fEnd < this->fText16.size() && !this->hasProperty(adjustedBlock.fEnd, CodeUn… in resolveFonts()
620 …if (positionType == PositionType::kGraphemeCluster && unicodeText->hasProperty(textIndex, CodeUnit… in textToGlyphs()
639 if (unicodeText->hasProperty(index, CodeUnitFlags::kHardLineBreakBefore)) { in prepareToEdit()
645 if (unicodeText->hasProperty(cluster, CodeUnitFlags::kGraphemeStart)) { in prepareToEdit()
708 if (this->hasProperty(textIndex, GlyphUnitFlags::kGraphemeClusterStart)) { in findPosition()
723 if (this->hasProperty(textIndex, GlyphUnitFlags::kGraphemeClusterStart)) { in findPosition()
772 … SkASSERT(this->hasProperty(current.fTextRange.fStart, GlyphUnitFlags::kGraphemeClusterStart)); in previousPosition()
794 SkASSERT(this->hasProperty(current.fTextRange.fEnd, GlyphUnitFlags::kGraphemeClusterStart)); in nextPosition()
811 SkASSERT(this->hasProperty(current.fTextRange.fEnd, GlyphUnitFlags::kGraphemeClusterStart)); in upPosition()
[all …]
/third_party/typescript/src/services/
Dtranspile.ts34 if (hasProperty(defaultOptions, key) && options[key] === undefined) {
127 if (!hasProperty(options, opt.name)) {
/third_party/skia/platform_tools/android/apps/
Dbuild.gradle38 buildNativeLib.onlyIf { !project.hasProperty("suppressNativeBuild") }
90 if (project.hasProperty(propName)) {
/third_party/flutter/skia/platform_tools/android/apps/
Dbuild.gradle38 buildNativeLib.onlyIf { !project.hasProperty("suppressNativeBuild") }
90 if (project.hasProperty(propName)) {

1234