/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-resource-browser.css | 15 #resource-browser-results .tagged-article { 19 #resource-browser-results .tagged-sample { 23 #resource-browser-results .tagged-tutorial {
|
android-developer-resource-browser.js | 122 var taggedWithHtml = ['Showing technical resources tagged with ']; 162 resultJqNode.addClass('tagged-' + tag);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
ContentInfo.java | 59 ASN1TaggedObject tagged = (ASN1TaggedObject)seq.getObjectAt(1); local 60 if (!tagged.isExplicit() || tagged.getTagNo() != 0) 65 content = tagged.getObject();
|
SignedData.java | 107 ASN1TaggedObject tagged = ASN1TaggedObject.getInstance(obj); local 109 if (tagged.getTagNo() == 1) 113 else if (tagged.getTagNo() == 2) 117 else if (tagged.getTagNo() == 3) 205 ASN1TaggedObject tagged = (ASN1TaggedObject)o; local 207 switch (tagged.getTagNo()) 210 certsBer = tagged instanceof BERTaggedObject; 211 certificates = ASN1Set.getInstance(tagged, false); 214 crlsBer = tagged instanceof BERTaggedObject; 215 crls = ASN1Set.getInstance(tagged, false) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
SignedData.java | 79 ASN1TaggedObject tagged = (ASN1TaggedObject)o; local 81 switch (tagged.getTagNo()) 84 certificates = ASN1Set.getInstance(tagged, false); 87 crls = ASN1Set.getInstance(tagged, false); 90 throw new IllegalArgumentException("unknown tag value " + tagged.getTagNo());
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-137768.js | 57 // Optimize, before the fix, the element load and subsequent tagged-to-i were 66 // tagged-to-i will treat part of a double value as a pointer and de-ref it 71 // tagged-to-i to SIGSEGV.
|
regress-convert-hole2.js | 75 // Test converting double-hole to tagged-hole.
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/ |
popup.js | 6 var URL = 'http://api.stackoverflow.com/1.1/questions?max=10&sort=votes&tagged=google-chrome-extension';
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
regress-7.js | 28 // Test correct truncation of tagged values.
|
/external/chromium_org/v8/test/mjsunit/ |
math-min-max.js | 141 // Tagged representation. 152 assertEquals(v1, Math.min(v1++, v6)); // int32, tagged 153 assertEquals(v2, Math.max(v5, v2++)); // tagged, int32 154 assertEquals(v6, Math.min(v6, v9++)); // tagged, double 155 assertEquals(v0, Math.max(v0++, v5)); // double, tagged
|
array-store-and-grow.js | 221 f(a, 1, "hi"); // DOUBLE packed array -> tagged packed grow 243 f(a, 0, "hi"); // DOUBLE packed array -> tagged packed grow
|
function-prototype.js | 70 // Check that getting the prototype of a tagged integer works.
|
/external/v8/test/mjsunit/compiler/ |
regress-7.js | 28 // Test correct truncation of tagged values.
|
/external/v8/test/mjsunit/ |
math-min-max.js | 141 // Tagged representation. 152 assertEquals(v1, Math.min(v1++, v6)); // int32, tagged 153 assertEquals(v2, Math.max(v5, v2++)); // tagged, int32 154 assertEquals(v6, Math.min(v6, v9++)); // tagged, double 155 assertEquals(v0, Math.max(v0++, v5)); // double, tagged
|
function-prototype.js | 70 // Check that getting the prototype of a tagged integer works.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_import.py | 598 if os.path.exists(self.tagged): 599 shutil.rmtree(self.tagged) 606 os.mkdir(self.tagged) 607 init_file = os.path.join(self.tagged, '__init__.py') 611 # now create a symlink to the tagged package 612 # sample -> sample-tagged 613 symlink_support.symlink(self.tagged, self.package_name) 619 def tagged(self): member in class:TestSymbolicallyLinkedPackage 620 return self.package_name + '-tagged' 639 if os.path.exists(self.tagged) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_import.py | 598 if os.path.exists(self.tagged): 599 shutil.rmtree(self.tagged) 606 os.mkdir(self.tagged) 607 init_file = os.path.join(self.tagged, '__init__.py') 611 # now create a symlink to the tagged package 612 # sample -> sample-tagged 613 symlink_support.symlink(self.tagged, self.package_name) 619 def tagged(self): member in class:TestSymbolicallyLinkedPackage 620 return self.package_name + '-tagged' 639 if os.path.exists(self.tagged) [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
ir.py | 498 return self.spec.tagged # i am a tagged 499 tagged = property(get_tagged) variable in class:Declarator 587 if self.tagged and self.tagged.tag.name in tag_lookup and not tag_lookup[self.tagged.tag.name].has_members(): 758 tagged = property(get_tagged) variable in class:TypeSpecifiers [all...] |
genpyx.py | 408 #if self.tagged and not self.tagged.tag.name: 411 #self.tagged.tag = Tag( self.name ) # this is how pyrex does it: tag.name == self.name 419 if not (self.tagged and self.name == self.tagged.tag.name):
|
/build/core/ |
main.mk | 397 # For most goals, anything not tagged with the "tests" tag should 465 CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS))) 611 $(call get-tagged-modules,eng) \ 615 $(call get-tagged-modules,debug) \ 619 $(call get-tagged-modules,tests) \ 630 $(call get-tagged-modules, shell_$(TARGET_SHELL)) \ 655 $(sort $(call get-tagged-modules,gnu))) 904 sample_MODULES := $(sort $(call get-tagged-modules,samples)) [all...] |
/external/chromium_org/v8/src/ia32/ |
code-stubs-ia32.cc | 699 // TAGGED case: 701 // esp[4]: tagged number input argument (should be number). 704 // eax: tagged double result. 715 const bool tagged = (argument_type_ == TAGGED); local 716 if (tagged) { 816 if (tagged) { 830 if (tagged) { 845 if (tagged) { 873 if (tagged) { [all...] |
/external/chromium_org/v8/src/x64/ |
code-stubs-x64.cc | 601 // TAGGED case: 606 // rax: tagged double result. 617 const bool tagged = (argument_type_ == TAGGED); local 618 if (tagged) { 654 // ST[0] == double value, if TAGGED. 689 __ j(zero, &runtime_call_clear_stack); // Only clears stack if TAGGED. 718 if (tagged) { 729 if (tagged) { 740 if (tagged) { [all...] |
/external/v8/src/x64/ |
code-stubs-x64.cc | 585 // On success, both first and second holds Smi tagged values. 1515 const bool tagged = (argument_type_ == TAGGED); local [all...] |
/ndk/build/core/ |
definitions.mk | [all...] |
/external/v8/src/ia32/ |
code-stubs-ia32.cc | 2391 const bool tagged = (argument_type_ == TAGGED); local [all...] |