/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/ |
eap_peap_common.h | 19 const char *label, const u8 *seed, size_t seed_len,
|
/external/srec/srec/ca/ |
voc_basi.c | 110 int CA_CheckEntryInDictionary(CA_Vocab *hVocab, const char *label) 117 pronCount = get_prons(&hVocab->voc, label, prons, sizeof(prons)); 123 for (i = 0; label[i]; i++) { 125 lower[i] = tolower(label[i]); 138 int CA_GetFullEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize); 140 int CA_GetEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize) 145 rc = CA_GetFullEntryInDictionary(hVocab, label, pron, pronSize, pronMaxSize); 153 int CA_GetFullEntryInDictionary(CA_Vocab *hVocab, const char *label, char *pron, int *pronSize, int pronMaxSize) 160 pronCount = get_prons(&hVocab->voc, label, pron, pronMaxSize); 166 for (i = 0; label[i]; i++) [all...] |
/external/webkit/WebCore/html/ |
HTMLDataGridCellElement.idl | 31 attribute DOMString label; // The text to display in the column, assuming the type supports text.
|
HTMLDataGridColElement.idl | 31 attribute DOMString label; // The text to display in the column.
|
DataGridColumn.h | 42 static PassRefPtr<DataGridColumn> create(const String& columnID, const String& label, const String& type, bool primary, unsigned short sortable) 44 return adoptRef(new DataGridColumn(columnID, label, type, primary, sortable)); 50 const AtomicString& label() const { return m_label; } function in class:WebCore::DataGridColumn 51 void setLabel(const AtomicString& label) { m_label = label; columnChanged(); } 83 DataGridColumn(const String& columnID, const String& label, const String& type, bool primary, unsigned short sortable) 86 , m_label(label)
|
HTMLDataGridCellElement.cpp | 44 String HTMLDataGridCellElement::label() const function in class:WebCore::HTMLDataGridCellElement 49 void HTMLDataGridCellElement::setLabel(const String& label) 51 setAttribute(labelAttr, label);
|
/sdk/traceview/src/com/android/traceview/ |
ProfileNode.java | 27 public ProfileNode(String label, MethodData methodData, 29 mLabel = label;
|
/external/openssl/crypto/bn/asm/x86/ |
mul.pl | 26 &jz(&label("mw_finish")); 48 &jz(&label("mw_finish")); 49 &jmp(&label("mw_loop")); 54 &jnz(&label("mw_finish2")); 55 &jmp(&label("mw_end")); 69 &jz(&label("mw_end")) if ($i != 7-1);
|
mul_add.pl | 29 &jz(&label("maw_finish")); 55 &jnz(&label("maw_loop")); 60 &jnz(&label("maw_finish2")); # helps branch prediction 61 &jmp(&label("maw_end")); 77 &jz(&label("maw_end")) if ($i != 7-1);
|
/system/vold/ |
VolumeManager.h | 53 int mountVolume(const char *label); 54 int unmountVolume(const char *label, bool force); 55 int shareVolume(const char *label, const char *method); 56 int unshareVolume(const char *label, const char *method); 60 int formatVolume(const char *label); 86 Volume *lookupVolume(const char *label);
|
/external/e2fsprogs/resize/ |
sim_progress.c | 19 char *label; member in struct:ext2_sim_progress 32 fputs(prog->label, prog->f); 33 width = prog->labelwidth - strlen(prog->label); 78 const char *label, 90 retval = ext2fs_get_mem(strlen(label)+1, &prog->label); 95 strcpy(prog->label, label); 112 if (prog->label) 113 ext2fs_free_mem(&prog->label); [all...] |
/external/webkit/JavaScriptCore/assembler/ |
LinkBuffer.h | 49 // * The address of a Label pointing into the code may be resolved. 54 typedef MacroAssembler::Label Label; 88 void link(Jump jump, CodeLocationLabel label) 90 MacroAssembler::linkJump(code(), jump, label); local 93 void link(JumpList list, CodeLocationLabel label) 96 MacroAssembler::linkJump(code(), list.m_jumps[i], label); local 99 void patch(DataLabelPtr label, void* value) 101 MacroAssembler::linkPointer(code(), label.m_label, value); 104 void patch(DataLabelPtr label, CodeLocationLabel value [all...] |
/external/e2fsprogs/misc/ |
e2label.c | 2 * e2label.c - Print or change the volume label on an ext2 fs 80 char label[VOLNAMSZ+1]; local 83 strncpy(label, sb.s_volume_name, VOLNAMSZ); 84 label[VOLNAMSZ] = 0; 85 printf("%s\n", label); 88 static void change_label (char *dev, char *label) 94 strncpy(sb.s_volume_name, label, VOLNAMSZ); 95 if (strlen(label) > VOLNAMSZ) 96 fprintf(stderr, _("Warning: label too long, truncating.\n"));
|
/development/simulator/app/ |
PhoneButton.cpp | 25 bool PhoneButton::Create(const char* label) 29 mKeyCode = LookupKeyCode(label); 31 fprintf(stderr, "WARNING: key code '%s' not recognized\n", label); 41 bool PhoneButton::Create(const char* label, const char* imageFileName, 44 if (!Create(label)) 132 * Returns kKeyCodeUnknown if the label doesn't match anything. 134 KeyCode PhoneButton::LookupKeyCode(const char* label) const 137 const char* label; member in struct:__anon789 174 if (strcmp(label, codeList[i].label) == 0 [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
Contacts_OrganizationsTest.java | 31 notes = "Test getDisplayLabel(Context context, int type, CharSequence label", 36 String label = "label"; local 38 Organizations.TYPE_CUSTOM, label).toString(); 39 assertEquals(label, display); 44 Organizations.TYPE_OTHER, label).toString(); 48 Organizations.TYPE_WORK, label).toString();
|
/dalvik/dx/src/com/android/dx/util/_tests/ |
_IntList.java | 39 assertTrue(label(sz, i), contains); method 41 assertFalse(label(sz, i), contains); method 44 assertFalse(label(sz, -1), list.contains(-1)); method 45 assertFalse(label(sz, sz * 2), list.contains(sz * 2)); method 69 private static String label(int n, int m) { method in class:_IntList
|
/frameworks/base/core/java/android/os/ |
PerformanceCollector.java | 29 * with name of test as the label, e.g. EmailPerformanceTest. 34 * with the name of test case as the label, e.g. testSimpleSendMailSequence. 71 * @param label description of code block between beginSnapshot and 75 public void writeBeginSnapshot(String label); 93 * @param label description of code block between startTiming and 97 public void writeStartTiming(String label); 116 * @param label short description of the metric that was measured 119 public void writeMeasurement(String label, long value); 126 * @param label short description of the metric that was measured 129 public void writeMeasurement(String label, float value) [all...] |
/external/openssl/crypto/bn/asm/ |
bn-586.pl | 48 &jz(&label("maw_finish")); 53 &jnc(&label("maw_loop")); 119 &jnz(&label("maw_sse2_loop")); 124 &jmp(&label("maw_finish")); 151 &jnz(&label("maw_loop")); 156 &jnz(&label("maw_finish2")); # helps branch prediction 157 &jmp(&label("maw_end")); 173 &jz(&label("maw_end")) if ($i != 7-1); 205 &jz(&label("mw_finish")); 227 &jz(&label("mw_finish")) [all...] |
/external/webkit/WebCore/dom/ |
OptionElement.h | 64 String label() const { return m_label; } function in class:WebCore::OptionElementData 65 void setLabel(const String& label) { m_label = label; }
|
/external/webkit/WebCore/inspector/front-end/ |
ContextMenu.js | 49 appendItem: function(label, handler) 52 this._items.push({id: id, label: label});
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
GetPropReceiver.java | 56 String label = m.group(1); local 59 if (label.length() > 0) { 60 mDevice.addProperty(label, value);
|
/external/opencore/protocols/systems/3g-324m_pvterminal/h245/per/src/ |
h245_analysis.cpp | 36 void Analyze_MultimediaSystemControlMessage(PS_MultimediaSystemControlMessage x, const char* label, uint16 tag, uint16 indent) 38 ShowPERChoice(tag, indent, label, "MultimediaSystemControlMessage"); 67 void Analyze_RequestMessage(PS_RequestMessage x, const char* label, uint16 tag, uint16 indent) 69 ShowPERChoice(tag, indent, label, "RequestMessage"); 131 void Analyze_ResponseMessage(PS_ResponseMessage x, const char* label, uint16 tag, uint16 indent) 133 ShowPERChoice(tag, indent, label, "ResponseMessage"); 222 void Analyze_CommandMessage(PS_CommandMessage x, const char* label, uint16 tag, uint16 indent) 224 ShowPERChoice(tag, indent, label, "CommandMessage"); 274 void Analyze_IndicationMessage(PS_IndicationMessage x, const char* label, uint16 tag, uint16 indent) 276 ShowPERChoice(tag, indent, label, "IndicationMessage") [all...] |
/dalvik/dx/src/com/android/dx/util/ |
LabeledList.java | 22 * A list of labeled items, allowing easy lookup by label. 27 * Sparse array indexed by label to FixedSizeList index. 28 * -1 = invalid label. 59 * Gets the maximum label (exclusive) of any block added to this instance. 61 * @return {@code >= 0;} the maximum label 79 * Removes a label from the label-to-index mapping 80 * @param oldLabel label to remove 87 * Adds a label and index to the label-to-index mappin [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
BasicBlock.java | 28 /** {@code >= 0;} target label for this block */ 29 private final int label; field in class:BasicBlock 50 * @param label {@code >= 0;} target label for this block 59 public BasicBlock(int label, InsnList insns, IntList successors, 61 if (label < 0) { 62 throw new IllegalArgumentException("label < 0"); 109 this.label = label; 138 * Gets the target label of this block [all...] |
LocalVariableExtractor.java | 75 for (int label = method.getFirstLabel(); 76 label >= 0; 77 label = Bits.findFirst(workSet, 0)) { 78 Bits.clear(workSet, label); 79 processBlock(label); 89 * @param label {@code >= 0;} label of the block to process 91 private void processBlock(int label) { 92 RegisterSpecSet primaryState = resultInfo.mutableCopyOfStarts(label); 93 BasicBlock block = blocks.labelToBlock(label); [all...] |