| /external/python/cpython3/Lib/idlelib/idle_test/ |
| test_colorizer.py | 22 source = ( variable 358 text.insert('insert', source) 380 # Source marked for processing. 405 text.insert('insert', source)
|
| /external/python/cpython3/Python/clinic/ |
| import.c.h | 358 "source_hash($module, /, key, source)\n" 366 _imp_source_hash_impl(PyObject *module, long key, Py_buffer *source); 372 static const char * const _keywords[] = {"key", "source", NULL}; 375 Py_buffer source = {NULL, NULL}; local 378 &key, &source)) { 381 return_value = _imp_source_hash_impl(module, key, &source); 384 /* Cleanup for source */ 385 if (source.obj) { 386 PyBuffer_Release(&source);
|
| /external/selinux/prebuilts/bin/ |
| sesearch.py | 84 expr.add_argument("-s", "--source", 85 help="Source type/role of the TE/RBAC rule.") 108 help="Match source attributes directly instead of matching member types/roles.") 112 help="Use regular expression matching for the source type/role.") 147 source=args.source, variable 198 source=args.source, variable 222 source=args.source, variable [all...] |
| /external/sfntly/cpp/src/sfntly/table/bitmap/ |
| index_sub_table_format1.cc | 188 ReadableFontDataPtr source; local 190 source.Attach(down_cast<ReadableFontData*>(InternalReadData()->Slice( 194 size += source->CopyTo(target);
|
| index_sub_table_format2.cc | 195 ReadableFontDataPtr source; local 197 source.Attach(down_cast<ReadableFontData*>( 200 size += source->CopyTo(target);
|
| index_sub_table_format3.cc | 200 ReadableFontDataPtr source; local 202 source.Attach(down_cast<ReadableFontData*>(InternalReadData()->Slice( 206 size += source->CopyTo(target);
|
| /external/skia/tests/ |
| BitmapTest.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 137 SkBitmap source; local 138 source.allocN32Pixels(1,1); 139 source.eraseColor(SK_ColorRED); 146 if (!sk_tool_utils::copy_to(©, ct, source)) { 150 REPORTER_ASSERT(r, source.getColor(0, 0) == copy.getColor(0, 0));
|
| /external/skqp/tests/ |
| BitmapTest.cpp | 4 * Use of this source code is governed by a BSD-style license that can be 137 SkBitmap source; local 138 source.allocN32Pixels(1,1); 139 source.eraseColor(SK_ColorRED); 146 if (!sk_tool_utils::copy_to(©, ct, source)) { 150 REPORTER_ASSERT(r, source.getColor(0, 0) == copy.getColor(0, 0));
|
| /external/swiftshader/src/Device/ |
| Blitter.hpp | 73 void *source; member in struct:sw::Blitter::BlitData 98 void blit(Surface *source, const SliceRectF &sRect, Surface *dest, const SliceRect &dRect, const Options &options); 99 void blit3D(Surface *source, Surface *dest); 113 bool blitReactor(Surface *source, const SliceRectF &sRect, Surface *dest, const SliceRect &dRect, const Options &options);
|
| /external/swiftshader/src/Renderer/ |
| Blitter.hpp | 73 void *source; member in struct:sw::Blitter::BlitData 98 void blit(Surface *source, const SliceRectF &sRect, Surface *dest, const SliceRect &dRect, const Options &options); 99 void blit3D(Surface *source, Surface *dest); 113 bool blitReactor(Surface *source, const SliceRectF &sRect, Surface *dest, const SliceRect &dRect, const Options &options);
|
| /external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
| fold_spec_constant_op_and_composite_pass.cpp | 15 #include "source/opt/fold_spec_constant_op_and_composite_pass.h" 21 #include "source/opt/constants.h" 22 #include "source/opt/fold.h" 23 #include "source/opt/ir_context.h" 24 #include "source/util/make_unique.h" 174 uint32_t source = inst->GetSingleWordInOperand(1); local 175 uint32_t type = context()->get_def_use_mgr()->GetDef(source)->type_id(); 177 context()->get_constant_mgr()->FindDeclaredConstant(source);
|
| propagator.h | 26 #include "source/opt/ir_context.h" 27 #include "source/opt/module.h" 34 Edge(BasicBlock* b1, BasicBlock* b2) : source(b1), dest(b2) { 35 assert(source && "CFG edges cannot have a null source block."); 38 BasicBlock* source; member in struct:spvtools::opt::Edge 41 return std::make_pair(source->id(), dest->id()) < 42 std::make_pair(o.source->id(), o.dest->id());
|
| /external/swiftshader/third_party/llvm-subzero/lib/Support/ |
| ConvertUTF.cpp | 5 * This file is distributed under the University of Illinois Open Source 14 * This source code is provided as is by Unicode, Inc. No claims are 33 Conversions between UTF32, UTF-16, and UTF-8. Source code file. 39 source sequences, enhanced error detection, added casts 122 const UTF32* source = *sourceStart; local 124 while (source < sourceEnd) { 129 ch = *source++; 134 --source; /* return to the illegal value itself */ 152 --source; /* Back up source pointer! * 171 const UTF16* source = *sourceStart; local 225 const UTF16* source = *sourceStart; local 295 const UTF32* source = *sourceStart; local 519 const UTF8* source = *sourceStart; local 593 const UTF8* source = *sourceStart; local [all...] |
| /external/tensorflow/tensorflow/compiler/jit/ |
| shape_inference_test.cc | 73 auto source = ops::Placeholder(scope.WithOpName("source"), DT_INT32, local 76 ops::internal::Enter(scope.WithOpName("while/Enter"), source, "aloop"); 79 ops::internal::Enter(scope.WithOpName("while/Enter2"), source, "aloop");
|
| /external/tensorflow/tensorflow/core/framework/ |
| model_test.cc | 252 std::shared_ptr<Node> source = model::MakeSourceNode({0, "source", nullptr}); local 254 source->add_processing_time(100); 255 EXPECT_EQ(source->processing_time(), 100); 256 EXPECT_EQ(source->ProcessingTime(), 0); 257 EXPECT_EQ(source->OutputTime(&input_times), 0); 258 source->record_element(); 259 EXPECT_EQ(source->num_elements(), 1); 260 EXPECT_EQ(source->ProcessingTime(), 100); 261 EXPECT_EQ(source->OutputTime(&input_times), 100) [all...] |
| /external/u-boot/drivers/clk/at91/ |
| clk-usb.c | 27 struct clk source; local 37 ret = clk_get_by_index(clk->dev, source_index, &source); 41 return clk_get_rate(&source) / (usbdiv + 1); 49 struct clk source, best_source; local 59 ret = clk_get_by_index(clk->dev, i, &source); 63 source_rate = clk_get_rate(&source); 76 best_source = source;
|
| /external/unicode/ |
| CVTUTF7.C | 92 register UCS2 *source = *sourceStart; local 108 if (!(done = (source >= sourceEnd))) 109 r = *source++; 173 *sourceStart = source; 187 register char *source = *sourceStart; local 196 if (!(done = (source >= sourceEnd))) 197 c = *source++; 217 if (!(done = (source >= sourceEnd))) 218 c = *source++; 232 /* fprintf(stderr, "UTF7: empty sequence near byte %ld in input\n", source-sourceStart) */ [all...] |
| ConvertUTF.c | 6 * This source code is provided as is by Unicode, Inc. No claims are 25 Conversions between UTF32, UTF-16, and UTF-8. Source code file. 31 source sequences, enhanced error detection, added casts 65 const UTF32* source = *sourceStart; local 67 while (source < sourceEnd) { 72 ch = *source++; 77 --source; /* return to the illegal value itself */ 95 --source; /* Back up source pointer! */ 103 *sourceStart = source; 114 const UTF16* source = *sourceStart; local 218 const UTF16* source = *sourceStart; local 350 const UTF8* source = *sourceStart; local 423 const UTF32* source = *sourceStart; local 476 const UTF8* source = *sourceStart; local [all...] |
| /external/v8/src/builtins/ |
| builtins-function.cc | 2 // Use of this source code is governed by a BSD-style license that can be 37 // Build the source string. 38 Handle<String> source; local 91 ASSIGN_RETURN_ON_EXCEPTION(isolate, source, builder.Finish(), Object); 109 handle(target->native_context(), isolate), source,
|
| /external/v8/src/snapshot/ |
| deserializer.h | 2 // Use of this source code is governed by a BSD-style license that can be 13 #include "src/snapshot/snapshot-source-sink.h" 40 // Create a deserializer from a snapshot byte source. 73 SnapshotByteSource* source() { return &source_; } function in class:v8::internal::Deserializer 169 // For source(), isolate(), and allocator().
|
| natives-external.cc | 2 // Use of this source code is governed by a BSD-style license that can be 8 #include "src/snapshot/snapshot-source-sink.h" 59 static NativesStore* MakeFromScriptsSource(SnapshotByteSource* source) { 64 // 2N blobs: N pairs of source name + actual source. 66 int debugger_count = source->GetInt(); 68 store->ReadNameAndContentPair(source); 69 int library_count = source->GetInt(); 71 store->ReadNameAndContentPair(source); 94 const byte* source; local [all...] |
| /external/vboot_reference/cgpt/ |
| cgpt_nor.c | 2 * Use of this source code is governed by a BSD-style license that can be 155 char *source; local 156 if (asprintf(&source, "%s/%s", dir_name, file_name) == -1) { 161 int fd = open(source, O_RDONLY | O_CLOEXEC); 174 if (read_write(fd, half_size, source, 1) != 0 || 175 read_write(fd, half_size, source, 2) != 0) { 183 free(source);
|
| /external/wayland/tests/ |
| event-loop-test.c | 52 struct wl_event_source *source; local 59 source = wl_event_loop_add_fd(loop, p[0], WL_EVENT_READABLE, 61 assert(source); 62 wl_event_source_check(source); 69 wl_event_source_remove(source); 86 /* Remove other source */ 109 * source free the other, but we don't know which one is going 111 * that frees the other source and check that only one of them 163 struct wl_event_source *source; local 166 source = wl_event_loop_add_signal(loop, SIGUSR1 232 struct wl_event_source *source; local [all...] |
| /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/ |
| VideoCapturerAndroidTestFixtures.java | 5 * Redistribution and use in source and binary forms, with or without 8 * 1. Redistributions of source code must retain the above copyright notice, 250 VideoSource source = local 252 VideoTrack track = factory.createVideoTrack("dummy", source); 257 source.dispose(); 264 VideoSource source = local 266 VideoTrack track = factory.createVideoTrack("dummy", source); 297 source.dispose(); 351 VideoSource source = local 353 VideoTrack track = factory.createVideoTrack("dummy", source); 520 final VideoSource source = factory.createVideoSource(capturer, new MediaConstraints()); local 579 VideoSource source = local [all...] |
| /external/webrtc/talk/app/webrtc/test/ |
| peerconnectiontestwrapper.cc | 5 * Redistribution and use in source and binary forms, with or without 8 * 1. Redistributions of source code must retain the above copyright notice, 274 rtc::scoped_refptr<webrtc::AudioSourceInterface> source = local 278 source)); 287 rtc::scoped_refptr<webrtc::VideoSourceInterface> source = local 292 peer_connection_factory_->CreateVideoTrack(videotrack_label, source));
|