Home
last modified time | relevance | path

Searched defs:Text (Results 1 – 25 of 991) sorted by relevance

12345678910>>...40

/aosp_15_r20/external/python/absl-py/absl/flags/
D_defines.py62 name: Text,
64 help: Optional[Text], # pylint: disable=redefined-builtin
67 module_name: Optional[Text] = ...,
77 name: Text,
79 help: Optional[Text], # pylint: disable=redefined-builtin
82 module_name: Optional[Text] = ...,
136 module_name: Optional[Text] = ...,
146 module_name: Optional[Text] = ...,
273 flag_name: Union[Text, _flagvalues.FlagHolder],
372 name: Text,
[all …]
D_flag.py94 name: Text,
95 default: Union[Optional[_T], Text], argument
96 help_string: Optional[Text],
97 short_name: Optional[Text] = None,
180 def parse(self, argument: Union[Text, Optional[_T]]) -> None:
193 def _parse(self, argument: Union[Text, _T]) -> Optional[_T]:
234 def _set_default(self, value: Union[Optional[_T], Text]) -> None: argument
247 def _parse_from_default(self, value: Union[Text, _T]) -> Optional[_T]:
350 name: Text,
351 default: Union[Optional[bool], Text], argument
[all …]
D_argument_parser.py100 def parse(self, argument: Text) -> Optional[_T]:
158 def parse(self, argument: Text) -> _N:
177 def convert(self, argument: Text) -> _N:
270 def convert(self, argument: Union[int, Text]) -> int: argument
294 def parse(self, argument: Union[Text, int]) -> bool:
323 self, enum_values: Iterable[Text], case_sensitive: bool = True
345 def parse(self, argument: Text) -> Text:
423 def parse(self, argument: Union[_ET, Text]) -> _ET: argument
458 def __init__(self, list_sep: Text) -> None:
473 def __init__(self, list_sep: Text, **kwargs) -> None:
[all …]
D_flagvalues.py179 def register_flag_by_module(self, module_name: Text, flag: Flag) -> None:
202 def register_key_flag_for_module(self, module_name: Text, flag: Flag) -> None:
258 def get_flags_for_module(self, module: Union[Text, Any]) -> List[Flag]:
276 def get_key_flags_for_module(self, module: Union[Text, Any]) -> List[Flag]:
305 self, flagname: Text, default: Optional[_T] = None
333 self, flagname: Text, default: Optional[_T] = None
416 self, flag_values: 'Union[FlagValues, Iterable[Text]]'
427 def __setitem__(self, name: Text, flag: Flag) -> None:
479 def __getitem__(self, name: Text) -> Flag:
487 def __getattr__(self, name: Text) -> Any:
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/tpu/
H A Dtpu.py103 def _tpu_system_device_name(job: Optional[Text]) -> Text:
114 job: Optional[Text] = None,
171 job: Optional[Text] = None,
199 def shutdown_system(job: Optional[Text] = None) -> ops.Operation:
297 def __init__(self, name: Text, num_replicas: int, pivot: ops.Operation):
329 name: Text,
330 handle_id: Text,
416 def EnterGradientColocation(self, op: ops.Operation, gradient_uid: Text):
470 def ExitGradientColocation(self, op: ops.Operation, gradient_uid: Text):
499 def _EnterOutsideCompilationScope(self, cluster: Optional[Text] = None):
[all …]
H A Dtpu_embedding_v2.py614 def apply_gradients(self, gradients, name: Optional[Text] = None):
717 def dequeue(self, name: Optional[Text] = None):
942 mode_override: Text
1097 name: Optional[Text] = None,
1098 device: Optional[Text] = None):
1486 config: Text,
1487 hosts: List[Tuple[int, Text]], argument
1488 variables: Dict[Text, Dict[Text, tf_variables.Variable]],
1531 config: Text,
1532 hosts: List[Tuple[int, Text]], argument
[all …]
H A Ddatasets.py29 def _TextLineDataset(filename: Text) -> dataset_ops.Dataset:
35 def _TFRecordDataset(filename: Text) -> dataset_ops.Dataset:
49 files: Union[Text, dataset_ops.Dataset],
50 filetype: Optional[Union[Text, Callable[[Text],
52 file_reader_job: Optional[Text] = None,
53 worker_job: Optional[Text] = None,
/aosp_15_r20/external/toolchain-utils/llvm_tools/
H A Dllvm_simple_bisect.py56 def search(self, error_string: Text) -> bool:
62 error_string: Text,
63 llvm_hash: Text,
85 def log_result(self, log_dir: Path, llvm_hash: Text, decision: Text):
159 def build(self, use_flags: Text) -> CommandResult:
179 def run_test(command: Text) -> CommandResult:
/aosp_15_r20/external/clang/lib/Format/
H A DEncoding.h35 inline Encoding detectEncoding(StringRef Text) { in detectEncoding()
43 inline unsigned getCodePointCountUTF8(StringRef Text) { in getCodePointCountUTF8()
53 inline unsigned getCodePointCount(StringRef Text, Encoding Encoding) { in getCodePointCount()
65 inline unsigned columnWidth(StringRef Text, Encoding Encoding) { in columnWidth()
81 inline unsigned columnWidthWithTabs(StringRef Text, unsigned StartColumn, in columnWidthWithTabs()
116 inline unsigned getEscapeSequenceLength(StringRef Text) { in getEscapeSequenceLength()
/aosp_15_r20/external/rust/android-crates-io/crates/regex/src/
Dre_trait.rs106 type Text: ?Sized + fmt::Debug; typedef
122 fn next_after_empty(&self, text: &Self::Text, i: usize) -> usize; in next_after_empty()
127 text: &Self::Text, in shortest_match_at()
132 fn is_match_at(&self, text: &Self::Text, start: usize) -> bool; in is_match_at()
137 text: &Self::Text, in find_at()
146 text: &Self::Text, in captures_read_at()
182 pub fn text(&self) -> &'t R::Text { in text()
246 pub fn text(&self) -> &'t R::Text { in text()
/aosp_15_r20/external/rust/android-crates-io/crates/plotters/src/element/
Dtext.rs10 pub struct Text<'a, Coord, T: Borrow<str>> { struct
13 style: TextStyle<'a>, argument
16 impl<'a, Coord, T: Borrow<str>> Text<'a, Coord, T> { argument
31 impl<'b, 'a, Coord: 'a, T: Borrow<str> + 'a> PointCollection<'a, Coord> for &'a Text<'b, Coord, T> { implementation
39 impl<'a, Coord: 'a, DB: DrawingBackend, T: Borrow<str>> Drawable<DB> for Text<'a, Coord, T> { implementation
/aosp_15_r20/development/tools/repo_diff/service/repodiff/entities/
H A Dentities.go68 Text string `xml:",chardata"` member
76 Text string `xml:",chardata"` member
84 Text string `xml:",chardata"` member
89 Text string `xml:",chardata"` member
95 Text string `xml:",chardata"` member
101 Text string `xml:",chardata"` member
111 Text string `xml:",chardata"` member
117 Text string `xml:",chardata"` member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/rich/
Dhighlighter.py20 def __call__(self, text: Union[str, Text]) -> Text: argument
42 def highlight(self, text: Text) -> None:
57 def highlight(self, text: Text) -> None:
67 def highlight(self, text: Text) -> None:
123 def highlight(self, text: Text) -> None:
Dcontainers.py69 def __init__(self, lines: Iterable["Text"] = ()) -> None:
89 def __setitem__(self, index: int, value: "Text") -> "Lines":
102 def append(self, line: "Text") -> None:
105 def extend(self, lines: Iterable["Text"]) -> None:
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/rich/
Dhighlighter.py20 def __call__(self, text: Union[str, Text]) -> Text: argument
42 def highlight(self, text: Text) -> None:
57 def highlight(self, text: Text) -> None:
67 def highlight(self, text: Text) -> None:
123 def highlight(self, text: Text) -> None:
Dcontainers.py69 def __init__(self, lines: Iterable["Text"] = ()) -> None:
89 def __setitem__(self, index: int, value: "Text") -> "Lines":
102 def append(self, line: "Text") -> None:
105 def extend(self, lines: Iterable["Text"]) -> None:
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/rich/
Dhighlighter.py20 def __call__(self, text: Union[str, Text]) -> Text: argument
42 def highlight(self, text: Text) -> None:
57 def highlight(self, text: Text) -> None:
67 def highlight(self, text: Text) -> None:
123 def highlight(self, text: Text) -> None:
Dcontainers.py69 def __init__(self, lines: Iterable["Text"] = ()) -> None:
89 def __setitem__(self, index: int, value: "Text") -> "Lines":
102 def append(self, line: "Text") -> None:
105 def extend(self, lines: Iterable["Text"]) -> None:
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/rich/
Dhighlighter.py20 def __call__(self, text: Union[str, Text]) -> Text: argument
42 def highlight(self, text: Text) -> None:
57 def highlight(self, text: Text) -> None:
67 def highlight(self, text: Text) -> None:
123 def highlight(self, text: Text) -> None:
Dcontainers.py69 def __init__(self, lines: Iterable["Text"] = ()) -> None:
89 def __setitem__(self, index: int, value: "Text") -> "Lines":
102 def append(self, line: "Text") -> None:
105 def extend(self, lines: Iterable["Text"]) -> None:
/aosp_15_r20/prebuilts/go/linux-x86/src/go/doc/comment/
Dparse.go25 Text string // the link text member
38 Text []Text // the heading text member
119 Text []Text member
129 Text string member
136 type Text interface { interface
153 Text []Text // text of link member
161 Text []Text // text of link member
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/Internal/CPack/
DNSIS.InstallOptions.ini.in6 Text=By default @CPACK_PACKAGE_INSTALL_DIRECTORY@ does not add its directory to the system PATH. key
14 Text=Do not add @CPACK_PACKAGE_NAME@ to the system PATH key
23 Text=Add @CPACK_PACKAGE_NAME@ to the system PATH for all users key
32 Text=Add @CPACK_PACKAGE_NAME@ to the system PATH for current user key
41 Text=Create @CPACK_PACKAGE_NAME@ Desktop Icon key
/aosp_15_r20/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp81 CodeCompletionString::Chunk::Chunk(ChunkKind Kind, const char *Text) in Chunk()
156 CodeCompletionString::Chunk::CreateText(const char *Text) { in CreateText()
342 void CodeCompletionBuilder::AddTypedTextChunk(const char *Text) { in AddTypedTextChunk()
346 void CodeCompletionBuilder::AddTextChunk(const char *Text) { in AddTextChunk()
358 void CodeCompletionBuilder::AddInformativeChunk(const char *Text) { in AddInformativeChunk()
372 const char *Text) { in AddChunk()
/aosp_15_r20/external/skia/modules/skplaintexteditor/include/
H A Deditor.h41 struct Text { struct
42 const std::vector<TextLine>& fLines; argument
57 Text text() const { return Text{fLines}; } in text() argument
/aosp_15_r20/build/blueprint/bootstrap/bpdoc/
H A Dbpdoc.go22 Text string member
39 Text template.HTML member
49 Text string member
58 Text template.HTML member

12345678910>>...40