/external/libvpx/libvpx/vpx_ports/ |
emms.asm | 14 section .text label
|
x86_abi_support.asm | 365 ; Name of the rodata section 370 %define SECTION_RODATA section .text 373 section .text label 376 %define SECTION_RODATA section .data 378 %define SECTION_RODATA section .rodata 384 section .note.GNU-stack noalloc noexec nowrite progbits label 385 section .text label 387 section .note.GNU-stack noalloc noexec nowrite progbits label 388 section .text label 390 section .note.GNU-stack noalloc noexec nowrite progbit label 391 section .text label [all...] |
/external/elfutils/tests/ |
newscn.c | 34 Elf_Scn *section; local 58 section = elf_newscn (elf); 59 section = elf_nextscn (elf, section); 60 assert (section == NULL);
|
/external/boringssl/win-x86/crypto/md5/ |
md5-586.asm | 2 section code use32 class=code align=64 label 13 section .text code align=64 label 15 section .text code label 38 ; R0 section 202 ; R1 section 364 ; R2 section 510 ; R3 section
|
/external/autotest/frontend/ |
make_superuser.py | 14 section = 'AUTOTEST_WEB' variable 15 host = config.get_config_value(section, "host") 16 db_name = config.get_config_value(section, "database") 17 user = config.get_config_value(section, "user") 18 password = config.get_config_value(section, "password")
|
/system/bt/btif/src/ |
btif_config_transcode.cc | 55 const char* section = j->Attribute("Tag"); local 60 if (section && key && value) 61 config_set_string(config, section, key, value);
|
/art/runtime/ |
image-inl.h | 54 const ImageSection& section = GetImageSection(kSectionImTables); local 55 for (size_t pos = 0; pos < section.Size();) { 56 ImTable* imt = reinterpret_cast<ImTable*>(base + section.Offset() + pos); 72 const ImageSection& section = GetImageSection(kSectionIMTConflictTables); local 73 for (size_t pos = 0; pos < section.Size(); ) { 74 auto* table = reinterpret_cast<ImtConflictTable*>(base + section.Offset() + pos);
|
/art/tools/ahat/src/ |
Doc.java | 36 * Start a new section with the given title. 38 void section(String title); method in interface:Doc
|
HtmlDoc.java | 61 public void section(String title) { method in class:HtmlDoc
|
/external/boringssl/win-x86/crypto/bn/ |
co-586.asm | 2 section code use32 class=code align=64 label 13 section .text code align=64 label 15 section .text code label
|
/frameworks/compile/mclinker/include/mcld/LD/ |
ELFReaderIf.h | 55 /// readSectionHeaders - read ELF section header table and create LDSections 59 /// readRegularSection - read a regular section and create fragments. 69 /// This is used to get the signature of a group section. 88 /// LinkInfo - some section needs sh_link and sh_info, remember them. 90 LDSection* section; member in struct:mcld::ELFReaderIF::LinkInfo
|
/system/bt/osi/test/ |
config_test.cc | 147 EXPECT_FALSE(config_remove_section(config, "not a section")); 169 const config_section_node_t* section = config_section_begin(config); local 170 EXPECT_TRUE(section != NULL); 171 const char* section_name = config_section_name(section); 172 EXPECT_TRUE(section != NULL); 179 const config_section_node_t* section = config_section_begin(config); local 180 EXPECT_TRUE(section != NULL); 181 section = config_section_next(section); 182 EXPECT_TRUE(section != NULL) 191 const config_section_node_t* section = config_section_begin(config); local [all...] |
/toolchain/binutils/binutils-2.25/ld/ |
ldctor.h | 45 asection *section; /* Section of value in set. */ member in struct:set_element
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MapItem.java | 37 /** {@code non-null;} section this instance covers */ 38 private final Section section; field in class:MapItem 61 * given map section. 64 * @param mapSection {@code non-null;} the section that the resulting map 67 public static void addMap(Section[] sections, 80 for (Section section : sections) { 86 for (Item item : section.items()) { 90 items.add(new MapItem(currentType, section, [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
MapItem.java | 36 /** {@code non-null;} section this instance covers */ 37 private final Section section; field in class:MapItem 60 * given map section. 63 * @param mapSection {@code non-null;} the section that the resulting map 66 public static void addMap(Section[] sections, 79 for (Section section : sections) { 85 for (Item item : section.items()) { 89 items.add(new MapItem(currentType, section, [all...] |
/external/boringssl/src/include/openssl/ |
conf.h | 74 * # This key is in the default section. 83 char *section; member in struct:conf_value_st 110 /* NCONF_get_section returns a stack of values for a given section in |conf|. 111 * If |section| is NULL, the default section is returned. It returns NULL on 113 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section); 115 /* NCONF_get_string returns the value of the key |name|, in section |section|. 116 * The |section| argument may be NULL to indicate the default section. I [all...] |
/external/google-breakpad/src/common/linux/ |
elfutils.cc | 67 const Shdr* section = local 72 if (section != NULL && section->sh_size > 0) { 73 *section_start = elf_base + section->sh_offset; 74 *section_size = section->sh_size;
|
/frameworks/base/libs/incident/src/ |
IncidentReportArgs.cpp | 101 int32_t section; local 102 err = in->readInt32(§ion); 107 mSections.insert(section); 136 IncidentReportArgs::addSection(int section) 139 mSections.insert(section); 150 IncidentReportArgs::containsSection(int section) const 152 return mAll || mSections.find(section) != mSections.end();
|
/packages/experimental/BugReportSender/src/com/android/bugreportsender/ |
BugReportPreviewActivity.java | 15 * Provides a scrolling text view previewing a named section of a 40 String section = intent.getStringExtra("section"); local 41 if (section == null || section.length() == 0) { 42 section = "SYSTEM LOG"; 49 String text = BugReportParser.extractSystemLogs(in, section);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiElementDetail.java | 48 import org.eclipse.ui.forms.widgets.Section; 66 private Section mMasterSection; 190 * Creates a TableWrapLayout in the DetailsPage, which in turns contains a Section. 197 * + Section (with title/description && fill_grab horizontal) 204 * @return The new Section 206 private Section createMasterSection(Composite parent) { 212 Section section = toolkit.createSection(parent, Section.TITLE_BAR); local 213 section.setLayoutData(new TableWrapData(TableWrapData.FILL_GRAB, TableWrapData.TOP)) 392 Section section = toolkit.createSection(masterTable, local 437 Section section = ((Section) unknownTable.getParent()); local [all...] |
/external/boringssl/win-x86_64/crypto/rand/ |
rdrand-x86_64.asm | 5 section .text code align=64 label
|
/external/llvm/bindings/python/llvm/ |
object.py | 19 Section, Symbol, and Relocation, respectively. 30 relocations, call get_relocations() on a Section instance. 40 To aid working around this limitation, each Section, Symbol, and Relocation 53 # This is OK. Each Section is only accessed inside its own iteration slot. 55 for section in obj.get_sections(): 56 section_names.append(section.name) 96 "Section", 126 This is a generator for llvm.object.Section instances. 137 last = Section(sections) 179 class Section(LLVMObject) 330 def section(self): member in class:Symbol [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
ResourceExtractor.java | 25 String section = innerClass.getSimpleName(); local 26 String name = section + "/" + field.getName(); 33 if (!section.equals("styleable")) {
|
/frameworks/compile/mclinker/unittests/ |
NamePoolTest.cpp | 147 const llvm::MCSectionData* section = 0; local 154 name, isDyn, type, binding, section, value, size, other); 173 const llvm::MCSectionData* section = 0; local 184 name, isDyn, type, binding, section, value, size, other); 194 name, isDyn, type, binding, section, value, size, other); 203 name, isDyn, type, binding, section, value, size, other);
|
/hardware/libhardware/modules/camera/3_0/ |
VendorTags.cpp | 40 // Describes a vendor tag section 41 struct Section { 48 // Entry arrays for each section 75 const Section DemoSections[DEMO_SECTION_COUNT] = { 90 // Get a static handle to a specific vendor tag section 91 const Section* getSection(uint32_t tag) 93 uint32_t section = (tag - vendor_section_start) >> 16; local 96 ALOGE("%s: Tag 0x%x before vendor section", __func__, tag); 100 if (section >= DEMO_SECTION_COUNT) { 101 ALOGE("%s: Tag 0x%x after vendor section", __func__, tag) 111 const Section* section = getSection(tag); local 163 const Section* section = getSection(tag); local [all...] |