Searched refs:record (Results 201 - 225 of 285) sorted by relevance

1234567891011>>

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DFileHandlerTest.java202 // output 3 times, and only one record left
228 // if one record is null and is not the last record, means
610 public boolean isLoggable(LogRecord record) { argument
611 return !record.getMessage().equals("false");
H A DSocketHandlerTest.java407 * Test close() when having sufficient privilege, and a record has been
435 * Test close() when having sufficient privilege, and no record has been
461 * Test publish(), use no filter, having output stream, normal log record.
500 * Test publish(), use a filter, having output stream, normal log record.
530 * Test publish(), null log record, having output stream
557 * Test publish(), a log record with empty msg, having output stream
582 * Test publish(), a log record with null msg, having output stream
643 public boolean isLoggable(LogRecord record) { argument
644 CallVerificationStack.getInstance().push(record);
H A DLoggerTest.java2600 * Test log(LogRecord) for a normal log record. Meanwhile the logger has an
2624 * Test log(LogRecord) with null log record.
2636 * Test log(LogRecord) for a normal log record. Meanwhile the logger has an
2654 * Test log(LogRecord) for a normal log record. Meanwhile the logger has an
2655 * appropriate level, a filter that accepts the fed log record, no parent.
2682 * Test log(LogRecord) for a normal log record. Meanwhile the logger has an
2683 * appropriate level, a filter that rejects the fed log record, no parent.
2709 * Test that the parent's handler is notified for a new log record when
2754 // set the record off
2761 * Test that the ancestor's handler is notified for a new log record whe
3055 log(LogRecord record) argument
3076 publish(LogRecord record) argument
3095 publish(LogRecord record) argument
3106 isLoggable(LogRecord record) argument
3117 isLoggable(LogRecord record) argument
[all...]
/external/zlib/src/examples/
H A Dgzlog.c717 /* log a repair record to the .repairs file */
718 local void log_log(struct log *log, int op, char *record) argument
729 "append" : (op == COMPRESS_OP ? "compress" : "replace"), record);
/external/libvncserver/x11vnc/
H A Dx11vnc.h329 #include <X11/extensions/record.h>
/external/mesa3d/src/glsl/
H A Dir.cpp616 /* If the constant is a record, the types of each of the entries in
1245 this->record = value;
1247 this->type = this->record->type->field_type(field);
1257 this->record = new(ctx) ir_dereference_variable(var);
1259 this->type = this->record->type->field_type(field);
H A Dir_hv_accept.cpp293 s = this->record->accept(v);
H A Dir_clone.cpp225 return new(mem_ctx) ir_dereference_record(this->record->clone(mem_ctx, ht),
H A Dir_print_visitor.cpp339 ir->record->accept(this);
H A Dir.h1652 return this->record->variable_referenced();
1671 ir_rvalue *record; member in class:ir_dereference_record
/external/selinux/libsemanage/src/
H A Ddatabase_llist.c65 ERR(handle, "could not cache record");
144 ERR(handle, "could not check if record exists");
162 ERR(handle, "could not add record to the database");
178 ERR(handle, "record not found in the database");
190 ERR(handle, "could not set record value");
218 ERR(handle, "could not modify record value");
249 ERR(handle, "could not query record value");
255 int (*fn) (const record_t * record,
377 ERR(handle, "could not allocate record array");
253 dbase_llist_iterate(semanage_handle_t * handle, dbase_llist_t * dbase, int (*fn) (const record_t * record, void *fn_arg), void *arg) argument
H A Dseusers_local.c213 record, void *varg),
211 semanage_seuser_iterate_local(semanage_handle_t * handle, int (*handler) (const semanage_seuser_t * record, void *varg), void *handler_arg) argument
/external/chromium-trace/trace-viewer/third_party/six/
H A Dtest_six.py382 record = [] variable in class:test_dictionary_iterators.MyDict
384 record.append(kw["kw"])
389 assert record == [42]
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h691 if (const SApply *SAP = dyn_cast<SApply>(E->record())) {
699 if (isa<Wildcard>(E->record())) {
706 self()->printSExpr(E->record(), SS, Prec_Postfix);
/external/v8/test/cctest/
H A Dtest-object-observe.cc158 // already received the second record during the first round.
236 Handle<Value> record = recordArray->Get(i); local
237 CHECK(record->IsObject());
238 Handle<Object> recordObj = record.As<Object>();
343 // TODO(adamk): The below record should be emitted since proto is observed
/external/skia/src/pathops/
H A DSkPathOpsTSect.h1857 SkClosestRecord<TCurve, OppCurve>* record = &fClosest[fUsed]; local
1858 record->findEnd(span1, span2, 0, 0);
1859 record->findEnd(span1, span2, 0, OppCurve::kPointLast);
1860 record->findEnd(span1, span2, TCurve::kPointLast, 0);
1861 record->findEnd(span1, span2, TCurve::kPointLast, OppCurve::kPointLast);
1862 if (record->fClosest == FLT_MAX) {
1867 if (test->matesWith(*record)) {
1868 if (test->fClosest > record->fClosest) {
1869 test->merge(*record);
1871 test->update(*record);
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
H A DShadowDOM.js608 var record = new MutationRecord(type, target);
610 record.attributeName = data.name;
611 record.attributeNamespace = data.namespace;
613 if (data.addedNodes) record.addedNodes = data.addedNodes;
614 if (data.removedNodes) record.removedNodes = data.removedNodes;
615 if (data.previousSibling) record.previousSibling = data.previousSibling;
616 if (data.nextSibling) record.nextSibling = data.nextSibling;
617 if (associatedStrings[uid] !== undefined) record.oldValue = associatedStrings[uid];
619 observer.records_.push(record);
H A Dwebcomponents.js647 var record = new MutationRecord(type, target);
649 record.attributeName = data.name;
650 record.attributeNamespace = data.namespace;
652 if (data.addedNodes) record.addedNodes = data.addedNodes;
653 if (data.removedNodes) record.removedNodes = data.removedNodes;
654 if (data.previousSibling) record.previousSibling = data.previousSibling;
655 if (data.nextSibling) record.nextSibling = data.nextSibling;
656 if (associatedStrings[uid] !== undefined) record.oldValue = associatedStrings[uid];
658 observer.records_.push(record);
/external/clang/lib/CodeGen/
H A DCGExprAgg.cpp225 // Only record types have members that might require garbage collection.
1164 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl(); local
1169 if (record->isUnion()) {
1178 for (const auto *Field : record->fields())
1207 for (const auto *field : record->fields()) {
/external/strace/
H A Dstrace.spec16 received by a running process. Strace can print a record of each
31 received by a running process. Strace can print a record of each
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas241 TItem = record
346 /// The TLocalStorage record has space for 256 variables. For performance
365 TLocalStorage = record
368 TLocalStorageEntry = record
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex156 Each input data file (one per device per CPU) results in a new record
159 these record data files by spawning a new pair of threads per file. One
160 thread manages the submitting of AIOs per bunch in the record data file,
419 record files in the directory specified (either via the \texttt{-d}
/external/libpng/projects/owatcom/
H A Dpngconfig.mak142 $# generated dependency information (as of OpenWatcom 1.9) does not record the
/external/sepolicy/
H A Daccess_vectors581 record
/external/skia/samplecode/
H A DSampleAll.cpp307 SkCanvas* record = recorder.beginRecording(320, 480, NULL, 0); local
308 this->drawPicture(record, 120);

Completed in 1081 milliseconds

1234567891011>>