HomeSort by relevance Sort by last modified time
    Searched refs:ok (Results 126 - 150 of 912) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/oprofile/libutil++/
child_reader.cpp 167 bool ok = true; local
179 while (temp_pos < end1 && ok) {
182 ok = false;
185 // !ok ==> endl has been read so do not copy it.
186 result.append(&buf1[pos1], (temp_pos - pos1) - !ok);
188 if (!ok || !end1)
194 if (ok && temp != end2)
op_spu_bfd.cpp 43 extra_images const & extra_images, bool & ok)
67 if (!ok)
73 ok = false;
79 ok = false;
88 ok = false;
112 ok = false;
  /external/skia/src/xml/
SkJS.cpp 110 JSBool ok, found; local
122 ok = JS_TRUE;
128 ok = JS_FALSE;
139 ok = (fun != NULL);
140 if (ok)
146 return ok;
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.h 70 int charactersToIntStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
71 unsigned charactersToUIntStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
72 int64_t charactersToInt64Strict(const UChar*, size_t, bool* ok = 0, int base = 10);
73 uint64_t charactersToUInt64Strict(const UChar*, size_t, bool* ok = 0, int base = 10);
74 intptr_t charactersToIntPtrStrict(const UChar*, size_t, bool* ok = 0, int base = 10);
76 int charactersToInt(const UChar*, size_t, bool* ok = 0); // ignores trailing garbage
77 unsigned charactersToUInt(const UChar*, size_t, bool* ok = 0); // ignores trailing garbage
78 int64_t charactersToInt64(const UChar*, size_t, bool* ok = 0); // ignores trailing garbage
79 uint64_t charactersToUInt64(const UChar*, size_t, bool* ok = 0); // ignores trailing garbage
80 intptr_t charactersToIntPtr(const UChar*, size_t, bool* ok = 0); // ignores trailing garbag
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLVideoElement.cpp 156 bool ok; local
157 unsigned w = getAttribute(widthAttr).string().toUInt(&ok);
158 return ok ? w : 0;
163 bool ok; local
164 unsigned h = getAttribute(heightAttr).string().toUInt(&ok);
165 return ok ? h : 0;
HTMLProgressElement.cpp 93 bool ok = parseToDoubleForNumberType(valueString, &value); local
94 if (!ok || value < 0)
111 bool ok = parseToDoubleForNumberType(getAttribute(maxAttr), &max); local
112 if (!ok || max <= 0)
  /external/webkit/Source/WebCore/platform/
Length.cpp 59 bool ok; local
63 double r = charactersToDouble(data, doubleLength, &ok);
64 if (ok)
68 int r = charactersToIntStrict(data, intLength, &ok);
70 if (ok)
74 if (ok)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeWizard.java 95 boolean ok = true;
101 ok = false;
108 ok = false;
112 if (ok) {
122 setPageComplete(ok);
123 return ok;
  /external/apache-http/src/org/apache/http/message/
BasicLineParser.java 157 boolean ok = true;
158 for (int j=0; ok && (j<protolength); j++) {
159 ok = (buffer.charAt(i+j) == protoname.charAt(j));
161 if (ok) {
162 ok = (buffer.charAt(i+protolength) == '/');
164 if (!ok) {
259 boolean ok = true;
260 for (int j=0; ok && (j<protolength); j++) {
261 ok = (buffer.charAt(index+j) == protoname.charAt(j));
263 if (ok) {
    [all...]
  /external/chromium/chrome/browser/autofill/
phone_field.cc 139 bool ok = false; local
147 ok = Add(field_type_map,
150 DCHECK(ok);
153 ok = Add(field_type_map,
156 DCHECK(ok);
160 ok = Add(field_type_map,
163 DCHECK(ok);
167 ok = Add(field_type_map,
170 DCHECK(ok);
173 ok = Add(field_type_map
    [all...]
  /external/e2fsprogs/lib/e2p/
mntopts.c 92 * Edit a mntopt set array as requested by the user. The ok
96 int e2p_edit_mntopts(const char *str, __u32 *mntopts, __u32 ok)
128 if (ok && !(ok & mask)) {
  /external/openssl/crypto/dsa/
dsa_key.c 94 int ok=0; local
136 ok=1;
142 return(ok);
  /external/openssl/crypto/evp/
p_sign.c 83 int i=0,ok=0,v; local
121 ok=1;
125 if (!ok)
  /external/oprofile/libpp/
populate.cpp 68 bool ok = ip.error == image_ok; local
70 samples.extra_found_images, ok);
71 if (!ok && ip.error == image_ok)
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLOptionsCollectionCustom.cpp 78 bool ok; local
79 int index = finiteInt32Value(exec->argument(1), exec, ok);
82 if (!ok)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
checkers.h 138 bool ok = true; local
146 ok = false;
150 return ok;
  /external/chromium/chrome/browser/ui/cocoa/
first_run_dialog.h 26 - (IBAction)ok:(id)sender;
  /external/chromium/net/proxy/
proxy_resolver_winhttp.cc 68 BOOL ok = WinHttpGetProxyForUrl( local
70 if (!ok) {
73 ok = WinHttpGetProxyForUrl(
77 if (!ok) {
90 int rv = OK;
110 // So UseNamedProxy() should work OK.
139 return OK;
  /external/e2fsprogs/tests/defaults/
e_script 37 rm -f $test_name.failed $test_name.ok
40 echo "ok"
41 touch $test_name.ok
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptstring.h 43 quint32 toArrayIndex(bool* ok = 0) const;
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
runPatchCommand.pl 50 ok($exitStatus != 0, $title);
76 ok($exitStatus == 0, $title);
84 ok($exitStatus == 0, $title);
92 ok($exitStatus == 0, $title);
  /frameworks/av/media/libstagefright/codecs/flac/enc/
SoftFlacEncoder.cpp 297 FLAC__bool ok = FLAC__stream_encoder_process_interleaved( local
302 if (ok) {
399 FLAC__bool ok = true; local
401 ok = ok && FLAC__stream_encoder_set_channels(mFlacStreamEncoder, mNumChannels);
402 ok = ok && FLAC__stream_encoder_set_sample_rate(mFlacStreamEncoder, mSampleRate);
403 ok = ok && FLAC__stream_encoder_set_bits_per_sample(mFlacStreamEncoder, 16);
404 ok = ok && FLAC__stream_encoder_set_compression_level(mFlacStreamEncoder
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
ECParameterSpec_ImplTest.java 83 } catch (NullPointerException ok) {
91 } catch (NullPointerException ok) {
99 } catch (NullPointerException ok) {
107 } catch (NullPointerException ok) {
131 } catch (IllegalArgumentException ok) {
139 } catch (IllegalArgumentException ok) {
147 } catch (IllegalArgumentException ok) {
155 } catch (IllegalArgumentException ok) {
163 } catch (IllegalArgumentException ok) {
  /external/iproute2/tc/
q_tbf.c 41 int ok=0; local
64 ok++;
75 ok++;
88 ok++;
100 ok++;
111 ok++;
122 ok++;
133 ok++;
159 if (!ok) {
  /external/v8/src/
parser.cc 54 explicit PositionStack(bool* ok) : top_(NULL), ok_(ok) {}
514 // handling for functions that may fail (by returning !*ok).
520 #define CHECK_OK ok); \
521 if (!*ok) return NULL; \
621 bool ok = true; local
623 ParseSourceElements(body, Token::EOS, info->is_eval(), &ok);
624 if (ok && !top_scope_->is_classic_mode()) {
625 CheckOctalLiteral(beg_loc, scanner().location().end_pos, &ok);
628 if (ok && is_extended_mode())
723 bool ok = true; local
1853 bool ok; local
    [all...]

Completed in 310 milliseconds

1 2 3 4 56 7 8 91011>>