HomeSort by relevance Sort by last modified time
    Searched full:false (Results 1751 - 1775 of 15335) sorted by null

<<71727374757677787980>>

  /external/guava/src/com/google/common/collect/
SingletonImmutableSet.java 57 return false;
93 return false;
105 return false;
  /external/icu4c/i18n/
tztrans.cpp 68 return FALSE;
71 return FALSE;
80 return FALSE;
  /external/icu4c/layout/
ThaiLayoutEngine.cpp 82 glyphStorage.allocateGlyphArray(count * 2, FALSE, success);
91 mapCharsToGlyphs(outChars, 0, glyphCount, FALSE, FALSE, glyphStorage, success);
  /external/icu4c/tools/ctestfw/
testdata.cpp 98 return FALSE;
119 return FALSE;
138 return FALSE;
  /external/jdiff/src/jdiff/
FieldAPI.java 31 public boolean isTransient_ = false;
34 public boolean isVolatile_ = false;
105 return false;
  /external/opencore/android/
android_audio_stream.cpp 41 iActiveTiming(NULL), mClockUpdated(false)
99 iAudioSamplingRateValid = false;
100 iAudioNumChannelsValid = false;
thread_init.cpp 72 return false;
78 return false;
88 return false;
  /external/opencore/codecs_v2/audio/mp3/dec/include/
pvmp3_decoder.h 65 bool aAllocateInputBuffer = false,
66 bool aAllocateOutputBuffer = false,
67 bool crcEnabler = false,
  /external/opencore/codecs_v2/audio/sbc/enc/src/
pvsbcencoder.cpp 40 if (status == false)
71 if (status == false)
81 if (status == false)
  /external/opencore/fileformats/mp4/composer/src/
fontrecord.cpp 64 return false;
69 return false;
74 return false;
videomediaheaderatom.cpp 59 return false;
66 return false;
70 return false;
  /external/opencore/nodes/pvprotocolenginenode/protocol_common/src/
pvmf_protocol_engine_common.cpp 27 isEOS = false; //aMediaData.Bind(iCurrentInputMediaData);
32 if (aDataInQueue.empty()) return false;
47 while (isValidInput() == false);
61 return false;
71 if (aUri.get_size() == 0) return false;
75 if (!buf) return false;
80 return false;
92 if (iURI.get_size() == 0) return false;
95 if (!parseURL(iURI, iHostName, iHostPort)) return false;
110 if (server_ip_ptr == NULL) return false;
    [all...]
  /external/opencore/oscl/oscl/config/shared/
osclconfig_io_check.h 167 On failure, 'ok' must be set to false and 'err' must be set
184 On failure, 'ok' must be set to false and 'err' must be set
201 On failure, 'ok' must be set to false and 'err' must be set
204 would block, or to false otherwise.
218 On failure, 'ok' must be set to false and 'err' must be set
235 On failure, 'ok' must be set to false and 'err' must be set
252 On failure, 'ok' must be set to false and 'err' must be set
270 On failure, 'ok' must be set to false 'err' must be set
273 would block, or to false otherwise.
289 On failure, 'ok' must be set to false 'err' must be se
    [all...]
  /external/opencore/protocols/sdp/parser/src/
pcmamediainfoparser.cpp 35 void *memory = sdp->alloc(sizeof(pcma_mediaInfo), false);
62 SDP_ERROR_CODE status = baseMediaInfoParser(buff, pcmaA, index , false, false, isSipSdp);
pcmumediainfoparser.cpp 35 void *memory = sdp->alloc(sizeof(pcmu_mediaInfo), false);
62 SDP_ERROR_CODE status = baseMediaInfoParser(buff, pcmuA, index , false, false, isSipSdp);
  /external/skia/include/core/
SkDrawLooper.h 43 is drawn (possibly with a modified canvas and/or paint). When false is
46 virtual bool next() { return false; }
47 /** Called after the looper has finally returned false from next(), allowing
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 97 bool reallyHasAlpha = false;
122 return false;
135 return false;
151 return false;
158 return false;
168 return false;
214 bool hasAlpha = false;
230 doDither = false;
300 return false;
304 return false;
    [all...]
  /external/skia/tests/
PathTest.cpp 45 p.setIsConvex(false);
50 p.setIsConvex(false);
55 p.setIsConvex(false);
  /external/v8/test/mjsunit/regress/
regress-186.js 31 var setterCalled = false;
37 setterCalled = false;
65 setterCalled = false;
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.2-3.js 51 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()", "false", eval("tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()") );
15.6.4.js 27 Boolean") whose value is false.
54 "Boolean.prototype == false",
56 Boolean.prototype == false );
  /external/webkit/JavaScriptCore/wtf/unicode/
UTF8.cpp 199 // If presented with a length > 4, this returns false. The Unicode
206 default: return false;
208 case 4: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false;
209 case 3: if ((a = (*--srcptr)) < 0x80 || a > 0xBF) return false;
210 case 2: if ((a = (*--srcptr)) > 0xBF) return false;
214 case 0xE0: if (a < 0xA0) return false; break;
215 case 0xED: if (a > 0x9F) return false; break;
216 case 0xF0: if (a < 0x90) return false; break;
217 case 0xF4: if (a > 0x8F) return false; break;
218 default: if (a < 0x80) return false;
    [all...]
  /external/webkit/LayoutTests/storage/
quota-tracking.html 100 database1.complete = false;
101 database2.complete = false;
102 database3.complete = false;
  /external/webkit/WebCore/bindings/
ScriptControllerBase.cpp 38 return false;
60 m_inExecuteScript = false;
71 return false;
  /external/webkit/WebCore/bindings/js/
JSCustomSQLStatementErrorCallback.cpp 71 bool raisedException = false;
75 // "If the error callback returns false, then move on to the next statement..."
76 // "Otherwise, the error callback did not return false, or there was no error callback"

Completed in 508 milliseconds

<<71727374757677787980>>