HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 426 - 450 of 3598) sorted by null

<<11121314151617181920>>

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMessage.java 16 private Handler target; field in class:ShadowMessage
28 public void setTarget(Handler target) {
29 this.target = target;
47 return target;
110 target.sendMessage(message);
  /external/skia/gm/
drawatlascolor.cpp 73 const SkRect target = SkRect::MakeWH(SkIntToScalar(kAtlasSize), SkIntToScalar(kAtlasSize)); variable
133 xforms[i].set(1.0f, 0.0f, SkIntToScalar(kPad), i*(target.width()+kPad));
134 rects[i] = target;
145 i*(target.width()+kPad)+kPad, SkIntToScalar(kTextPad),
151 canvas->translate(SkIntToScalar(i*(target.height()+kPad)),
156 canvas->translate(0.0f, numColors*(target.height()+kPad));
  /external/skia/src/animator/
SkAnimateBase.h 54 SkString field; // temporary; once target is known, this is reset
59 SkString target; // temporary; once target is known, this is reset member in class:SkAnimateBase
SkDisplayEvent.h 52 SkString target; member in class:SkDisplayEvent
  /external/skia/src/gpu/gl/
GrGLTexture.h 55 GrGLenum target() const { return fInfo.fTarget; } function in class:GrGLTexture
74 // Holds the texture target and ID. A pointer to this may be shared to external clients for
79 // target, and the texture may be wrapped while the render target is not.
  /external/skia/src/sfnt/
SkOTTable_name.cpp 523 const BCP47FromLanguageId target = { languageID, "" }; local
525 BCP47FromLanguageID, SK_ARRAY_COUNT(BCP47FromLanguageID), target, sizeof(target));
  /external/skia/src/views/
SkViewInflate.cpp 38 const char* target; local
40 if (!strcmp(name, "listenTo") && (target = dom.findAttr(child, "target")) != nullptr)
41 this->addIDStr(&fListenTo, parent, target);
43 if (!strcmp(name, "broadcastTo") && (target = dom.findAttr(child, "target")) != nullptr)
44 this->addIDStr(&fBroadcastTo, parent, target);
78 SkView* target; local
83 if (fIDs.find(iter->fStr, &target))
84 target->addListenerID(iter->fView->getSinkID())
    [all...]
  /external/skia/tools/skiaserve/
Request.cpp 80 SkCanvas* target = fSurface->getCanvas(); local
81 return target;
85 SkCanvas* target = this->getCanvas(); local
86 fDebugCanvas->drawTo(target, n);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
PackedSwitchMethodItem.java 93 for (PackedSwitchTarget target: targets) {
94 target.writeTargetTo(writer);
109 private final LabelMethodItem target; field in class:PackedSwitchMethodItem.PackedSwitchLabelTarget
110 public PackedSwitchLabelTarget(LabelMethodItem target) {
111 this.target = target;
114 target.writeTo(writer);
119 private final int target; field in class:PackedSwitchMethodItem.PackedSwitchOffsetTarget
120 public PackedSwitchOffsetTarget(int target) {
121 this.target = target
    [all...]
SparseSwitchMethodItem.java 79 for (SparseSwitchTarget target: targets) {
80 IntegerRenderer.writeTo(writer, target.getKey());
82 target.writeTargetTo(writer);
83 writeCommentIfResourceId(writer, target.getKey());
101 private final LabelMethodItem target; field in class:SparseSwitchMethodItem.SparseSwitchLabelTarget
102 public SparseSwitchLabelTarget(int key, LabelMethodItem target) {
104 this.target = target;
108 target.writeTo(writer);
113 private final int target; field in class:SparseSwitchMethodItem.SparseSwitchOffsetTarget
    [all...]
  /external/v8/src/ic/
ic-inl.h 44 // Get the target address of the IC.
45 Address target = Assembler::target_address_at(address, constant_pool); local
46 // Convert target address to the code object. Code::GetCodeFromTargetAddress
48 Code* result = Code::GetCodeFromTargetAddress(target);
54 void IC::SetTargetAtAddress(Address address, Code* target,
56 if (AddressIsDeoptimizedCode(target->GetIsolate(), address)) return;
58 DCHECK(target->is_inline_cache_stub() || target->is_compare_ic_stub());
60 DCHECK(!target->is_inline_cache_stub() ||
61 (target->kind() != Code::LOAD_IC &
    [all...]
  /external/v8/src/
transitions-inl.h 160 PropertyDetails TransitionArray::GetTargetDetails(Name* name, Map* target) {
162 int descriptor = target->LastAdded();
163 DescriptorArray* descriptors = target->instance_descriptors();
170 void TransitionArray::Set(int transition_number, Name* key, Map* target) {
172 set(ToTargetIndex(transition_number), target); local
  /external/v8/test/cctest/
test-transitions.cc 82 Map* target = TransitionArray::GetTarget(map0->raw_transitions(), i); local
83 CHECK((key == *name1 && target == *map1) ||
84 (key == *name2 && target == *map2));
133 Map* target = TransitionArray::GetTarget(map0->raw_transitions(), i); local
134 CHECK((key == *name1 && target == *map1) ||
135 (key == *name2 && target == *map2));
178 Map* target = TransitionArray::GetTarget(map0->raw_transitions(), i); local
181 CHECK_EQ(*maps[i], target);
294 Map* target = TransitionArray::GetTarget(map0->raw_transitions(), i); local
298 target->GetLastDescriptorDetails().attributes()
    [all...]
  /external/vogar/src/vogar/target/
CaliperRunner.java 17 package vogar.target;
28 public final class CaliperRunner implements vogar.target.Runner {
TestActivity.java 17 package vogar.target;
  /external/vogar/test/vogar/target/
TestRunnerTest.java 17 package vogar.target;
26 import vogar.target.junit.JUnitRunner;
  /frameworks/base/core/java/android/os/
Broadcaster.java 30 * target will be sent a copy of that message with targetWhat in the what field.
32 public void request(int senderWhat, Handler target, int targetWhat)
41 r.targets[0] = target;
81 if (oldTargets[i] == target && oldWhats[i] == targetWhat) {
90 r.targets[n] = target;
97 * Unregister for notifications for this senderWhat/target/targetWhat tuple.
99 public void cancelRequest(int senderWhat, Handler target, int targetWhat)
121 if (targets[i] == target && whats[i] == targetWhat) {
192 Handler target = targets[i]; local
196 target.sendMessage(m)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridSetSelectionBaseTest.java 58 final int target = mGridView.getAdapter().getCount() - 1; local
61 mGridView.setSelection(target);
66 assertEquals(mGridView.getSelectedItemPosition(), target); local
74 final int target = mGridView.getAdapter().getCount() / 2; local
77 mGridView.setSelection(target);
82 assertEquals(mGridView.getSelectedItemPosition(), target); local
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListSetSelectionTest.java 103 View target = null; local
109 target = child;
116 if (target != null) {
118 target.getTop());
  /frameworks/base/libs/hwui/
DeferredLayerUpdater.h 66 GLenum target = texture->getCurrentTextureTarget(); local
67 LOG_ALWAYS_FATAL_IF(target != GL_TEXTURE_2D && target != GL_TEXTURE_EXTERNAL_OES,
68 "set unsupported GLConsumer with target %x", target);
Snapshot.cpp 245 static Snapshot* getClipRoot(Snapshot* target) {
246 while (target->previous && target->previous->previous) {
247 target = target->previous;
249 return target;
254 auto target = this; local
257 target = getClipRoot(this);
260 return target->mClipArea->serializeIntersectedClip(allocator,
  /frameworks/compile/libbcc/lib/Support/
Disassembler.cpp 84 const llvm::Target* target = local
87 if (target == nullptr) {
88 ALOGE("Invalid target triple for disassembler: %s (%s)!",
94 target->createMCSubtargetInfo(pTriple, /* CPU */"", /* Features */"");;
101 disassembler = target->createMCDisassembler(*subtarget_info);
103 mc_inst_info = target->createMCInstrInfo();
105 mc_reg_info = target->createMCRegInfo(pTriple);
107 asm_info = target->createMCAsmInfo(pTriple);
115 inst_printer = target->createMCInstPrinter(asm_info->getAssemblerDialect()
    [all...]
  /frameworks/compile/mclinker/lib/Object/
ObjectBuilder.cpp 67 LDSection* target = m_Module.getSection(output_name); local
69 if (target == NULL) {
70 target = LDSection::Create(output_name,
74 target->setAlign(pInputSection.align());
75 m_Module.getSectionTable().push_back(target);
78 switch (target->kind()) {
81 if (target->hasEhFrame())
82 eh_frame = target->getEhFrame();
84 eh_frame = IRBuilder::CreateEhFrame(*target);
87 UpdateSectionAlign(*target, pInputSection)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
Android.mk 16 # ./libvpx/configure --target=armv7-android-gcc --disable-examples \
45 # --target=arm5te-android-gcc and modify the Application.mk file to
94 $$(call get-src-file-target-cflags,$(2)) \
129 target := libs macro
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode14.java 38 * Create a processing instruction with target as "target1" and data as "data1"
40 * Method should return a processing instruction whose target and data match the given
76 String target; local
89 target = aNode.getTarget();
90 assertEquals("piTarget", "target1", target);

Completed in 430 milliseconds

<<11121314151617181920>>