HomeSort by relevance Sort by last modified time
    Searched refs:hasErrors (Results 1 - 25 of 280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
FaultHidingSink.java 10 private boolean hasErrors;
17 if (hasErrors) {
24 hasErrors = true;
30 if (hasErrors) return;
34 hasErrors = true;
40 if (hasErrors) return;
44 hasErrors = true;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
PlatformStatus.java 25 private boolean hasErrors = false;
53 this.hasErrors = true;
56 public boolean hasErrors() {
57 return this.hasErrors;
EclipseTestResultsGeneratorNoMail.java 82 if (aPlatform.hasErrors()) {
ErrorTracker.java 191 public boolean hasErrors(String id) {
192 return ((PlatformStatus) platforms.get(id)).hasErrors();
  /frameworks/base/tools/aapt/
SourcePos.h 26 static bool hasErrors();
Resource.cpp 305 bool hasErrors = false;
323 hasErrors = true;
337 hasErrors = true;
343 return hasErrors ? STATUST(UNKNOWN_ERROR) : NO_ERROR;
349 const sp<AaptFile>& file, volatile bool* hasErrors) :
350 mBundle(bundle), mAssets(assets), mFile(file), mHasErrors(hasErrors) {
371 volatile bool hasErrors = false;
378 bundle, assets, it.getFile(), &hasErrors);
382 hasErrors = true;
390 hasErrors = true
    [all...]
ResourceTable.cpp 95 bool hasErrors = false;
99 hasErrors = true;
106 hasErrors = true;
110 if (hasErrors) {
290 bool hasErrors;
299 , hasErrors(false)
306 if (added || hasErrors) {
312 hasErrors = true;
347 attr.hasErrors = true;
360 attr.hasErrors = true
    [all...]
SourcePos.cpp 150 SourcePos::hasErrors()
  /external/clang/lib/Serialization/
GeneratePCH.cpp 47 bool hasErrors = PP.getDiagnostics().hasErrorOccurred();
48 if (hasErrors && !AllowASTWithErrors)
54 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, hasErrors);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
CompileErrorCheck.java 41 boolean hasErrors = false;
45 if (this.hasErrors) return;
49 this.hasErrors = value != null && !value.equals("0");
52 public boolean hasErrors() {
53 return this.hasErrors;
183 if (compilerErrorCheckerHandler.hasErrors()) {
  /external/guice/core/src/com/google/inject/internal/
FailableCache.java 41 return errors.hasErrors() ? errors : result;
  /external/guice/lib/build/
munge.jar 
  /external/icu/icu4c/source/common/unicode/
idna.h 94 * If any processing step fails, then info.hasErrors() will be TRUE and
118 * If any processing step fails, then info.hasErrors() will be TRUE.
140 * If any processing step fails, then info.hasErrors() will be TRUE and
164 * If any processing step fails, then info.hasErrors() will be TRUE.
278 UBool hasErrors() const { return errors!=0; }
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 143 public boolean hasErrors() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
SampleProjectTest.java 165 boolean hasErrors = false;
176 hasErrors = true;
183 assertFalse(failureBuilder.toString(), hasErrors);
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 776 private boolean hasErrors;
841 if (hasErrors) {
866 hasErrors = true;
874 hasErrors = true;
882 hasErrors = true;
890 hasErrors = true;
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 776 private boolean hasErrors;
841 if (hasErrors) {
866 hasErrors = true;
874 hasErrors = true;
882 hasErrors = true;
890 hasErrors = true;
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 776 private boolean hasErrors;
841 if (hasErrors) {
866 hasErrors = true;
874 hasErrors = true;
882 hasErrors = true;
890 hasErrors = true;
    [all...]
  /external/emma/core/java12/com/vladium/util/args/
OptsParser.java 593 if (hasErrors ())
604 if (hasErrors ())
612 if (hasErrors ()) return null;
627 if (hasErrors ()) return null;
645 if (hasErrors ())
736 boolean hasErrors ()
743 if (! hasErrors ()) return "<no errors>";
    [all...]
  /external/clang/include/clang/Frontend/
Utils.h 123 bool HasErrors;
130 void setHasErrors() { HasErrors = true; }
137 bool hasErrors() { return HasErrors; }
139 : DestDir(DestDir), HasErrors(false) {}
  /external/clang/lib/ARCMigrate/
Internals.h 37 bool hasErrors() const;
ARCMT.cpp 84 bool CapturedDiagList::hasErrors() const {
331 return capturedDiags.hasErrors() || testAct.hasReportedErrors();
555 HadARCErrors = HadARCErrors || capturedDiags.hasErrors();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
UTS46Test.java 47 if(info.hasErrors() || !UTF16Plus.equal(result, expected)) {
63 if(info.hasErrors() || !resultString.equals("fass.de")) {
81 info.hasErrors()
95 if(!UTF16Plus.equal(result, input) || info.hasErrors()) {
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
UTS46Test.java 43 if(info.hasErrors() || !UTF16Plus.equal(result, expected)) {
59 if(info.hasErrors() || !resultString.equals("fass.de")) {
77 info.hasErrors()
91 if(!UTF16Plus.equal(result, input) || info.hasErrors()) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
buildTools.jar 

Completed in 567 milliseconds

1 2 3 4 5 6 7 8 91011>>