/external/vogar/test/vogar/android/ |
AbstractModeTest.java | 33 import vogar.Target; 74 Target target = createTarget(); local 83 run = new Run(vogar, false, console, mkdir, androidSdk, new Rm(console), target, 90 protected abstract Target createTarget();
|
/external/vogar/test/vogar/target/ |
AssertTest.java | 17 package vogar.target;
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/ |
InputStreamSource.java | 39 @GenerateFinalPort(name = "target") 54 int target = FrameFormat.readTargetString(mTarget); local 56 mOutputFormat = PrimitiveFormat.createByteFormat(target);
|
/frameworks/compile/mclinker/include/mcld/Fragment/ |
Relocation.h | 87 /// target - the target data to relocate 88 const DWord& target() const { return m_TargetData; } function in class:mcld::Relocation 89 DWord& target() { return m_TargetData; } function in class:mcld::Relocation 91 /// targetRef - the reference of the target data 112 /// m_TargetData - target data of the place being relocated 115 /// m_pSymInfo - resolved symbol info of relocation target symbol
|
/frameworks/compile/mclinker/include/mcld/Support/ |
TargetRegistry.h | 11 #include "mcld/Support/Target.h" 32 typedef std::list<mcld::Target*> TargetListTy; 45 /// RegisterTarget - Register the given target. Attempts to register a 46 /// target which has already been registered will be ignored. 52 /// @param T - The target being registered. 53 static void RegisterTarget(Target& pTarget, 55 Target::TripleMatchQualityFnTy pQualityFn); 57 /// RegisterEmulation - Register a emulation function for the target. 58 /// target. 60 /// @param T - the target being registere 124 TargetRegistry::iterator target, ie = TargetRegistry::end(); local [all...] |
/frameworks/compile/mclinker/lib/Target/AArch64/ |
AArch64CA53ErratumStub.cpp | 94 // Create the target symbol of the stub to the next instruction of erratum 96 FragmentRef* target = FragmentRef::Create(*pSrcFragRef.frag(), local 100 ResolveInfo* target_info = pBuilder.CreateLocalSymbol(*target); 113 reloc->target() = 117 // Construct the second instruction as a branch to target. 123 reloc->target() = AArch64InsnHelpers::buildBranchInsn();
|
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
BordeauxClassifier.java | 34 * is a float. Class label(target) for the training data is an integer. 78 public boolean update(final HashMap<Integer, Float> sample, int target) { 82 mClassifier.TrainOneSample(getArrayList(sample), target); local
|
/frameworks/support/v4/java/android/support/v4/widget/ |
ListViewAutoScrollHelper.java | 29 public ListViewAutoScrollHelper(ListView target) { 30 super(target); 32 mTarget = target; 48 final ListView target = mTarget; local 49 final int itemCount = target.getCount(); 54 final int childCount = target.getChildCount(); 55 final int firstPosition = target.getFirstVisiblePosition(); 61 final View lastView = target.getChildAt(childCount - 1); 62 if (lastView.getBottom() <= target.getHeight()) { 69 final View firstView = target.getChildAt(0) [all...] |
/frameworks/support/v4/tests/java/android/support/v4/widget/ |
ScrollerCompatTestBase.java | 68 Log.d(TAG, "testing if target is reached"); 73 int target = mScroller.getFinalY(); local 77 assertEquals("given enough time, scroller should reach target position", target,
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
processinginstructiongettarget.java | 31 * The "getTarget()" method returns the target of the 39 * return the target of the ProcessingInstruction. 69 String target; local 73 target = piNode.getTarget(); 74 assertEquals("processinginstructionGetTargetAssert", "TEST-STYLE", target);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/ |
ReplaceTest.java | 29 String target, pattern, repl; local 31 target = "foobarfobarfoofo1"; 36 Matcher m = p.matcher(target); 43 String target, pattern, repl, s; local 47 target = "[31]foo;bar[42];[99]xyz"; 52 m = p.matcher(target); 58 target = "[31]foo(42)bar{63}zoo;[12]abc(34)def{56}ghi;{99}xyz[88]xyz(77)xyz;"; 62 m = p.matcher(target); 76 String target, pattern, repl, s; local 78 target = "foo'bar''foo" [all...] |
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/ |
ReplaceTest.java | 26 String target, pattern, repl; local 28 target = "foobarfobarfoofo1barfort"; 33 Matcher m = p.matcher(target); 40 String target, pattern, repl, s; local 44 target = "[31]foo;bar[42];[99]xyz"; 49 m = p.matcher(target); 55 target = "[31]foo(42)bar{63}zoo;[12]abc(34)def{56}ghi;{99}xyz[88]xyz(77)xyz;"; 59 m = p.matcher(target); 71 String target, pattern, repl, s; local 73 target = "foo'bar''foo" [all...] |
/packages/apps/Gallery/tests/src/com/android/camera/gallery/ |
ImageListUberUnitTests.java | 61 MockImage target = new MockImage(1, 1); local 64 listB.addImage(target); 67 uber.removeImage(target); 79 MockImage target = new MockImage(1, 1); local 82 listB.addImage(target);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
FolderOperation.java | 64 final Collection<FolderOperation> target = (in == null) ? EMPTY : ImmutableList.of(in); local 65 return target;
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
mlsrulequery.py | 38 target The name of the target type/attribute to match. 40 be used on the target type/attribute. 49 target = CriteriaDescriptor("target_regex", "lookup_type_or_attr") variable in class:MLSRuleQuery 64 self.log.debug("Target: {0.target!r}, regex: {0.target_regex}".format(self)) 88 # Matching on target type 90 if self.target and not self._match_regex( 91 rule.target, 92 self.target, [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
mlsrule.py | 36 def expanded_mls_rule_factory(original, source, target): 42 target The target type of the expanded rule. 53 rule.target = target 71 return "{0.ruletype} {0.source} {0.target}:{0.tclass} {0.default};".format(self) 81 def target(self): member in class:MLSRule 82 """The rule's target type/attribute.""" 92 for s, t in itertools.product(self.source.expand(), self.target.expand()): 101 target = Non variable in class:ExpandedMLSRule [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/ |
UiManifestElementNode.java | 64 AndroidTargetData target = getAndroidTarget(); local 66 if (target != null) { 67 manifestDescriptors = target.getManifestDescriptors();
|
/toolchain/binutils/binutils-2.25/gold/ |
target-select.cc | 0 // target-select.cc -- select a target for an object file 31 #include "target-select.h" 36 // The start of the list of target selectors. 67 // Instantiate the target and return it. Use SET_TARGET_ONCE_ to 68 // avoid instantiating two instances of the same target. 70 Target* 77 // Instantiate the target. This is called at most once. 86 // If we instantiated TARGET, return the corresponding BFD name. 89 Target_selector::do_target_bfd_name(const Target* target 194 Target* target = select_target_by_bfd_name(bfd_name); local 205 const Target* target = ¶meters->target(); local [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
MovieTest.java | 77 OutputStream target = null; local 81 target = new FileOutputStream(imagefile); 86 target.write(buffer, 0, len); 92 if (target != null) { 93 target.close();
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ImageSwitcherTest.java | 153 OutputStream target = null; local 157 target = new FileOutputStream(imagefile); 161 target.write(buffer, 0, len); 170 if (target != null) { 171 target.close();
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
ANQPFactory.java | 79 ByteBuffer target) { 85 target.order(ByteOrder.LITTLE_ENDIAN); 86 target.putShort((short) Constants.ANQP_QUERY_LIST); 87 int lenPos = target.position(); 88 target.putShort((short) 0); 93 target.putShort(id.shortValue()); 99 target.putShort(lenPos, (short) (target.position() - lenPos - Constants.BYTES_IN_SHORT)); 103 target.putShort((short) Constants.ANQP_VENDOR_SPEC); 104 int vsLenPos = target.position() [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/editor/ |
SelectAccountDialogFragment.java | 103 final Listener target = (Listener) targetFragment; local 104 target.onAccountSelectorCancelled(); 120 final Listener target = (Listener) targetFragment; local 121 target.onAccountChosen(account, getArguments().getBundle(KEY_EXTRA_ARGS));
|
/frameworks/base/services/print/java/com/android/server/print/ |
RemotePrintSpooler.java | 728 public List<PrintJobInfo> getPrintJobInfos(IPrintSpooler target, 732 target.getPrintJobInfos(mCallback, componentName, state, appId, sequence); 750 public PrintJobInfo getPrintJobInfo(IPrintSpooler target, PrintJobId printJobId, 753 target.getPrintJobInfo(printJobId, mCallback, appId, sequence); 771 public boolean setPrintJobState(IPrintSpooler target, PrintJobId printJobId, 774 target.setPrintJobState(printJobId, status, error, mCallback, sequence); 792 public boolean setPrintJobTag(IPrintSpooler target, PrintJobId printJobId, 795 target.setPrintJobTag(printJobId, tag, mCallback, sequence); 813 public Void onCustomPrinterIconLoaded(IPrintSpooler target, PrinterId printerId, 816 target.onCustomPrinterIconLoaded(printerId, icon, mCallback, sequence) [all...] |
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/ |
ViewDataBinding.java | 1185 ObservableList target = mListener.getTarget(); local [all...] |
/prebuilts/tools/common/fest/ |
fest-reflect-1.2.jar | |